.gbs-hs {
  position: relative;
  /* height: 86vh; */
  height: 100vh;
  min-height: 560px;
  width: 100%;
  color: #ffffff;
  font-family: "NeulisSans-Regular", Sans-serif;
  background: #0b0b0d;
  overflow-x: hidden;
  overflow-y: visible;
}

.gbs-hs .slides {
  height: 100%;
  width: 100%;
  position: relative;
  touch-action: pan-y;
}

.gbs-hs .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}

.gbs-hs .slide.active {
  opacity: 1;
  pointer-events: auto;
}

.gbs-hs .slide img,
.gbs-hs .slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: brightness(.7) contrast(1.05); */
}

.gbs-hs .slide::after {
  content: "";
  position: absolute;
  background-image: url('../images/GBS-Red-Sun.png');
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  top: 0;
  height: 333px;
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  transition: top 0.3s ease-in-out;
}
.gbs-hs .slide:has(.title-wrapper:hover)::after {
  top: -20px;
}

.gbs-hs .content {
  position: relative;
  z-index: 2;
  max-width: 85%;
  margin: 0 auto;
  padding-top: 90px;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 24px;
}

.gbs-hs .hero {
  align-self: flex-start;
  height: 100%;
}

.title-wrapper {
  display: block;
  transition: padding-top 0.3s ease-in-out;
}

.title-wrapper:hover {
  padding-top: 20px;
}

.gbs-hs .hero h1,
.gbs-hs .hero h2 {
  color: #FFF;
  text-align: center;
  font-size: 61.503px;
  font-style: normal;
  font-weight: 200;
  line-height: 112%;
  letter-spacing: -1.23px;
  margin: 0 0 12px;
}

.gbs-hs .hero .sub {
  color: #FFF;
  text-align: center;
  font-family: "NeulisSans-Regular", Sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 300;
  line-height: 164%;
  /* 34.44px */
  margin: 0 auto;
  max-width: min(736px, 95%);
}

/* CTA */
.gbs-hs .cta-row {
  justify-content: center;
  margin-top: 0px;
  position: absolute;
  left: 0%;
  bottom: 100px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #d2d8e0;
  z-index: 3;
}

.gbs-hs .cta-row .btn {
  display: inline-flex;
  width: 280px;
  height: 70px;
  background-image: url('../images/Free-Consult-btn.svg');
  background-repeat: no-repeat;
  justify-content: flex-start;
  align-items: center;
  padding-left: 26px;
  padding-top: 3px;
  padding-right: 60px;
  transition: transform 0.3s ease-in-out;
}

.gbs-hs .cta-row .btn:hover {
  transform: translateX(10px);
}

.gbs-hs .cta-row .btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.gbs-hs .cta-row .btn.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff
}

.cta-row-new {
  justify-content: center;
  margin-top: 0px;
  position: absolute;
  left: 0%;
  bottom: 100px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #d2d8e0;
  z-index: 3;
}
.cta-row-new .btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 27px;
  border-radius: 7px;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg, #3a1c71 0%, #d81f3a 100%);
  color: #ffffff;
  font-family: "NeulisSans-Medium", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.96px;
  transition: all 0.4s ease;
}

/* TEXT */
.cta-row-new .button-text {
    display: inline-block;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}

/* ICON CIRCLE */
.cta-row-new .button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}

/* HOVER ANIMATION */
.cta-row-new .btn:hover .button-text {
    transform: translateX(5px);
}

.cta-row-new .btn:hover .button-icon {
    transform: translateX(-5px);
}









/* Dots */
.gbs-hs .dots {
  position: absolute;
  left: 140px;
  top: 40%;
  transform: translateY(-40%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 3
}

.gbs-hs .dot {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: #cfd6de;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.gbs-hs .dot:hover {
  transform: scale(1.03)
}

.gbs-hs .dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.gbs-hs .dot:hover,
.gbs-hs .dot.active {
  background: #313131;
}

/* Social rail (global) */
.gbs-hs .rail {
  position: absolute;
  right: 94px;
  top: 38%;
  transform: translateY(-30%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 3;
}

/* Button */
.gbs-hs .rail a {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0px;
  /* ensures inner icon ~20×20 while img uses width/height:100% */
  text-decoration: none;
  background: #0e1a62;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(16, 32, 122, 0.18);
  /* subtle base shadow */
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background-color .18s ease,
    border-color .18s ease;
  will-change: transform, box-shadow;
}

/* Uploaded icon images (Facebook, LinkedIn, YouTube, Instagram) */

.gbs-hs .rail a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
  will-change: transform;
}

.gbs-hs .rail a .icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* Only hide default icon if hover icon exists */
.gbs-hs .rail a.has-hover-icon:hover .icon-default,
.gbs-hs .rail a.has-hover-icon:focus-visible .icon-default {
  opacity: 0;
}

.gbs-hs .rail a:hover .icon-hover,
.gbs-hs .rail a:focus-visible .icon-hover {
  opacity: 1;
}

/* Hover / focus-visible — blue #10207a shades */
.gbs-hs .rail a:hover,
.gbs-hs .rail a:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px rgba(16, 32, 122, 0.35),
    0 0 0 6px rgba(16, 32, 122, 0.18),
    0 0 0 12px rgba(16, 32, 122, 0.10);
  background-color: #13258a;
  border-color: rgba(16, 32, 122, 0.28);
  outline: none;
  /* rely on glow ring for focus */
}

/* Icon micro-motion */
.gbs-hs .rail a:hover .icon-default,
.gbs-hs .rail a:hover .icon-hover,
.gbs-hs .rail a:focus-visible .icon-default,
.gbs-hs .rail a:focus-visible .icon-hover {
  transform: translateY(-1px) scale(1.04);
  filter: brightness(1.05);
}

/* Pressed state */
.gbs-hs .rail a:active {
  transform: translateY(-1px);
  box-shadow:
    0 6px 14px rgba(16, 32, 122, 0.30),
    0 0 0 4px rgba(16, 32, 122, 0.16),
    0 0 0 10px rgba(16, 32, 122, 0.08);
}


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  .gbs-hs .rail a,
  .gbs-hs .rail a img {
    transition: none;
  }
}


/* Discover (global) */
.gbs-hs .discover {
  position: absolute;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  z-index: 3
}
.gbs-hs .first-text,
.gbs-hs .second-text {
  position: relative;
}
.gbs-hs .first-text::before {
  content: "";
  position: absolute;
  width: 146px;
  height: 1px;
  background-color: #393939;
  top: 10px;
  right: 115px;
}
.gbs-hs .second-text::after{
  content: "";
  position: absolute;
  width: 146px;
  height: 1px;
  background-color: #393939;
  top: 10px;
  left: 115px;
}
.gbs-hs .disc-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-image: url('../images/disc-circle-icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
  display: grid;
  place-items: center;
  animation: gbs-bob 2.2s ease-in-out infinite
}

@keyframes gbs-bob {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

/* Corner CTA (global) */
.gbs-hs .corner-cta {
  position: absolute;
  right: -128px;
  bottom: 0;
  color: #fff;
  border-radius: 16px;
  z-index: 3;
  height: 300px;
  overflow: hidden;
}

.gbs-hs .circle-wrapper {
  width: 450px;
  height: 450px;
  position: relative;
}

.gbs-hs .ring {
  width: 100%;
  height: 100%;
  display: block;
}

/* Orbit animation (slow rotation) */
.gbs-hs .orbit {
  transform-box: view-box;
  transform-origin: 110px 110px;
  animation: gbs-spin 30s linear infinite;
}

@keyframes gbs-spin {
  to {
    transform: rotate(360deg);
  }
}

.gbs-hs .button-wrapper {
  width: 226px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url('../images/button-wrapper-bg.png');
  background-repeat: no-repeat;
  box-sizing: border-box;
  padding: 15px;
  position: absolute;
  left: 0;
  top: 50px;
  background-size: contain;
}

.gbs-hs .button-arrow {
  display: flex;
  height: 37px;
  background-image: url('../images/arrow.svg');
  background-repeat: no-repeat;
  width: 100%;
  background-position: right;
  transition: transform 0.3s ease;
}

.gbs-hs .button-title {
  color: #FFF;
  font-family: "Neulis Sans", Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 18.002px;
  font-style: normal;
  font-weight: 400;
  line-height: 151%;
  padding: 0px;
  transition: transform 0.3s ease;
}

.gbs-hs .button-wrapper:hover .button-title {
  transform: translateX(5px) translateY(-5px);
}

.gbs-hs .button-wrapper:hover .button-arrow {
  transform: translateX(-5px) translateY(5px);
}

/* =========================
   RESPONSIVE BREAKPOINTS
   ========================= */



@media only screen and (max-width: 1726px) {
  .gbs-hs .slide::after {
    height: 290px;
    background-size: contain;
  }

  .title-wrapper:hover {
    padding-top: 10px;
  }

  .e-search.is-open .e-search-input-wrapper {
    width: 250px;
    opacity: 1;
    position: absolute;
    right: 75px;
    background-color: #000;
    z-index: 99;
  }

  .gbs-hs .dots {
    top: 30%;
    transform: translateY(-30%);
  }

  .gbs-hs .cta-row,
  .gbs-hs .cta-row-new {
    margin-top: 0;
    bottom: 70px;
  }

  .gbs-hs .discover {
    bottom: 75px;
  }




}

/* 1680 */
@media only screen and (max-width: 1680px) {
  .gbs-hs {
    height: 90vh;
  }

  .gbs-hs .hero h1,
  .gbs-hs .hero h2 {
    font-size: 58px;
    letter-spacing: -1.1px;
  }

  .gbs-hs .hero .sub {
    font-size: 20px;
  }

  .gbs-hs .circle-wrapper {
    width: 420px;
    height: 420px;
  }

  .gbs-hs .corner-cta {
    right: -140px;
    bottom: 0px;
  }

  .gbs-hs .button-wrapper {
    left: 0;
    top: 80px;
  }

  .gbs-partners-slider .ring::after,
  .gbs-partners-slider .active-slice::after {
    inset: 60px !important;
  }

}

/* 1536 */
@media only screen and (max-width: 1536px) {
  .gbs-hs .rail {
    right: 60px;
    top: 30%;
  }
  .gbs-hs .corner-cta {
    right: -130px;
    bottom: 0px;
  }
  .gbs-hs .dots {
      left: 110px;
  }
}

/* 1520 */
@media only screen and (max-width: 1520px) {
  .gbs-hs .content {
    max-width: 90%;
  }

  .gbs-hs .dots {
    left: 75px;
  }

  .gbs-hs .hero h1,
  .gbs-hs .hero h2 {
    font-size: 54px;
  }

  .gbs-hs .hero .sub {
    font-size: 19px;
  }

}

/* 1490 */
@media only screen and (max-width: 1470px) {
  .gbs-hs .rail {
    right: 70px;
  }

  .gbs-hs .circle-wrapper {
    width: 400px;
    height: 400px;
  }

  .gbs-hs .corner-cta {
    right: -100px;
    bottom: 0px;
  }
  .gbs-hs .dots {
    left: 75px;
  }
}

/* 1490 */
@media only screen and (max-width: 1440px) {
  .gbs-hs .rail {
    right: 70px;
  }

  .gbs-hs .circle-wrapper {
    width: 400px;
    height: 400px;
  }

  .gbs-hs .corner-cta {
    right: -110px;
    bottom: 0px;
  }
}

/* 1366 */
@media only screen and (max-width: 1366px) {
  .elementor-location-header {
    height: 95px;
  }

  .gbs-hs .hero h1,
  .gbs-hs .hero h2 {
    font-size: 50px;
    letter-spacing: -1px;
  }

  .gbs-hs .hero .sub {
    font-size: 18.5px;
  }
  .cta-row-new .btn {
    padding: 15px 15px;
  }
  .gbs-hs .cta-row .btn {
    padding: 13px 20px;
    font-size: 15.5px;
  }

  .gbs-partners-slider .ring::after,
  .gbs-partners-slider .active-slice::after {
    inset: 50px !important;
  }
  .gbs-hs .dot {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
  .gbs-hs .cta-row .btn {
    width: 225px;
    height: 60px;
    background-size: contain;
  }
  .gbs-hs .rail a {
    width: 30px;
    height: 30px;
  }
  .gbs-hs .button-wrapper {
    width: 190px;
    height: 126px;
  }
  .gbs-hs .disc-circle {
    width: 50px;
    height: 50px;
  }


}

/* 1280 */
@media only screen and (max-width: 1280px) {

  .gbs-hs .hero h1,
  .gbs-hs .hero h2 {
    font-size: 46px;
  }

  .gbs-hs .circle-wrapper {
    width: 370px;
    height: 370px;
  }

  .gbs-hs .cta-row {
    margin-top: 0;
    bottom: 80px;
  }

  .gbs-hs .button-wrapper {
    left: 0;
    top: 50px;
  }
  .gbs-hs .first-text::before {
    width: 100px;
  }
  .gbs-hs .second-text::after {
    width: 100px;
  }

}

/* 1200 */
@media only screen and (max-width: 1200px) {
  .gbs-hs .hero h1,
  .gbs-hs .hero h2 {
    font-size: 44px;
    letter-spacing: -0.9px;
  }

  .gbs-hs .hero .sub {
    font-size: 18px;
  }

  .gbs-hs .dots {
    left: 16px;
  }

  .gbs-hs .rail {
    right: 16px;
  }
}

/* 1024 (tablets landscape / small laptops) */
@media only screen and (max-width: 1024px) {
  .gbs-hs .cta-row .btn {
    width: 190px;
    height: 50px;
  }
  .gbs-hs {
    min-height: 520px;
  }

  .gbs-hs .dots {
    left: 51px;
  }

  .gbs-hs .hero h1,
  .gbs-hs .hero h2 {
    font-size: 40px;
    letter-spacing: -0.8px;
  }

  .gbs-hs .hero .sub {
    font-size: 17.5px;
  }

  .gbs-hs .cta-row .btn {
    padding: 12px 18px;
    font-size: 15px;
  }
  .gbs-hs .cta-row {
    bottom: 77px;
  }
  .cta-row-new .btn {
    padding: 10px 15px;
  }
  .gbs-hs .first-text::before {
    width: 70px;
    right: 100px;
  }
  .gbs-hs .second-text::after {
    width: 70px;
    left: 100px;
  }

}
@media only screen and (max-width: 992px) {
  .gbs-hs .discover {
    bottom: 20px;
  }
  .gbs-hs .cta-row {
    left: 0;
    right: 0;
    bottom: 130px;
  }
  .gbs-hs .cta-row-new {
    left: 0;
    right: 0;
    bottom: 130px;
  }
}
/* 880 */
@media only screen and (max-width: 880px) {
  .gbs-hs .hero h1,
  .gbs-hs .hero h2 {
    font-size: 38px;
  }

  .gbs-hs .hero .sub {
    font-size: 17px;
  }

  .gbs-hs .dots {
    left: 12px;
    gap: 14px;
  }

  .gbs-hs .dot {
    width: 42px;
    height: 42px;
    font-size: 13px;
  }

  .gbs-hs .corner-cta {
    display: none;
  }

  .gbs-hs .dots {
    left: 40px;
    gap: 15px;
  }

  .gbs-hs .slide::after {
    height: 250px;
    width: 100%;
    background-size: contain;
  }


}

/* 768 */
@media only screen and (max-width: 768px) {
  .gbs-hs {
    min-height: 500px;
    height: 70vh;
  }

  .gbs-hs .hero h1,
  .gbs-hs .hero h2 {
    font-size: 34px;
    letter-spacing: -0.7px;
  }

  .gbs-hs .hero .sub {
    font-size: 16.5px;
  }

  .gbs-hs .cta-row {
    gap: 14px;
  }

  .gbs-hs .cta-row .btn {
    padding: 12px 18px;
    font-size: 14.5px;
  }
  
}

/* 767 (mobile breakpoint helpers for older stacks) */
@media only screen and (max-width: 767px) {
   .elementor-location-header {
    height: 90px;
  }
  .gbs-hs .dots {
    display: none;
  }

  

  /* hide numbered dots on phones */
}

/* 600 */
@media only screen and (max-width: 600px) {
  .elementor-location-header {
    height: 40px;
  }

  .gbs-hs {
    min-height: 480px;
  }

  .gbs-hs {
    height: 60vh;
  }

  .gbs-hs .cta-row {
    bottom: 120px;
  }

  .gbs-hs .hero h1,
  .gbs-hs .hero h2 {
    font-size: 30px;
    letter-spacing: -0.6px;
  }

  .gbs-hs .hero .sub {
    font-size: 16px;
  }

  .gbs-hs .cta-row .btn {
    padding: 12px 18px;
    font-size: 14px;
    letter-spacing: .8px;
  }

  .gbs-hs .discover {
    bottom: 24px;
    gap: 14px;
    width: 220px;
  }

  .gbs-hs .disc-circle {
    width: 52px;
    height: 52px;
  }
  .gbs-hs .rail {
    right: 5px;
    top: 35%;
  }
}

/* 500 */
@media only screen and (max-width: 500px) {

  .gbs-hs .hero h1,
  .gbs-hs .hero h2 {
    font-size: 28px;
  }

  .gbs-hs .hero .sub {
    font-size: 15.5px;
  }

  .gbs-hs .cta-row .btn {
    padding: 12px 16px;
    font-size: 13.5px;
  }
}

/* 420 */
@media only screen and (max-width: 420px) {
  .gbs-hs .hero h1,
  .gbs-hs .hero h2 {
    font-size: 26px;
  }

  .gbs-hs .hero .sub {
    font-size: 15px;
  }

  .gbs-hs .cta-row .btn {
    padding: 12px 16px;
    font-size: 13px;
  }
  .gbs-hs .first-text::before {
    right: 90px;
  }
  .gbs-hs .second-text::after {
    left: 90px;
  }
}

/* 375 */
@media only screen and (max-width: 375px) {
  .gbs-hs .hero h1,
  .gbs-hs .hero h2 {
    font-size: 24px;
    letter-spacing: -0.5px;
  }

  .gbs-hs .hero .sub {
    font-size: 14.5px;
  }

  .gbs-hs .cta-row .btn {
    padding: 11px 15px;
    font-size: 12.8px;
  }
}

/* 360 */
@media only screen and (max-width: 360px) {
  .gbs-hs .hero h1,
  .gbs-hs .hero h2 {
    font-size: 23px;
  }

  .gbs-hs .hero .sub {
    font-size: 14px;
  }

  .gbs-hs .cta-row .btn {
    padding: 11px 14px;
    font-size: 12.5px;
  }
}