@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Urbanist", sans-serif;
  background-color: #9FADBE;
}

/* hero section */

.first-section {
  background-image: url('../images/hero/bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.first-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem 0 2rem 0;
  position: relative;
}

/* navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}

.nav-link {
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
  line-height: 28px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  letter-spacing: 0.28em;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: rgba(222, 235, 250, 0.62);
}

.logo {
  height: 8.125rem;
}

.right-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.left-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.lang-select {
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
  line-height: 28px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(222, 235, 250, 0.62);
  background-color: transparent;
  border: 1px solid rgba(222, 235, 250, 0.3);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.lang-select:hover {
  color: rgba(222, 235, 250, 0.9);
  border-color: rgba(222, 235, 250, 0.6);
}

.lang-select:focus {
  outline: none;
  border-color: rgba(222, 235, 250, 0.8);
  color: rgba(222, 235, 250, 1);
}

.lang-select option {
  background-color: #1a1a2e;
  color: rgba(222, 235, 250, 0.9);
  padding: 0.5rem;
}

/* hero section */

.hero {
  width: 1300px;
  margin: 3rem auto;
  height: 300px;
}

.hero-text {
  font-style: normal;
  font-weight: 400;
  font-size: 127px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  background: linear-gradient(90.87deg, rgba(184, 192, 200, 0) -3.19%, #C0DDFF 29.28%, rgba(160, 184, 212, 0.859813) 65.45%, rgba(184, 192, 200, 0) 102.57%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-description {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  color: rgba(222, 235, 250, 0.62);
  margin: 1rem auto;
  width: 80%;
  line-height: 28px;
}

.underhero {
  position: absolute;
  top: 500px;
}

.hero-img-container {
  max-width: 1000px;
  position: relative;
}

.hero-cta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 235px;
  height: 72px;
  background: #9FADBE;
  border-radius: 900px;
  position: relative;
  background-image: url('../images/hero/button-bg.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: none;
  outline: none;
  position: absolute;
  top: -4px;
  left: 55%;
  cursor: pointer;
}

.hero-cta-btn p {
  position: relative;
  right: 20px;
  font-weight: 600;
  font-size: 16px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  text-transform: uppercase;
  color: #0B141F;
}

.hero-cta-btn img {
  position: absolute;
  right: 5px;
  width: 59px;
  height: 59px;
  background: #DEE3EA;
  border-radius: 900px;
}

.underhero-mobile {
  display: none;
}

.hero-highlight {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  color: #DEEBFA;
}

@media (max-width : 1360px) {

  .hero {
    width: 100%;
  }

  .underhero {
    position: absolute;
    top: 500px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
  }

  .hero-img-container {
    position: relative;
    max-width: 1000px;
    width: 100%;
  }

  .hero-image {
    width: 99%;
    display: block;
    position: relative;
    left: 1px;
  }

  .hero-cta-btn {
    width: 195px;
    height: 60px;
    left: 40.5%;
    transform: translateX(-50%);
  }

  .hero-cta-btn p {
    position: relative;
    right: -3px;
    font-size: 14px;
  }

  .hero-cta-btn img {
    width: 40px;
    height: 40px;
    position: relative;
    right: -12px;
  }
}

@media (max-width:1200px) {

  .hero-img-container {
    max-width: 800px;
  }

  .hero-text {
    font-size: 100px;
  }

  .hero-description {
    font-size: 20px;
  }

  .hero-cta-btn {
    width: 150px;
    height: 45px;
  }

  .hero-cta-btn img {
    height: 30px;
    width: 30px;
  }

  .hero-cta-btn p {
    position: relative;
    right: -5px;
    font-size: 10px;
  }

}

@media (max-width:900px) {
  .hero-text {
    font-size: 70px;
  }

  .hero-description {
    font-size: 19px;
  }

  .hero-img-container {
    max-width: 700px;
  }

  .hero-cta-btn {
    width: 140px;
    height: 40px;
    left: 40%;
  }

  .hero-cta-btn img {
    height: 25px;
    width: 25px;
  }

  .hero-cta-btn p {
    position: relative;
    right: -5px;
    font-size: 10px;
  }
}

@media (max-width:600px) {
  .hero-text {
    font-size: 50px;
  }

  .hero-description {
    font-size: 15px;
  }

  .underhero {
    top: 500px
  }

  .hero-img-container {
    max-width: 500px;
  }

  .hero-cta-btn {
    width: 111px;
    height: 32px;
    left: 39%;
  }

  .hero-cta-btn img {
    height: 20px;
    width: 20px;
    right: -5px;
  }

  .hero-cta-btn p {
    position: relative;
    right: 0px;
    font-size: 7px;
  }

  .left-nav,
  .right-nav {
    display: none;
  }

  .mid-nav {
    margin: 0 auto;
  }

}

@media (max-width:650px) {

  .left-nav,
  .right-nav {
    display: none;
  }

  nav {
    justify-content: center;
  }
}

@media (max-width : 500px) {
  .hero-img-container {
    max-width: 400px;
  }

  .hero-cta-btn {
    width: 91px;
    height: 29px;
    top: -7px;
  }

  .hero-cta-btn img {
    height: 20px;
    width: 20px;
    right: -5px;
  }

  .hero-cta-btn p {
    position: relative;
    right: 0px;
    font-size: 7px;
  }
}



@media (max-width:425px) {
  .underhero {
    scale: 0.9;
  }
}

@media (max-width:400px) {
  .hero-cta-btn {
    top: -7px;
    scale: 0.9;
    left: 38.5%;
  }

  .underhero {
    top: 530px;
  }
}

@media (max-width:400px) {
  .underhero {
    top: 550px;
  }
}


@media (max-width:350px) {
  .hero-cta-btn {
    top: -9px;
    scale: 0.8;
    left: 36%;
  }
}

@keyframes softGlowPulse {
  0% {
    box-shadow: 0 0 0px rgba(222, 235, 250, 0.2);
  }

  50% {
    box-shadow: 0 0 20px rgba(222, 235, 250, 0.6);
  }

  100% {
    box-shadow: 0 0 0px rgba(222, 235, 250, 0.2);
  }
}

.hero-cta-btn:hover {
  transform: scale(1.05) !important;
  filter: brightness(1.15) !important;
}


/* animations for hero section */

nav .nav-link,
nav .nav-img,
.hero-text,
.hero-description,
.hero-image,
.hero-cta-btn {
  opacity: 0;
  will-change: transform, opacity;
}


@keyframes navFadeSlide {
  0% {
    transform: translateY(-12px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.left-nav .nav-link:nth-child(1) {
  animation: navFadeSlide 0.55s cubic-bezier(.22, .9, .35, 1) forwards;
  animation-delay: 0.10s;
}

.left-nav .nav-link:nth-child(2) {
  animation: navFadeSlide 0.55s cubic-bezier(.22, .9, .35, 1) forwards;
  animation-delay: 0.25s;
}

.mid-nav .nav-img {
  animation: navFadeSlide 0.55s cubic-bezier(.22, .9, .35, 1) forwards;
  animation-delay: 0.40s;
}

.right-nav .nav-link:nth-child(1) {
  animation: navFadeSlide 0.55s cubic-bezier(.22, .9, .35, 1) forwards;
  animation-delay: 0.55s;
}

.right-nav .nav-link:nth-child(2) {
  animation: navFadeSlide 0.55s cubic-bezier(.22, .9, .35, 1) forwards;
  animation-delay: 0.70s;
}

nav .nav-link:not([style*="animation"]) {
  animation: navFadeSlide 0.55s cubic-bezier(.22, .9, .35, 1) forwards;
  animation-delay: 0.85s;
}

@keyframes slideUpFade {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  60% {
    transform: translateY(-6px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-text {
  transform: translateY(30px);
  opacity: 0;
  animation: slideUpFade 0.85s cubic-bezier(.2, .9, .25, 1) forwards;
  animation-delay: 0.95s;
}

.hero-description {
  transform: translateY(20px);
  opacity: 0;
  animation: slideUpFade 0.72s cubic-bezier(.2, .9, .25, 1) forwards;
  animation-delay: 1.85s;
}

@keyframes popIn {
  0% {
    transform: scale(0.92) translateY(8px);
    opacity: 0;
    filter: blur(1px);
  }

  60% {
    transform: scale(1.04) translateY(-4px);
    opacity: 1;
    filter: blur(0);
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
    filter: none;
  }
}

.hero-image {
  transform-origin: center;
  opacity: 0;
  animation: popIn 0.72s cubic-bezier(.2, .9, .25, 1) forwards;
  animation-delay: 2.45s;
}

.hero-cta-btn {
  transform-origin: center;
  opacity: 0;
  animation: popIn 0.68s cubic-bezier(.2, .9, .25, 1) forwards;
  animation-delay: 2.65s;
}

.hero-image,
.hero-cta-btn {
  pointer-events: auto;
}

.nav-link:focus,
.nav-link:hover,
.nav-img:focus,
.nav-img:hover,
.hero-cta-btn:focus,
.hero-text:focus,
.hero-description:focus {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {

  nav .nav-link,
  nav .nav-img,
  .hero-text,
  .hero-description,
  .hero-image,
  .hero-cta-btn {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.hero-cta-btn {
  position: absolute;
  z-index: 60;
  pointer-events: auto;
  animation:
    popIn 0.68s cubic-bezier(.2, .9, .25, 1) forwards 2.65s,
    softGlowPulse 2s ease-in-out infinite 3.45s;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.hero-cta-btn img {
  z-index: 61;
}

.hero-cta-btn:focus {
  transform: scale(1.05);
  filter: brightness(1.15);
  animation-play-state: running !important;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-cta-btn {
    animation-play-state: running;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta-btn {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}



/* section two */

.second-section {
  background-color: #0B141F;
  margin-top: 600px;
  padding-bottom: 150px;
  position: relative;
}

.overflow-hidden {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  padding-top: 100px;
}

.layered-blur {
  position: absolute;
  top: -100px;
  right: -200px;
  height: 100%;
  z-index: 999999;
  scale: 1.2;
}

@media (max-width:1024px) {
  .layered-blur {
    top: -00px;
    right: -150px;
  }
}

@media (max-width:768px) {
  .layered-blur {
    display: none;
  }
}

.two-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.two-left {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  gap: 2rem;
  max-width: 600px;
}

.two-text {
  font-style: normal;
  font-weight: 400;
  font-size: 92px;
  leading-trim: both;
  text-edge: cap;
  text-transform: capitalize;
  background: linear-gradient(89.46deg, rgba(184, 192, 200, 0) -19.48%, rgba(160, 184, 212, 0.859813) 26.63%, #A0B8D4 111.9%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.two-description {
  margin: 0 auto;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  leading-trim: both;
  text-edge: cap;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  color: rgba(222, 235, 250, 0.62);
  line-height: 28px;
}

.cta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 235px;
  height: 72px;
  background: #9FADBE;
  border-radius: 900px;
  position: relative;
  background-image: url('../images/hero/cta-btn-bg.svg');
  border: none;
  outline: none;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    box-shadow 0.25s ease;
}

.cta-btn p {
  position: relative;
  right: 20px;
  font-weight: 600;
  font-size: 16px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  text-transform: uppercase;
  color: #0B141F;
}

.cta-btn img {
  position: absolute;
  right: 5px;
  width: 59px;
  height: 59px;
  background: #DEE3EA;
  border-radius: 900px;
}

#second-cta-btn:hover {
  transform: scale(1.05) !important;
  filter: brightness(1.15) !important;
  box-shadow: 0 0 25px rgba(222, 235, 250, 0.7) !important;
}


.two-right {
  position: relative;
}

.two-right-img {
  width: 100%;
  max-width: 600px;
  align-self: center;
}

.space-100 {
  height: 300px;
}

.under-two {
  position: absolute;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1100px;
}

.under-two-img {
  width: 100%;
  border-radius: 40px;
}


@media (max-width : 1400px) {
  .two-container {
    padding: 0 3rem 0 3rem;
  }
}

@media (max-width : 1100px) {
  .two-text {
    font-size: 80px;
  }

  .two-description {
    font-size: 20px;
  }
}

@media (max-width:1200px) {
  .second-section {
    margin-top: 300px;
  }
}

@media (max-width:1024px) {
  .two-text {
    font-size: 60px;
  }

  .two-container {
    padding: 3rem 3rem 0 3rem;
  }

  .cta-btn {
    width: 200px;
    height: 60px;
  }

  .cta-btn p {
    font-size: 15px;
  }

  .cta-btn img {
    right: 10px;
    width: 50px;
    height: 50px;
  }

}

@media (max-width:900px) {
  .second-section {
    margin-top: 200px;
  }
}

@media (max-width : 830px) {
  .two-text {
    font-size: 50px;
  }

  .second-section {
    padding-bottom: 80px;
  }
}

@media (max-width : 768px) {
  .two-container {
    flex-direction: column;
  }

  .two-left {
    align-items: center;
  }

  .two-text {
    font-size: 40px;
    margin: 1rem 0 1rem 0;
    text-align: center;
  }

  .two-description {
    margin-bottom: 1rem;
    text-align: center;
    max-width: 500px;
  }

  .second-section {
    padding-bottom: 10px;
  }

  .under-two {
    position: static;
    transform: none;
    margin: 0 auto;
    width: 80%;
  }

  .under-two-img {
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width:600px) {
  .second-section {
    margin-top: 100px;
  }
}

@media (max-width:500px) {
  .second-section {
    margin-top: 00px;
  }
}


@media (max-width:400px) {}


@media (max-width : 358px) {
  .two-text {
    font-size: 30px;
  }

  .two-description {
    font-size: 18px;
  }
}

@keyframes glowBtn {
  0% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 20px rgba(160, 184, 212, 0.6);
    transform: scale(1.02);
  }

  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    transform: scale(1);
  }
}


.second-section.active-two .two-left .cta-btn {
  animation:
    slideUpSec2 0.6s ease-out forwards 0.4s,
    glowBtn 2s ease-in-out infinite 1.2s;
}

.cta-btn:hover {
  animation-play-state: paused !important;
  transform: scale(1.05);
  filter: brightness(1.15);
  box-shadow: 0 0 25px rgba(222, 235, 250, 0.7);
}

/* animations for section two */

.second-section .two-text,
.second-section .two-description,
.second-section .two-left .cta-btn,
.second-section .two-right-img,
.second-section .under-two-img {
  opacity: 0;
  will-change: transform, opacity, filter;

  --enter-delay: 0.3s;
  --exit-delay: 0s;
}

.second-section .two-text {
  transform: translateX(-28px);
  --enter-delay: 0.12s;
  --exit-delay: 0s;
}

.second-section .two-description {
  transform: translateX(-28px);
  --enter-delay: 0.34s;
  --exit-delay: 0s;
}

.second-section .two-left .cta-btn {
  transform: translateY(18px) scale(0.98);
  --enter-delay: 0.56s;
  --exit-delay: 0s;
}

.second-section .two-right-img {
  transform: translateX(28px) scale(0.98);
  --enter-delay: 0.80s;
  --exit-delay: 0s;
}

.second-section .under-two-img {
  transform: translateY(28px) scale(0.985);
  --enter-delay: 1.02s;
  --exit-delay: 0s;
}


.second-section .two-text,
.second-section .two-description {
  transition-property: transform, opacity;
  transition-duration: 0.80s, 0.56s;
  transition-timing-function: cubic-bezier(.2, .9, .25, 1), ease;
  transition-delay: var(--exit-delay), var(--exit-delay);
}

.second-section .two-left .cta-btn {
  transition-property: transform, opacity, box-shadow, filter;
  transition-duration: 0.68s, 0.48s, 0.25s, 0.48s;
  transition-timing-function: cubic-bezier(.22, .9, .32, 1), ease, ease, ease;
  transition-delay: var(--exit-delay), var(--exit-delay), var(--exit-delay), var(--exit-delay);
}

.second-section .two-right-img,
.second-section .under-two-img {
  transition-property: transform, opacity, filter;
  transition-duration: 0.86s, 0.56s, 0.56s;
  transition-timing-function: cubic-bezier(.2, .9, .25, 1), ease, ease;
  transition-delay: var(--exit-delay), var(--exit-delay), var(--exit-delay);
}

.second-section.in-view .two-text,
.second-section.in-view .two-description,
.second-section.in-view .two-left .cta-btn,
.second-section.in-view .two-right-img,
.second-section.in-view .under-two-img {
  opacity: 1;
  transform: none;
}

.second-section.in-view .two-text {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.second-section.in-view .two-description {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.second-section.in-view .two-left .cta-btn {
  transition-delay: var(--enter-delay), var(--enter-delay), var(--enter-delay), var(--enter-delay);
}

.second-section.in-view .two-right-img,
.second-section.in-view .under-two-img {
  transition-delay: var(--enter-delay), var(--enter-delay), var(--enter-delay);
}

.second-section .two-left .cta-btn {

  animation: none;
}

.second-section.in-view .two-left .cta-btn {
  animation:

    glowBtn 2s ease-in-out infinite 1.3s;
}

.second-section .two-left .cta-btn:focus {
  outline: 2px solid rgba(160, 184, 212, 0.25);
  outline-offset: 3px;
}

.second-section .two-left .cta-btn,
.second-section .two-right-img,
.second-section .under-two-img {
  pointer-events: auto;
}

@keyframes glowBtn {
  0% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 20px rgba(160, 184, 212, 0.6);
    transform: scale(1.02);
  }

  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {

  .second-section .two-text,
  .second-section .two-description,
  .second-section .two-left .cta-btn,
  .second-section .two-right-img,
  .second-section .under-two-img {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}



/* third section */

.puls-biznesu-text {
  font-family: 'ClashDisplay-Medium';
  font-style: normal;
  font-weight: 400;
  font-size: 15vw;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FFFFFF -23.18%, #9FADBE 105.3%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.third-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
  top: -110px;
}

.third-text-left {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 500;
  font-size: 70px;
  leading-trim: both;
  text-edge: cap;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  color: #FFFFFF;
}

.third-description {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  leading-trim: both;
  text-edge: cap;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  color: #FFFFFF;
  line-height: 28px;
}

.third-highlight {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 800;
  font-size: 22px;
  line-height: 28px;
  leading-trim: both;
  text-edge: cap;
  text-transform: lowercase;
  color: #FFFFFF;
}

.third-left {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  gap: 1rem;
  max-width: 400px;
  position: relative;
  z-index: 20;
}

.third-btn {
  border: none;
  background-color: #0B141F;
  display: flex;
  border-radius: 900px;
  align-items: center;
  height: 72px;
  justify-content: center;
  cursor: pointer;
}

.third-btn>p {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  text-transform: uppercase;
  color: #9FADBE;
}

.third-btn img {
  position: relative;
  right: -20px;
}

.third-btn {
  position: relative;
  overflow: hidden;
  border: none;
  background: linear-gradient(90deg, #0B141F 0%, #0E2430 100%);
  display: flex;
  border-radius: 900px;
  align-items: center;
  height: 72px;
  justify-content: center;
  cursor: pointer;
  padding-left: 2rem;
  padding-right: 2rem;
  transition: transform 220ms cubic-bezier(.2, .9, .2, 1),
    box-shadow 300ms ease,
    background 300ms ease;
  will-change: transform;
}

.third-btn:hover,
.third-btn:focus {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(11, 20, 31, 0.45), 0 2px 8px rgba(14, 36, 48, 0.25);
  background: linear-gradient(90deg, #0F2733 0%, #112A3A 100%);
}

.third-btn>p {
  font-family: 'Urbanist', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #9FADBE;
  margin: 0;
  transition: color 220ms ease, letter-spacing 220ms ease;
}

.third-btn:hover>p,
.third-btn:focus>p {
  color: #FFFFFF;
  letter-spacing: 1.6px;
}

.third-btn img {
  position: relative;
  right: -20px;
  transition: transform 260ms cubic-bezier(.2, .9, .2, 1), opacity 200ms ease;
  transform-origin: center;
  width: 50px;
}

.third-btn:hover img,
.third-btn:focus img {
  transform: translateX(10px) rotate(6deg);
  opacity: 1;
}

.third-btn:hover img {
  right: -10px;
}

.third-btn::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -50%;
  width: 40%;
  height: 120%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg) translateX(-120%);
  transition: transform 650ms cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}

.third-btn:hover::before,
.third-btn:focus::before {
  transform: skewX(-20deg) translateX(320%);
}

.third-btn:focus-visible {
  outline: 3px solid rgba(159, 173, 190, 0.16);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

  .third-btn,
  .third-btn::before,
  .third-btn img,
  .third-btn>p {
    transition: none !important;
    transform: none !important;
  }
}


.third-center {
  position: relative;
  z-index: 1;
}

.third-center img {
  max-width: 627px;
  width: 100%;
}

.shadow-overlay {
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.third-right img {
  max-width: 376px;
  position: relative;
  left: -105px;
  top: -73px;
}

@media (max-width:1320px) {
  .puls-biznesu-text {
    /* font-size: 180px; */
  }

  .third-container {
    top: -80px;
    width: 90%;
  }

  .shadow-overlay {
    max-width: 700px;
  }

}

@media (max-width:1200px) {
  .puls-biznesu-text {
    /* font-size: 150px; */
  }

  .third-container {
    top: -60px;
  }

  .third-text-left {
    font-size: 50px;
  }

  .shadow-overlay {
    max-width: 550px;
  }

  .third-btn {
    width: 200px;
    height: 62px;
  }

  .third-btn img {
    right: -4px;
    width: 50px;
    height: 50px;
  }

  .third-btn>p {
    font-weight: 400;
    font-size: 14px;
  }

  .third-right img {
    position: relative;
    left: -80px;
    max-width: 276px;
  }

}

@media (max-width:1024px) {
  .puls-biznesu-text {
    /* font-size: 130px; */
  }

  .shadow-overlay {
    max-width: 500px;
  }

  .third-description {
    font-size: 18px;
  }

}

@media (max-width:900px) {
  .puls-biznesu-text {
    /* font-size: 110px; */
  }

  .third-container {
    flex-direction: column;
  }

  .third-left {
    order: 2;
  }

  .third-right {
    display: none;
  }

  .shadow-overlay {
    max-width: 900px;
    bottom: 200px;
    width: 100%;
  }

}

@media (max-width:768px) {
  .puls-biznesu-text {
    /* font-size: 60px; */
  }

  .third-center {
    width: 70%;
  }

  .third-text-left {
    text-align: center;
  }

  .third-description {
    text-align: center;
  }

  .third-btn {
    margin: 0 auto;
  }

  .shadow-overlay {
    max-width: none;
    width: 100%;
    bottom: 237px;
  }

  .third-btn {
    width: 250px;
    height: 72px;
  }

  .third-btn>p {
    font-weight: 600;
    font-size: 16px;
  }

  .third-btn img {
    position: relative;
    right: -10px;
  }

  .third-container {
    top: -35px;
  }

  .space-100 {
    height: 100px;
  }

}

@media (max-width:500px) {
  .space-100 {
    height: 50px;
  }
}

@media (max-width:400px) {
  .puls-biznesu-text {
    /* font-size: 50px; */
  }
}

@media (max-width:325px) {
  .puls-biznesu-text {
    /* font-size: 45px; */
  }
}

/* animations for section there */
.third-section .puls-biznesu-text,
.third-section .third-text-left,
.third-section .third-description,
.third-section .third-btn,
.third-section .third-center-img,
.third-section .third-right img {
  opacity: 0;
  will-change: transform, opacity, filter;
  --enter-delay: 0.35s;
  --exit-delay: 0s;
}

.third-section .puls-biznesu-text {
  transform: translateY(36px) scale(0.995);
  --enter-delay: 0.06s;
  transition: transform 0.90s cubic-bezier(.2, .9, .25, 1), opacity 0.60s ease;
  pointer-events: none;
  user-select: none;
}

.third-section .third-text-left {
  transform: translateX(-34px);
  --enter-delay: 0.18s;
  transition: transform 0.86s cubic-bezier(.2, .9, .25, 1), opacity 0.56s ease;
}

.third-section .third-description {
  transform: translateX(-20px);
  --enter-delay: 0.36s;
  transition: transform 0.74s cubic-bezier(.2, .9, .25, 1), opacity 0.50s ease;
}

.third-section .third-btn {
  transform: translateY(18px) scale(0.985);
  --enter-delay: 0.58s;
  transition: transform 0.68s cubic-bezier(.22, .9, .32, 1), opacity 0.48s ease, box-shadow 0.30s ease;
}

.third-section .third-center-img {
  transform: translateY(22px) scale(0.96) rotate(-1.5deg);
  --enter-delay: 0.72s;
  transition: transform 0.86s cubic-bezier(.18, .95, .28, 1), opacity 0.60s ease, filter 0.50s ease;
}

.third-section .third-right img {
  transform: translateX(30px) scale(0.98);
  --enter-delay: 0.88s;
  transition: transform 0.82s cubic-bezier(.2, .9, .25, 1), opacity 0.58s ease;
}

.third-section.in-view .puls-biznesu-text,
.third-section.in-view .third-text-left,
.third-section.in-view .third-description,
.third-section.in-view .third-btn,
.third-section.in-view .third-center-img,
.third-section.in-view .third-right img {
  opacity: 1;
  transform: none;
}

.third-section.in-view .puls-biznesu-text {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.third-section.in-view .third-text-left {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.third-section.in-view .third-description {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.third-section.in-view .third-btn {
  transition-delay: var(--enter-delay), var(--enter-delay), var(--enter-delay);
}

.third-section.in-view .third-center-img {
  transition-delay: var(--enter-delay), var(--enter-delay), var(--enter-delay);
}

.third-section.in-view .third-right img {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.third-section .third-btn {
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.third-section.in-view .third-btn:hover,
.third-section.in-view .third-btn:focus {
  transform: translateY(-4px) scale(1.01);
  filter: brightness(1.06);
  box-shadow: 0 8px 30px rgba(11, 20, 31, 0.18);
}

.third-section .third-btn,
.third-section .third-center-img,
.third-section .third-right img {
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {

  .third-section .puls-biznesu-text,
  .third-section .third-text-left,
  .third-section .third-description,
  .third-section .third-btn,
  .third-section .third-center-img,
  .third-section .third-right img {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* section four */

.fourth-section {
  background-color: #0B141F;
}

.fourth-section-container {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 2rem 0;
  margin: 0 auto;
  width: 90%;
}

.fourth-overlay-shadow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}


.fourth-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
}

.fourth-heading {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 400;
  font-size: 90px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  text-transform: capitalize;
  background: linear-gradient(90deg, #0B141F 0%, #BAC9DD 33.17%, #BAC9DD 60.1%, #0B141F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 2rem;
}

.fourth-left {
  /* padding: 1rem; */
  position: relative;
}

.fourth-left img {
  border-radius: 25px;
  /* max-width: 800px; */
}

.project-details-page-indicator-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  height: 90px;
  width: 90px;
  cursor: pointer;
}

.project-details-page-indicator-btn:hover {
  scale: 1.05;
  filter: brightness(1.15);
  animation-play-state: paused;
}

.project-details-page-indicator-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  z-index: 9999;
  overflow: visible;
  cursor: pointer;
  animation: pdp-bounce 2.4s infinite cubic-bezier(.25, .8, .25, 1);
}

.project-details-page-indicator-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  outline: none;
  cursor: pointer;
  height: auto;
  width: auto;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 9999;
  animation: pdp-bounce 2.4s infinite cubic-bezier(.25, .8, .25, 1);
  text-decoration: none;
}

.project-button-text {
  font-size: 14px;
  font-weight: 500;
  color: #0B141F;
  position: relative;
  right: -5px;
  font-family: "Urbanist", sans-serif;
}

.cta-btn-arrow {
  animation: pdp-arrow-spin 2.4s infinite;
  pointer-events: none;
}

.project-details-page-indicator-btn>img {
  height: 40px;
  width: 40px;
  position: relative;
  left: 10px;
}

@keyframes pdp-bounce {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-6px);
  }

  40% {
    transform: translateY(0);
  }

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

.project-details-page-indicator-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: center;
  animation: pdp-arrow-spin 2.4s infinite;
}

@keyframes pdp-arrow-spin {
  0% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(18deg);
  }

  40% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}


.fourth-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1rem;
}

.fourth-right img {
  width: 149px;
  height: 177px;
  border-radius: 12px;
  object-fit: cover;
}

.fourth-video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  max-width: 1300px;
  margin: 5rem auto;
  position: relative;
}

.fourth-video-thumbnail {
  border-radius: 25px;
  width: 100%;
  max-width: 1320px;
  max-height: 566px;
}

.fourth-video-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.video-overlay-text {
  font-family: 'ClashDisplay-Regular';
  font-style: normal;
  font-weight: 400;
  font-size: 185px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  background-size: contain;
  background-image: url('images/section-four/fourth-video-thumbnail.png');
  background-position: center;
  -webkit-user-select: none;
  user-select: none;
  filter: brightness(1.4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}


#reverse-project-section {
  background-color: transparent;
  padding-top: 3rem;
}

#reverse-project-container {
  flex-direction: row-reverse;
}

.pinned-project-img {
  width: 100%;
  max-width: 985px;
  height: auto;
  clip-path: url(#projectClip);
  cursor: pointer;
  aspect-ratio: 985 / 566;
}

.project-pinned-pic-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 31%;
  height: 16%;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 900px;
  position: absolute;
  bottom: 13px;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
}

.project-pinned-pic-btn:hover {
  scale: 1.05;
  filter: brightness(1.15);
}

.profile-pic {
  border: 7px solid #E4E8ED;
  background: #E4E8ED;
  border-radius: 999px !important;
  height: 70px;
  width: 70px;
  object-fit: contain;
}

.house-owner-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  leading-trim: both;
  text-edge: cap;
  text-transform: capitalize;
  color: #293B52;
}

.owner-name {
  font-family: 'ClashDisplay-Medium';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  leading-trim: both;
  text-edge: cap;
  text-transform: uppercase;
  color: #0B141F;
  text-align: left;
}

@media (max-width: 1200px) {
  .project-pinned-pic-btn {
    width: 30%;
    height: 15%;
    padding: 6px 10px;
    gap: 6px;
  }

  .profile-pic {
    height: 55px;
    width: 55px;
    border: 4px solid #E4E8ED;
  }

  .house-owner-details {
    font-size: 13px;
    gap: 4px;
  }

  .owner-name {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {

  .profile-pic {
    height: 35px;
    width: 35px;
  }

  .house-owner-details {
    font-size: 12px;
    gap: 4px;
  }

  .owner-name {
    font-size: 12px;
  }

}

@media (max-width: 768px) {
  .project-pinned-pic-btn {
    gap: 2px;
    bottom: 5px;
    left: 0;
  }

  .profile-pic {
    height: 30px;
    width: 30px;
  }

  .house-owner-details {
    font-size: 11px;
    gap: 4px;
  }

  .owner-name {
    font-size: 11px;
  }
}

@media (max-width: 700px) {

  .house-owner-details {
    font-size: 10px;
    gap: 0px;
  }

  .owner-name {
    font-size: 10px;
  }
}

@media (max-width:600px) {
  .project-pinned-pic-btn {
    display: none;
  }

  .pinned-project-img {
    clip-path: none;
  }
}

@media (max-width:1350px) {
  .fourth-video-thumbnail {
    width: 90%;
  }

  .video-overlay-text {
    font-size: 155px;
  }
}

@media (max-width:1300px) {
  .video-overlay-text {
    font-size: 135px;
  }
}

@media (max-width:1270px) {
  .fourth-right img {
    width: 120px;
    height: 127px;
  }

  .video-play-icon {
    width: 180px;
    height: auto;
  }
}

@media (max-width:1200px) {
  .fourth-right img {
    width: 100px;
    height: 107px;
  }

  .fourth-container {
    align-items: flex-start;
  }

  .video-play-icon {
    width: 120px;
    height: auto;
  }

  .video-overlay-text {
    font-size: 130px;
  }

  .fourth-video-container {
    /* margin: 0 auto; */
    /* margin-top: -10rem; */
  }

}

@media (max-width:1080px) {
  .video-overlay-text {
    font-size: 120px;
  }
}

@media (max-width:1024px) {

  .fourth-video-container {
    margin: 3rem auto;
  }


  .fourth-right img {
    width: 100%;
    max-height: 110px;
  }

  .fourth-container {
    width: 90%;
    align-items: center;
  }

}

@media (min-width:768px) and (max-width:1024px) {
  .pinned-project-img {
    clip-path: none;
  }

  .project-pinned-pic-btn {
    display: none;
  }
}

@media (max-width:980px) {
  .video-play-icon {
    width: 90px;
  }

  .video-overlay-text {
    font-size: 100px;
  }

}

@media (max-width:840px) {
  .video-overlay-text {
    font-size: 80px;
  }
}

@media (max-width:768px) {
  .fourth-heading {
    font-size: 60px;
  }

  .fourth-container {
    flex-direction: column;
    gap: 2rem;
  }

  .fourth-left {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 90%;
  }

  .fourth-left img {
    width: 100%;
  }

  .fourth-right img {
    width: 100%;
    max-height: 171px;
    height: 100%;
  }

  .video-play-icon {
    width: 70px;
  }

}

@media (min-width:600px) and (max-width:768px) {
  #project-cta-btn-arrow {
    width: min-content;
  }
}

@media (max-width:600px) {
  .fourth-right img {
    width: 170px;
    height: 300px;
  }

  .fourth-left {
    width: 100%;
  }

  .fourth-heading {
    font-size: 40px;
  }

  .fourth-left img {
    border-radius: 15px;
  }

  .video-overlay-text {
    font-size: 50px;
  }

  .project-details-page-indicator-btn>img {
    height: 30px !important;
    width: 30px !important;
  }

  .project-details-page-indicator-btn {
    padding: 7px 15px;
  }

}

@media (max-width:425px) {
  .fourth-heading {
    font-size: 30px;
  }

  .video-play-icon {
    width: 60px;
  }

  .video-overlay-text {
    font-size: 40px;
  }

  .project-button-text {
    font-size: 12px;
  }

  .project-details-page-indicator-btn {
    padding: 2px 4px;
  }

  .project-details-page-indicator-btn>img {
    left: -1px;
  }

  .project-button-text {
    right: -4px;
  }

}

@media (max-width:400px) {
  .video-overlay-text {
    font-size: 35px;
  }
}

@media (max-width:375px) {
  .fourth-right img {
    width: 140px;
    height: 150px;
  }
}

@media (max-width:360px) {
  .fourth-video-thumbnail {
    width: 100%;
  }
}

@media (max-width:330px) {
  .fourth-right {
    scale: 0.9;
    margin-top: -2rem;
  }
}

#reverse-project-section .fourth-section-container {
  background-color: transparent;
  padding-top: 3rem;
}

#reverse-project-container {
  flex-direction: row-reverse;
}

#reverse-project-section .fourth-section-container {
  background-color: transparent;
  padding-top: 3rem;
}

#reverse-project-container {
  flex-direction: row-reverse;
}

/* Reset flex-direction for single column layouts */
@media (max-width:768px) {
  #reverse-project-container {
    flex-direction: column;
  }
}

.fourth-section-container .fourth-heading,
.fourth-section-container .fourth-left,
.fourth-section-container .fourth-right {
  opacity: 0;
  will-change: transform, opacity;
  --enter-delay: 0.28s;
  --exit-delay: 0s;
}

.fourth-section-container .fourth-heading {
  transform: translateY(18px);
  --enter-delay: 0.06s;
  transition: transform 0.70s cubic-bezier(.2, .9, .25, 1), opacity 0.50s ease;
}

.fourth-section-container .fourth-left {
  transform: translateX(-24px);
  --enter-delay: 0.22s;
  transition: transform 0.78s cubic-bezier(.2, .9, .25, 1), opacity 0.50s ease;

  pointer-events: auto;
}

.fourth-section-container .fourth-right {
  transform: translateX(24px);
  --enter-delay: 0.36s;
  transition: transform 0.78s cubic-bezier(.2, .9, .25, 1), opacity 0.50s ease;
  pointer-events: auto;
}

.fourth-section-container.in-view .fourth-heading,
.fourth-section-container.in-view .fourth-left,
.fourth-section-container.in-view .fourth-right {
  opacity: 1;
  transform: none;
}

.fourth-section-container.in-view .fourth-heading {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.fourth-section-container.in-view .fourth-left {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.fourth-section-container.in-view .fourth-right {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.fourth-section-container .project-pinned-pic-btn,
.fourth-section-container .project-details-page-indicator-btn,
.fourth-section-container .pinned-project-img,
.fourth-section-container .other-project-imgs {
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {

  .fourth-section-container .fourth-heading,
  .fourth-section-container .fourth-left,
  .fourth-section-container .fourth-right {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Fix for pinned image swap - maintains dimensions when image changes */
.pinned-project-img {
  display: block !important;
  width: 100% !important;
  max-width: 985px !important;
  min-height: 566px !important;
  height: 566px !important;
  object-fit: cover !important;
}

/* Responsive fixed heights to match your original design */
@media (max-width: 1350px) {
  .pinned-project-img {
    min-height: 466px !important;
    height: 466px !important;
  }
}

@media (max-width: 1200px) {
  .pinned-project-img {
    min-height: 546px !important;
    height: 546px !important;
  }
}

@media (max-width: 1024px) {
  .pinned-project-img {
    height: auto !important;
    min-height: auto !important;
  }
}

/* footer animations */
.fourth-section .fourth-heading,
.fourth-section .fourth-left,
.fourth-section .fourth-right {
  opacity: 0;
  will-change: transform, opacity;
  --enter-delay: 0.28s;
  --exit-delay: 0s;
}

.fourth-section .fourth-heading {
  transform: translateY(18px);
  --enter-delay: 0.06s;
  transition: transform 0.70s cubic-bezier(.2, .9, .25, 1), opacity 0.50s ease;
}

.fourth-section .fourth-left {
  transform: translateX(-24px);
  --enter-delay: 0.22s;
  transition: transform 0.78s cubic-bezier(.2, .9, .25, 1), opacity 0.50s ease;

  pointer-events: auto;
}

.fourth-section .fourth-right {
  transform: translateX(24px);
  --enter-delay: 0.36s;
  transition: transform 0.78s cubic-bezier(.2, .9, .25, 1), opacity 0.50s ease;
  pointer-events: auto;
}

.fourth-section.in-view .fourth-heading,
.fourth-section.in-view .fourth-left,
.fourth-section.in-view .fourth-right {
  opacity: 1;
  transform: none;
}

.fourth-section.in-view .fourth-heading {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.fourth-section.in-view .fourth-left {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.fourth-section.in-view .fourth-right {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.fourth-section .project-pinned-pic-btn,
.fourth-section .project-details-page-indicator-btn,
.fourth-section .pinned-project-img,
.fourth-section .other-project-imgs {
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {

  .fourth-section .fourth-heading,
  .fourth-section .fourth-left,
  .fourth-section .fourth-right {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


/* fifth section - feedback section */

.fifth-section {
  overflow: hidden;
  padding: 1rem 0 5.5rem 0;
}

.feedback-title {
  font-family: 'ClashDisplay-Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 225px;
  line-height: 175px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FFFFFF -23.18%, #9FADBE 105.3%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-top: 3rem;
}

.fifth-container {
  max-width: 1300px;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  margin: 2rem auto;
}

.fifth-left {
  position: relative;
}

.fifth-left-shadow {
  position: absolute;
  bottom: -100px;
  left: 0;
}

.fifth-left-img {
  width: 90%;
  max-width: 424px;
}

.fifth-feedback {
  background: #0B141F;
  border-radius: 18px;
  background-image: url('../images/section-five/feedback-box-bgg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin: 0 1rem 0 0;
  width: 430px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
}

.feedback-name {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  leading-trim: both;
  text-edge: cap;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: linear-gradient(64.04deg, #9FADBE 24.07%, #C8E1FF 55.02%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding: 0 0 0 2rem;
  line-height: 39px;
}

.feedback-text {
  font-family: 'Urbanist';
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  leading-trim: both;
  text-edge: cap;
  text-transform: lowercase;
  color: #BFD3EB;
  padding: 0 0 2rem 2rem;
  max-width: 300px;
}

.feedback-highlight {
  font-weight: bold;
  font-style: italic;
}

.feedback-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 90px;
}

.fifth-right-img {
  border-radius: 15px;
  max-width: 427px;
  max-height: 528px;
}

.feedback-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  height: 58px;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  backdrop-filter: blur(17px);
  border-radius: 900px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 0.5rem;
}

.feedback-btn-text {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(270.01deg, #6C8FB9 0.01%, #0B141F 110.78%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
  left: 10px;
}

@media (max-width : 1320px) {
  .fifth-container {
    width: 90%;
  }

  .fifth-left-img {
    max-width: 400px;
  }

  .fifth-feedback {
    width: 50%;
  }

  .feedback-name {
    width: 60%;
    font-size: 25px;
  }

  .fifth-right-img {
    width: 90%;
  }

  .feedback-title {
    font-size: 150px;
  }

}


@media (max-width:1024px) {
  .fifth-left-shadow {
    max-height: 250px;
    z-index: 0;
  }

  .fifth-right {
    z-index: 1;
  }

  .fifth-container {
    margin: 1rem auto;
  }

  .fifth-feedback {
    width: 60%;
    height: 300px;
  }

  .feedback-name {
    padding: 0 0 0 1rem;
    width: 100%;
  }

  .feedback-text {
    padding: 0 0 1rem 1rem;
  }

  .feedback-logo {
    width: 50px;
    height: auto;
  }

  .feedback-title {
    font-size: 130px;
  }

}

@media (max-width : 768px) {
  .fifth-container {
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
    align-items: center;
  }

  .fifth-feedback {
    width: 80%;
    max-width: 400px;
    margin: 0;
  }

  .feedback-name {
    padding: 0 0 0 2rem;
    width: 100%;
  }

  .feedback-text {
    padding: 0 0 2rem 2rem;
  }

  .feedback-title {
    font-size: 90px;
  }

  .feedback-button {
    width: 240px;
  }

  .feedback-btn-text {
    left: 14px;
  }

  .feedback-button img {
    position: relative;
    right: -14px;
  }

  .fifth-right {
    display: flex;
    justify-content: center;
    align-items: center;
  }

}

@media (max-width:425px) {
  .feedback-title {
    font-size: 60px;
  }
}

/* animation styles for fifth section */
.fifth-section .feedback-title,
.fifth-section .fifth-left-img,
.fifth-section .fifth-feedback,
.fifth-section .fifth-right-img,
.fifth-section .feedback-button {
  opacity: 0;
  will-change: transform, opacity;
  --enter-delay: 0.4s;
  --exit-delay: 0s;
}

.fifth-section .feedback-title {
  transform: translateY(36px);
  --enter-delay: 0.08s;
  transition: transform 0.88s cubic-bezier(.2, .9, .25, 1), opacity 0.56s ease;
}

.fifth-section .fifth-left-img {
  transform: translateX(-28px) scale(0.995);
  --enter-delay: 0.22s;
  transition: transform 0.84s cubic-bezier(.2, .9, .25, 1), opacity 0.56s ease;
}

.fifth-section .fifth-feedback {
  transform: translateY(22px) scale(0.995);
  --enter-delay: 0.42s;
  transition: transform 0.78s cubic-bezier(.22, .9, .32, 1), opacity 0.56s ease, filter 0.5s ease;
}

.fifth-section .fifth-right-img {
  transform: translateX(28px) scale(0.99);
  --enter-delay: 0.62s;
  transition: transform 0.84s cubic-bezier(.2, .9, .25, 1), opacity 0.56s ease;
}

.fifth-section .feedback-button {
  transform: translateY(18px) scale(0.99);
  --enter-delay: 0.82s;
  transition: transform 0.68s cubic-bezier(.22, .9, .32, 1), opacity 0.48s ease, box-shadow 0.25s ease;
}

.fifth-section.in-view .feedback-title,
.fifth-section.in-view .fifth-left-img,
.fifth-section.in-view .fifth-feedback,
.fifth-section.in-view .fifth-right-img,
.fifth-section.in-view .feedback-button {
  opacity: 1;
  transform: none;
}

.fifth-section.in-view .feedback-title {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.fifth-section.in-view .fifth-left-img {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.fifth-section.in-view .fifth-feedback {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.fifth-section.in-view .fifth-right-img {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.fifth-section.in-view .feedback-button {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.fifth-section .feedback-button {
  cursor: pointer;
  pointer-events: auto;
}

.fifth-section.in-view .feedback-button:hover,
.fifth-section.in-view .feedback-button:focus {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 34px rgba(11, 20, 31, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.fifth-section .fifth-left,
.fifth-section .fifth-right,
.fifth-section .fifth-feedback {}

@media (prefers-reduced-motion: reduce) {

  .fifth-section .feedback-title,
  .fifth-section .fifth-left-img,
  .fifth-section .fifth-feedback,
  .fifth-section .fifth-right-img,
  .fifth-section .feedback-button {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


/* sixth section */

.sixth-section {
  background-color: #0B141F;
  position: relative;
  padding: 4rem 0 9rem 0;
  overflow: hidden;
}

.sixth-overlay-shadow {
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
}

.sixth-title {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 400;
  font-size: 90px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  text-transform: capitalize;
  background: linear-gradient(90deg, #0B141F 0%, #BAC9DD 33.17%, #BAC9DD 60.1%, #0B141F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 3rem;
}

.sixth-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}



.sixth-left img {
  max-width: 760px;
  /* border-radius: 22px; */
}

.sixth-right {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  gap: 1rem;
}

.sixth-heading {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 300;
  font-size: 3.8em;
  line-height: 59px;
  leading-trim: both;
  text-edge: cap;
  text-transform: capitalize;
  color: #FFFFFF;
}

.sixth-description {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 500;
  font-size: 23px;
  line-height: 28px;
  leading-trim: both;
  text-edge: cap;
  text-transform: capitalize;
  color: #FFFFFF;
}

.sixth-cta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 235px;
  height: 72px;
  background: #9FADBE;
  border-radius: 900px;
  position: relative;
  background-image: url('../images/hero/cta-btn-bg.svg');
  border: none;
  outline: none;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    box-shadow 0.25s ease;
}

.sixth-cta-btn p {
  position: relative;
  right: 20px;
  font-weight: 600;
  font-size: 16px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  text-transform: uppercase;
  color: #0B141F;
}

.sixth-cta-btn img {
  position: absolute;
  right: 5px;
  width: 59px;
  height: 59px;
  background: #DEE3EA;
  border-radius: 900px;
}

.sixth-cta-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
  box-shadow: 0 0 25px rgba(222, 235, 250, 0.7);
}

.sixth-left {
  width: 760px;
}

.sixth-left-main {
  width: 760px;
  display: grid;
  place-items: center;
}

.sixth-left-main {
  display: grid;
  place-items: center;
}

.sixth-left-container {
  display: grid;
  place-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  --position: 50%;
}

.experience-tag {
  position: absolute;
  z-index: 99;
  left: 10%;
  top: -31px;
}

.sixth-left-image-container {
  width: 760px;
  height: 509px;
  border-radius: 22px;
  overflow: hidden;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.image-before {
  position: absolute;
  inset: 0;
  width: var(--position);
}

.slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  /* for Firefox */
  width: 100%;
  height: 100%;
}

.slider:focus-visible~.slider-button {
  outline: 5px solid black;
  outline-offset: 3px;
}

.slider-line {
  position: absolute;
  inset: 0;
  width: .2rem;
  height: 100%;
  background-color: #00c5e7;
  /* z-index: 10; */
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}

.slider-button {
  position: absolute;
  color: white;
  padding: .5rem;
  border-radius: 100vw;
  display: grid;
  place-items: center;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
  /* z-index: 100; */
}

.slider-button img {
  height: 150px;
  width: 150px;
}

.sixth-left-image-container {
  width: 760px;
  height: 509px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.image-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.image-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width:1320px) {
  .sixth-left-image-container {
    width: 680px;
    height: 430px;
  }

  .sixth-left img {
    max-width: 680px;
  }

  .sixth-left-main {
    max-width: 680px;
  }

  .sixth-left {
    width: 680px;
  }

  .sixth-heading {
    font-size: 50px;
  }

  .sixth-description {
    font-size: 20px;
  }

  .sixth-container {
    gap: 1rem;
    width: 90%;
  }

  .slider-button img {
    width: 80px;
    height: 80px;
  }

}

@media (max-width:1200px) {
  .sixth-left-image-container {
    width: 600px;
    height: 360px;
  }

  .sixth-left-main {
    max-width: 600px;
  }

  .sixth-left {
    width: 600px;
  }

  .sixth-heading {
    font-size: 40px;
  }

}

@media (max-width:1024px) {
  .sixth-left-image-container {
    width: 400px;
    height: 270px;
  }

  .sixth-left img {
    max-width: 400px;
  }

  .sixth-left-main {
    max-width: 400px;
  }

  .sixth-left {
    width: 400px;
  }

  .sixth-title {
    font-size: 70px;
  }

  .sixth-heading {
    font-size: 30px;
  }

  .sixth-description {
    font-size: 18px;
  }

  .experience-tag {
    width: 150px;
  }

  .sixth-cta-btn {
    width: 200px;
    height: 60px;
  }

  .sixth-cta-btn p {
    /* font-size: 14px; */
  }

  .sixth-cta-btn img {
    height: 40px;
    width: 40px;
    right: 10px;
  }

  .sixth-cta-btn p {
    right: 15px;
  }

}

@media (max-width:768px) {
  .sixth-container {
    flex-direction: column;
  }

  .sixth-right {
    justify-content: center;
    align-items: center;
  }

  .sixth-description {
    text-align: center;
  }

  .experience-tag {
    width: 100px;
    top: -16px;
  }

}

@media (max-width:600px) {
  .sixth-title {
    font-size: 40px;
  }

  .sixth-heading {
    text-align: center;
  }

}

@media (max-width:425px) {
  .sixth-left-image-container {
    width: 350px;
    height: 230px;
  }

  .sixth-left img {
    max-width: 350px;
  }

  .sixth-left-main {
    max-width: 350px;
  }

  .sixth-left {
    width: 350px;
  }

  .experience-tag {
    width: 80px;
    top: -16px;
  }

}

@media(max-width:375px) {
  .sixth-left-image-container {
    width: 300px;
    height: 180px;
  }

  .sixth-left img {
    max-width: 300px;
  }

  .sixth-left-main {
    max-width: 300px;
  }

  .sixth-left {
    width: 300px;
  }

  .sixth-title {
    font-size: 30px;
  }
}

/* animtion styles for sixth section */
.sixth-section .sixth-title,
.sixth-section .sixth-left-main,
.sixth-section .sixth-heading,
.sixth-section .sixth-description,
.sixth-section .sixth-cta-btn {
  opacity: 0;
  will-change: transform, opacity;
  --enter-delay: 0.36s;
  --exit-delay: 0s;
}

.sixth-section .sixth-title {
  transform: translateY(34px);
  --enter-delay: 0.08s;
  transition: transform 0.88s cubic-bezier(.2, .9, .25, 1), opacity 0.56s ease;
}

.sixth-section .sixth-left-main {
  transform: translateX(-28px) scale(0.995);
  --enter-delay: 0.24s;
  transition: transform 0.86s cubic-bezier(.2, .9, .25, 1), opacity 0.56s ease;

  pointer-events: auto;
}

.sixth-section .sixth-heading {
  transform: translateY(20px);
  --enter-delay: 0.44s;
  transition: transform 0.78s cubic-bezier(.22, .9, .32, 1), opacity 0.52s ease;
}

.sixth-section .sixth-description {
  transform: translateY(18px);
  --enter-delay: 0.60s;
  transition: transform 0.78s cubic-bezier(.22, .9, .32, 1), opacity 0.52s ease;
}

.sixth-section .sixth-cta-btn {
  transform: translateY(18px) scale(0.995);
  --enter-delay: 0.80s;
  transition: transform 0.64s cubic-bezier(.22, .9, .32, 1), opacity 0.48s ease, box-shadow 0.25s ease;
  pointer-events: auto;
}

.sixth-section.in-view .sixth-title,
.sixth-section.in-view .sixth-left-main,
.sixth-section.in-view .sixth-heading,
.sixth-section.in-view .sixth-description,
.sixth-section.in-view .sixth-cta-btn {
  opacity: 1;
  transform: none;
}

.sixth-section.in-view .sixth-title {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.sixth-section.in-view .sixth-left-main {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.sixth-section.in-view .sixth-heading {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.sixth-section.in-view .sixth-description {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.sixth-section.in-view .sixth-cta-btn {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

.sixth-section.in-view .sixth-cta-btn:hover,
.sixth-section.in-view .sixth-cta-btn:focus {
  transform: translateY(-6px) scale(1.02);
  filter: brightness(1.06);
  box-shadow: 0 12px 34px rgba(11, 20, 31, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sixth-section .slider {
  cursor: pointer;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {

  .sixth-section .sixth-title,
  .sixth-section .sixth-left-main,
  .sixth-section .sixth-heading,
  .sixth-section .sixth-description,
  .sixth-section .sixth-cta-btn {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}



/* footer */

footer {
  padding-top: 5rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-image: url('../images/footer/bg.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  padding: 30px 0 70px 0;
}

.footer-top-img {
  max-width: 60%;
  margin-bottom: 2rem;
}

.footer-heading {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 300;
  font-size: 60px;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  background: linear-gradient(93.81deg, #FFFFFF 43.56%, #6C8FB9 88.31%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  width: 80%;
}


.footer-description {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  color: #FFFFFF;
}

.footer-cta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 346px;
  height: 72px;
  background: #9FADBE;
  border-radius: 900px;
  position: relative;
  background-image: url('../images/hero/footer-cta-btn-bg.svg');
  border: none;
  outline: none;
  cursor: pointer;
}

.footer-cta-btn p {
  position: relative;
  right: 20px;
  font-weight: 600;
  font-size: 16px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  text-transform: uppercase;
  color: #0B141F;
}

.footer-cta-btn img {
  position: absolute;
  right: 5px;
  width: 59px;
  height: 59px;
  background: #DEE3EA;
  border-radius: 900px;
}

.footer-end {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 2rem;
  overflow: hidden;
}

.footer-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-last-description {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 21px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  text-transform: capitalize;
  color: #0B141F;

}


.footer-highlight {
  font-weight: bold;
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  font-size: 19px;
  line-height: 21px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(90.5deg, #0B141F 11.09%, #1F4676 55.32%, #0B141F 91.1%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@media (max-width:1200px) {
  .footer-container {
    width: 85%;
  }

  .footer-heading {
    font-size: 50px;
    margin: 1rem auto
  }

  .footer-description {
    width: 80%;
  }

}

@media (max-width:1024px) {
  .footer-heading {
    font-size: 40px;
  }

  .footer-left-arrow,
  .footer-right-arrow {
    max-width: 150px;
  }

}

@media (max-width:768px) {
  .footer-heading {
    font-size: 30px;
  }

  .footer-description {
    font-size: 18px;
  }

  .footer-cta-btn {
    width: 300px;
    margin-top: 2rem;
  }

  .footer-cta-btn p {
    right: 25px;
    font-size: 14px;
  }

  .footer-left-arrow,
  .footer-right-arrow {
    max-width: 100px;
  }

  .footer-last-description {
    font-size: 15px;
  }

  .footer-center {
    min-width: 100px;
  }

}

@media (max-width:375px) {
  .footer-cta-btn {
    width: 230px;
    margin-top: 2rem;
  }

  .footer-cta-btn p {
    right: 16px;
    font-size: 11px;
  }

  .footer-left-arrow,
  .footer-right-arrow {
    max-width: 50px;
  }

  .footer-last-description {
    font-size: 15px;
  }

  .footer-center {
    min-width: 100px;
  }

  .footer-cta-btn img {
    height: 40px;
    width: 40px;
  }

  .eu-icon {
    width: 50px;
    height: auto;
  }

  .footer-end {
    gap: 2rem;
  }

  .footer-center {
    gap: 10px;
  }

  .footer-container {
    padding: 40px 0 40px 0;
  }

}



/* animtion styles for footer */
footer .footer-top-img,
footer .footer-heading,
footer .footer-description,
footer .footer-cta-btn,
footer .footer-left-arrow,
footer .footer-center,
footer .footer-right-arrow {
  opacity: 0;
  will-change: transform, opacity;
  --enter-delay: 0.36s;
  --exit-delay: 0s;
}

footer .footer-top-img {
  transform: translateY(-18px) scale(0.995);
  --enter-delay: 0.06s;
  transition: transform 0.72s cubic-bezier(.2, .9, .25, 1), opacity 0.52s ease;
}

footer .footer-heading {
  transform: translateY(28px);
  --enter-delay: 0.18s;
  transition: transform 0.84s cubic-bezier(.2, .9, .25, 1), opacity 0.56s ease;
}

footer .footer-description {
  transform: translateY(18px);
  --enter-delay: 0.38s;
  transition: transform 0.78s cubic-bezier(.22, .9, .32, 1), opacity 0.52s ease;
}

footer .footer-cta-btn {
  transform: translateY(18px) scale(0.995);
  --enter-delay: 0.60s;
  transition: transform 0.64s cubic-bezier(.22, .9, .32, 1), opacity 0.48s ease, box-shadow 0.25s ease;
  pointer-events: auto;
}

footer .footer-left-arrow {
  transform: translateX(-28px);
  --enter-delay: 0.78s;
  transition: transform 0.76s cubic-bezier(.2, .9, .25, 1), opacity 0.48s ease;
}

footer .footer-center {
  transform: translateY(18px) scale(0.995);
  --enter-delay: 0.92s;
  transition: transform 0.76s cubic-bezier(.2, .9, .25, 1), opacity 0.48s ease;
}

footer .footer-right-arrow {
  transform: translateX(28px);
  --enter-delay: 1.06s;
  transition: transform 0.76s cubic-bezier(.2, .9, .25, 1), opacity 0.48s ease;
}

footer.in-view .footer-top-img,
footer.in-view .footer-heading,
footer.in-view .footer-description,
footer.in-view .footer-cta-btn,
footer.in-view .footer-left-arrow,
footer.in-view .footer-center,
footer.in-view .footer-right-arrow {
  opacity: 1;
  transform: none;
}

footer.in-view .footer-top-img {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

footer.in-view .footer-heading {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

footer.in-view .footer-description {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

footer.in-view .footer-cta-btn {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

footer.in-view .footer-left-arrow {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

footer.in-view .footer-center {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

footer.in-view .footer-right-arrow {
  transition-delay: var(--enter-delay), var(--enter-delay);
}

footer.in-view .footer-cta-btn:hover,
footer.in-view .footer-cta-btn:focus {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 36px rgba(11, 20, 31, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

footer .footer-cta-btn,
footer .footer-top-img,
footer .footer-center,
footer .footer-left-arrow,
footer .footer-right-arrow {
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {

  footer .footer-top-img,
  footer .footer-heading,
  footer .footer-description,
  footer .footer-cta-btn,
  footer .footer-left-arrow,
  footer .footer-center,
  footer .footer-right-arrow {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


/* contact form styles */
.pcf-root {
  --pcf-bg-1: #06070a;
  --pcf-bg-2: #0f1720;
  --pcf-card: rgba(255, 255, 255, 0.03);
  --pcf-glass: rgba(255, 255, 255, 0.04);
  --pcf-muted: rgba(255, 255, 255, 0.55);
  --pcf-accent: linear-gradient(135deg, #0b141f 0%, #06B6D4 100%);
  --pcf-accent-color: #0b141f;
  --pcf-success: #22c55e;
  --pcf-danger: #ff637b;
  --pcf-radius: 14px;
  --pcf-glass-border: rgba(255, 255, 255, 0.06);
  font-family: inherit;
  color: #E6EEF3;
}

.pcf-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(15px) saturate(115%);
  background: #000000b0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.pcf-overlay[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto
}

.pcf-modal {
  width: min(680px, calc(100% - 48px));
  background: rgb(255 255 255 / 6%);
  border-radius: var(--pcf-radius);
  padding: 22px;
  border: 1px solid var(--pcf-glass-border);
  box-shadow: 0 10px 40px rgba(2, 6, 23, 0.7);
  transform: translateY(20px) scale(.98);
  opacity: 0;
  transition: opacity .28s cubic-bezier(.2, .9, .2, 1), transform .28s cubic-bezier(.2, .9, .2, 1);
  max-height: 80vh;
  overflow: auto;
}

.pcf-overlay[aria-hidden="false"] .pcf-modal {
  transform: translateY(0) scale(1);
  opacity: 1
}

.pcf-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px
}

.pcf-modal-title {
  display: flex;
  gap: 12px;
  align-items: center
}

.pcf-modal-title h3 {
  margin: 0;
  font-size: 22px
}

.pcf-modal-sub {
  color: var(--pcf-muted);
  font-size: 16px
}

.pcf-close-btn {
  background: transparent;
  border: 0;
  color: var(--pcf-muted);
  font-size: 16px;
  padding: 8px;
  border-radius: 10px;
  cursor: pointer
}

.pcf-close-btn:hover {
  background: rgba(255, 255, 255, 0.02)
}

.pcf-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 2rem;
  align-items: start
}

.pcf-full {
  grid-column: 1/-1
}

.pcf-field {
  position: relative;
  padding-top: 8px
}

.pcf-field input.pcf-ignore,
.pcf-field textarea.pcf-ignore {}

.pcf-root input[type="text"],
.pcf-root input[type="email"],
.pcf-root textarea,
.pcf-root select {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid #eef1f49c;
  color: inherit;
  font-size: 14px;
  outline: none;
  transition: box-shadow .18s ease, border-color .18s ease, transform .12s ease;
  resize: vertical;
  min-height: 44px;
}

.pcf-root input[type="text"]:focus,
.pcf-root textarea:focus,
.pcf-root select:focus {
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.09);
  border-color: #eef1f4;
}

.pcf-root textarea {
  min-height: 110px;
  padding-top: 18px
}

.pcf-floating {
  position: absolute;
  left: 14px;
  top: 16px;
  pointer-events: none;
  color: var(--pcf-muted);
  font-size: 16px;
  transition: transform .18s ease, font-size .18s ease, top .18s ease;
  transform-origin: left top
}

.pcf-field.pcf-has-value .pcf-floating,
.pcf-root input:focus+.pcf-floating,
.pcf-root textarea:focus+.pcf-floating,
.pcf-root select:focus+.pcf-floating {
  transform: translateY(-20px) scale(.95);
  font-size: 14px;
  top: 8px;
  color: rgba(230, 238, 243, 0.9)
}

.pcf-hint {
  font-size: 18px;
  color: var(--pcf-muted);
  margin-top: 8px
}

.pcf-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 12px
}

.pcf-submit {
  background: transparent;
  border-radius: 900px;
  color: white;
  font-size: 16px;
  border: 1px solid #eef1f4;
  outline: none;
  height: 50px;
  width: 150px;
  cursor: pointer;
  transition: all 0.3s;
}

.pcf-submit:hover {
  transform: translateY(-10px);
}

.pcf-submit[disabled] {
  opacity: .6;
  cursor: default
}

.pcf-secondary {
  background-color: transparent;
  border: none;
  padding: 10px 12px;
  border-radius: 10px;
  color: #ffffff94;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}

.pcf-row {
  display: flex;
  gap: 10px;
  align-items: center
}

.pcf-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 14px;
  gap: 12px
}

.pcf-check {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.08));
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 197, 94, 0.12);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
}

.pcf-check svg {
  width: 44px;
  height: 44px
}

.pcf-spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top-color: white;
  animation: pcf-spin .9s linear infinite
}

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

@media (max-width:640px) {
  .pcf-contact {
    grid-template-columns: 1fr
  }

  .pcf-modal {
    padding: 18px
  }
}


/* Video Modal Styles */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 20, 31, 0.95);
  backdrop-filter: blur(5px);
}

.video-modal-content {
  position: relative;
  width: 80%;
  max-width: 900px;
  background: #0B141F;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal[aria-hidden="false"] .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(159, 173, 190, 0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #0B141F;
  font-size: 20px;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}

.video-modal-close:hover {
  background: #9FADBE;
  transform: rotate(90deg);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
    border-radius: 12px;
  }

  .video-modal-close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

/* Fix video modal centering */
.video-modal {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.video-modal-content {
  position: relative !important;
  margin: auto !important;
  top: auto !important;
  left: auto !important;
  transform: translate(0, 0) scale(0.9) !important;
  transition: transform 0.3s ease !important;
}

.video-modal[aria-hidden="false"] .video-modal-content {
  transform: translate(0, 0) scale(1) !important;
}

.video-modal-overlay {
  display: flex;
}

/* Fix video sizing in modal */
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ensure modal content takes full space */
.video-modal-content {
  width: 80vw;
  height: 80vh;
  max-width: 1200px;
}

/* Adjust video container for proper aspect ratio */
.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
}

/* Responsive adjustments for video modal */
@media (max-width: 768px) {
  .video-modal-content {
    width: 95vw;
    height: 50vh;
  }
}

/* Prevent video from playing in background */
.video-modal[aria-hidden="true"] video {
  display: none;
}