body {
  font-family: "Poppins", sans-serif;
  font-size: 14px !important;
  overflow-x: hidden;
  counter-reset: section;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
  will-change: auto;
}

/* Loading spinner styles */
.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-size: 18px;
  color: #333;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

h1,
h2,
h3,
h4,
h5,
h5,
h6,
p {
  line-height: 1.5;
}

p {
  text-align: justify !important;
}

.button {
  display: inline-block;
  opacity: 1;
  background-color: #2628b4;
  border-radius: 12px;
  padding: 16px 32px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.div-block-3 {
  height: 20px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

.section-heading {
  font-family: "Anton", sans-serif;
  line-height: 1.4;
}

.section-line {
  display: inline-block !important;
  letter-spacing: 1.3px;
  line-height: 1.7;
  font-weight: bold;
  position: relative;
  z-index: 1;
  transition: 1s;
}

.section-line a {
  text-decoration: none;
  color: #000;
}

.section-line::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0%;
  z-index: -1;
  height: 1.8px;
  transition: 1s;
  background: #d68e42;
  animation: line 8s linear infinite;
}

@keyframes line {

  0%,
  100% {
    width: 90%;
    left: 0;
  }

  25% {
    width: 0%;
    left: 50%;
  }

  50% {
    width: 50%;
    left: 50%;
  }

  75% {
    width: 50%;
  }
}

.section-hr {
  color: #000;
  display: inline-block;
  transform: translateY(15px);
  padding-left: 5px;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: #030c29;
  filter: invert();
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  /* Performance optimizations */
  will-change: transform;
  transform: translate(0, 0);
  backface-visibility: hidden;
  z-index: 9999;
  border: 2px solid #222;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
}

.ripple {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  background: #ffffffa0;
  background-blend-mode: difference;
  animation: ripple-anim 0.8s ease-out forwards;
}

@keyframes ripple-anim {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

/*  */
.header {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5000;
  transition: background 0.3s ease;
}

/* Navbar links */
.nav-link,
.navbar-brand {
  position: relative;
  font-weight: 400;
  margin: 0 !important;
  padding: 0;
}

.nav-link {
  color: #111;
  text-decoration: none;
  overflow: hidden;
  padding: 10px 5px;
  display: inline-block;
  cursor: pointer !important;
  line-height: 1.2;
  font-size: 15px;
  perspective: 800px;
}

.navbar-nav>.nav-item>.nav-link,
.product-link {
  display: inline-flex;
  align-items: center;
}

.nav-link.active {
  font-weight: bold;
}

.navbar-brand img {
  height: 53px;
}

.nav-item {
  margin: 0 8px;
}

/* Product dropdown (hover on desktop) */
.product-dropdown {
  position: relative;
}

.product-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 10px 0;
  min-width: 180px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 2000;
}

.product-menu .nav-link {
  padding: 8px 16px;
  white-space: nowrap;
  color: #000 !important;
  color: #111;
}

.product-menu li i {
  display: inline-block;
}

/* Icon before dropdown items styling */
.product-menu .nav-link i.fas {
  margin-right: 8px;
  font-size: 12px;
  vertical-align: middle;
  color: #021649;
}

.product-menu .nav-link:hover {
  background: #f6f7f9;
}

/* show on hover (desktop) or when .show is present (JS/Bootstrap) */
.product-dropdown:hover .product-menu,
.product-dropdown.show .product-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* Hover animation wrappers */
.letter-wrapper {
  display: inline-block;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.original,
.clone {
  display: inline-block;
  transform-origin: center bottom;
  backface-visibility: hidden;
}

.clone {
  position: absolute;
  top: 0;
  left: 0;
}

/* Dot Indicator */
.nav-dot {
  position: absolute;
  top: -40%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.3s ease;
  pointer-events: none;
}

/*  */
.landing-btn,
.about-btn,
.slider-btn,
.product-btn,
.contact-btn {
  position: relative;
  cursor: pointer;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  margin: 20px 0;
  overflow: hidden;
  display: inline-block;
  border: none;
  text-decoration: none;
}

/* Text setup */
.landing-btn span,
.about-btn span,
.slider-btn span,
.product-btn span,
.contact-btn span {
  display: block;
  position: relative;
  z-index: 1;
}

.landing-btn>span,
.about-btn>span,
.slider-btn>span,
.product-btn>span,
.slider-btn>span,
.contact-btn>span {
  overflow: hidden;
}

/* Animation on hover */
.landing-btn:hover>span>span,
.about-btn:hover>span>span,
.slider-btn:hover>span>span,
.product-btn:hover>span>span,
.contact-btn:hover>span>span {
  animation: MoveRightInitial 0.1s forwards, MoveRightEnd 0.3s forwards 0.2s;
}

.landing-btn:hover>span>span,
.about-btn:hover>span>span,
.slider-btn:hover>span>span,
.product-btn:hover>span>span,
.contact-btn:hover>span>span {
  color: #fff;
}

@keyframes MoveRightInitial {
  to {
    transform: translate3d(105%, 0, 0);
  }
}

@keyframes MoveRightEnd {
  from {
    transform: translate3d(-100%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.landing {
  overflow: hidden;
  height: 100vh;
  padding: 5rem 0 !important;
  background: #fff;
  width: 100%;
}

.landing::after {
  content: "";
  position: absolute;
  top: 0;
  left: 3rem;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-left: 1px solid var(--line-color, #000);
}

.landing .content-container::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -150px;
  width: 350%;
  height: 100%;
  z-index: -1;
  border-top: 1px solid var(--line-color, #000);
}

.landing .content-container {
  position: relative;
  padding-bottom: 10px;
}

.landing .content-container::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 200px;
  width: 20%;
  height: 100%;
  z-index: -1;
  border-bottom: 2px solid var(--line-color, #ccc);
  animation: move-line 10s infinite alternate;
}

@keyframes move-line {
  0% {
    width: 20%;
    left: 200px;
  }

  100% {
    width: 60%;
    left: 400px;
  }
}

.landing .content-container h1 {
  font-family: "Anton", sans-serif;
  font-size: 3rem;
  line-height: 1.5;
}

.landing .scrolling {
  font-family: "Anton", sans-serif;
  text-align: center;
  position: relative;
  top: 14rem;
}

.landing .content-container p {
  color: #757575;
  margin: 0;
  line-height: 1.8;
}

.social-icons {
  padding-top: 100px;
}

.social-icons p {
  font-weight: 600;
  color: #6d6d6d !important;
}

.social-icons a {

  color: #6d6d6d !important;
    text-decoration: none !important;
  font-size: 0.8rem;
  padding: 0 2px;
  font-weight: 600;
}

.contact-container .social-icons a {
  color: #222;
}

.social-icons i {
  font-size: 0.6rem;
  transform: rotate(52deg);
}

.slider-title {
  text-align: center;
}

.social-media {
  position: absolute;
  bottom: 10%;
  width: 85%;
}

@media (max-width: 992px) {
  .landing {
    height: max-content !important;
  }

  .landing .content-container::after,
  .landing::after,
  .landing .content-container::before {
    display: none;
  }

  .landing .content-container h1 {
    font-size: 1.5rem;
  }

  .social-media {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: translate(0);
  }
}

/* slider-section */
.slider-section {
  margin-top: 30vh;
  height: max-content;
  position: relative;
  padding: 6rem 0 50px;
  background: #fff !important;
}


.slider-section .story-1 {
  font-family: "Anton", sans-serif;
  font-size: 3rem;
  letter-spacing: 1.2px;
  line-height: 1.5;
}

.slider-section .slider-line {
  padding-left: 20px;
  border-left: 2px solid #ccc;
}

.slider-card {
  padding: 10px 20px 20px 20px;
}

.slider-title {
  color: #00a1e4;
}

.split-parent {
  display: inline-block;
  overflow: hidden;
}

.split-child {
  display: block;
  overflow: hidden;
}

.slider-btn {
  padding: 14px 30px;
  border-radius: 2px;
  font-weight: 600;
  border: none;
  background: #059ee6;
  margin-top: 30px;
  margin-left: 40px;
  color: #fff;
}


@media (max-width: 992px) {
  .slider-section {
    margin-top: 0;
  }

  .slider-section .story-1 {
    font-size: 1.5rem;
  }
}

/*  */
.about-section {
  position: relative;
  height: 100vh;
  width: 100vw;
  padding: 4rem 0;
  position: relative;
  background: #fff;
}

.about-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-47%, -50%);
  width: 85%;
  height: auto;
  opacity: 0;
}

/* first one visible initially */
.about-content:first-child {
  opacity: 1;
}

.about-inner .about-btn {
  background: #252525;
  padding: 14px 20px;
  margin: 10px 0;
}

.about-inner h6 {
  color: #252525;
  line-height: 1.5;
  font-weight: 300;
}

.about-cards {
  position: absolute;
  right: 0%;
  bottom: 30%;
  width: 50%;
  height: auto;
  color: #000;
  font-family: "Anton", sans-serif;
}

.about-cards span {
  position: absolute;
  opacity: 0;
}

.about-title {
  font-size: 2rem;
  line-height: 1.5;
}

.about-cards h4 hr {
  display: inline-block;
  width: 50px;
  border-bottom: 1.5px solid #000 !important;
  transform: translateY(20px);
}

.about-header {
  font-family: "Anton", sans-serif;
  font-size: 4.8rem;
  text-align: center;
}

.about-icons {
  position: absolute;
  bottom: 10px;
  left: 20px;
}

.about-subtext {
  writing-mode: vertical-rl;
  border-left: 2px solid #ccc;
  padding-left: 60px;
  padding-bottom: 80px;
  transform: rotate(180deg);
  margin-top: 30px;
}

.about-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 450px;
  pointer-events: none;
}

.about-circle img {
  display: block;
  width: 100%;
  will-change: transform;
  animation: rotate-scale 4s linear infinite;
}

@keyframes rotate-scale {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.about-img5 {
  position: absolute;
  bottom: 100px;
  right: 0;
}

.about-slogan {
  position: absolute;
  text-align: end !important;
  left: 32%;
  font-size: 12px;
  top: -50px;
}

.about-slogan-1 {
  position: absolute;
  left: 62%;
  font-size: 12px;
  top: -50px;
}

.about-media {
  padding: 15px 20px;
  display: inline-block;
  background: url(../images/about-2.png) no-repeat 0 0/100% 100%;
}

.about-media i {
  padding: 5px;
  font-size: 0.6rem;
  margin: 6px 0;
  border: 1px solid #ccc;
  border-radius: 50%;
}

@media (max-width: 992px) {

  .about-subtext {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    padding: 20px !important;
  }

  .about-slogan,
  .about-slogan-1 {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: translate(0);
  }
}

/*  */
.service-transition {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(8, 1fr);
  height: 100vh;
  background: #040622 !important;
  transform: perspective(200px) translateZ(0px);
  overflow: hidden;
  margin-top: -5px;
}

.service-transition .transition-text {
  text-align: center;
  font-size: 5rem;
  text-transform: uppercase;
  font-weight: 200;
  line-height: 100%;
  background-color: #040622;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

/*  */
.service-container {
  height: 100vh;
  position: relative;
  padding: 2rem 0;
  background: url(../images/service-1.png) no-repeat center center/80% auto,
    #ede8e4;
}

.service-card {
  padding-top: 10px;
  border-top: 2px solid #ccc;
}

/*  */

/* When image inside first panel is hovered */
.service-section:has(.service-content:nth-child(1) img:hover) {
  color: #fff;
  background: url("../images/s-bg-1.png") no-repeat 0 0 / 100% 100%, #ede8e4 !important;
}

.service-section:has(.service-content:nth-child(2) img:hover) {
  color: #fff;
  background: url("../images/s-bg-2.png") no-repeat 0 0 / 100% 100% !important;
}

.service-section:has(.service-content:nth-child(3) img:hover) {
  color: #fff;
  background: url("../images/s-bg-3.png") no-repeat 0 0 / 100% 100% !important;
}

.service-section:has(.service-content:nth-child(4) img:hover) {
  color: #fff;
  background: url("../images/s-bg-4.png") no-repeat 0 0 / 100% 100% !important;
}

.service-section:has(.service-content:nth-child(5) img:hover) {
  color: #fff;
  background: url("../images/s-bg-5.png") no-repeat 0 0 / 100% 100% !important;
}

.service-section:has(.service-content:nth-child(6) img:hover) {
  color: #fff;
  background: url("../images/s-bg-6.png") no-repeat 0 0 / 100% 100% !important;
}

/* when any image inside a service-content is hovered, style nav links */
/* When any service image is hovered,
   change sidebar li and service-text color */
.service-section:has(.service-content img:hover) .serviceSidebar li,
.service-section:has(.service-content img:hover) .service-text {
  color: #fff !important;
}

.service-items h4 {
  font-family: "Anton", sans-serif;
  width: 100% !important;
}

/* Layout */
.service-section {
  position: relative;
  height: 100vh;
  padding: 5rem 0rem 0;
  background: url(../images/ser-bg-2.png) no-repeat bottom right/50% auto,
    #ede8e4;
  background-position-x: 450px;
}

@media only screen and (min-width: 1440px) {
  .service-section {
    padding: 8rem 0rem;
  }

  .service-image img {
    min-width: 450px;
  }
}

.service-section .col-md-8 {
  border-left: 2px solid #ccc !important;
}

.serviceSidebar ul {
  list-style: none;
  padding: 0;
}

.serviceSidebar li {
  margin-top: 2px;
  padding-bottom: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.serviceSidebar li.active {
  color: #111;
  font-weight: bold;
}

/* Content */
.service-hero {
  position: relative;
  height: auto;
}

.service-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  padding: 0 20px;
  pointer-events: none;
}

.service-content.active {
  pointer-events: auto;
}

/* Progress Circle */
.circle-wrapper {
  position: relative;
  width: 20px;
  height: 20px;
}

.circle-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(#111 0deg, #ccc 0deg 360deg);
}

.circle-inner {
  position: absolute;
  inset: 2px;
  background: #f0ece8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.service-count {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: "Anton", sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.service-number {
  font-size: 1.2rem;
  font-family: "Anton", sans-serif;
}

.service-title {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  padding-left: 30px;
}

.service-subtitle {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-weight: 600;
  padding-left: 30px;
}

.service-text {
  line-height: 1.5;
  text-align: justify !important;
  color: #797979;
  margin-bottom: 1rem;
}

.service-image img {
  padding: 10px 0;
  max-width: 350px;
}

.service-count {
  position: absolute;
  bottom: 2rem;
  left: 3rem;
  font-weight: 600;
}

/*  */

.benefit-line {
  border-bottom: 3px solid #fff;
}

.benefit-items {
  height: 100vh;
  display: grid;
  place-items: center;
  background: #040622;
}

.benefit-grid {
  padding: 2rem 0;
}

.benefit-title {
  font-size: 8rem;
  color: #fff;
  font-family: "Anton", sans-serif;
}

/*  */
/* benefit-section */
.benefit-card {
  margin: 50px 0;
  padding: 20px 20px 50px;
  position: relative;
  height: max-content;
}

.benefit-card p {
  font-size: 12px;
  text-align: justify;
  line-height: 1.5;
}

.benefit-card::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 70%;
  border-radius: 20px;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, #ffffff 0%, #660099 100%);
}

.benefit-num {
  padding-bottom: 50px;
  font-family: "Anton", sans-serif;
}

.benefit-subtext {
  letter-spacing: 1.3px;
  font-family: "Anton", sans-serif;
  padding-top: 20px;
  background: none;
}

.counter-card h3,
.benefit-count h3 {
  display: inline-block;
  font-size: 8rem;
  position: relative;
  padding-left: 50px;
  margin: 0;
  font-family: "Anton", sans-serif;
}

.benifit-text {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
}

.counter-card h3::after {
  content: "+";
  position: absolute;
  font-size: 7rem;
  color: #fff;
  right: -40px;
  top: -45px;
}

.benefit-section {
  background: url(../images/b-bg-8.png) no-repeat left top/auto 30%, #040622;
  background-position-y: 700px;
  color: #fff;
  position: relative;
}


.benefit-container {
  background: url(../images/b-bg-4.png) no-repeat center left,
    url(../images/b-bg-5.png) no-repeat center top/50% auto,
    url(../images/b-bg-3.png) no-repeat center right;
  position: relative;
}

.benefit-bg {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -40%) scale(0.2);
  transform-origin: center center;
  will-change: transform;
}

.benefit-container h2 {
  padding-top: 2em 0 20px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 1px;
}

/*  */
.divider-section {
  min-height: 100vh;
  background: #ede8e4;
  padding: 4rem 0 50px;
  position: relative;
}

.divider-subtext {
  padding-bottom: 20px;
  font-weight: 600;
  padding-left: 50px;
}

.divider-section .container {
  position: relative;
}

.divider-section p {
  line-height: 1.5;
  color: #757575;
}

.divider-text {
  position: absolute;
  top: 35%;
  left: 70%;
  transform: translate(-30%, -50%);
  font-family: "Anton", sans-serif;
}

.divider-title {
  font-family: "Anton", sans-serif;
  font-size: 6rem;
  /* line-height: 2; */
}

.divider-arrow {
  padding: 20px;
  background: url(../images/d-big.png) no-repeat 0 0/100% 100%,
    url(../images/d-small.png) no-repeat center center;
}

.divider-img {
  margin-left: 100px;
  width: 100px;
  transform-origin: center;
  /* rotate around its center */
  animation: rotate-scale 4s linear infinite;
}

.divider-section #themeToggle {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

/*  */
.model-container {
  background: url(../images/d-bg.png) repeat-y left top, #040622;
  background-attachment: fixed;
  background-size: auto;
  color: #fff;
  min-height: 80vh;
  position: relative;
}

.model-detail h2 {
  font-family: "Anton", sans-serif;
}

.right {
  padding-top: 50px;
  position: relative;
}

.scroll-indicator {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 3px;
  height: 90%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.scroll-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: #aa00ff;
  border-radius: 3px;
}

.scroll-points {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.scroll-points span {
  width: 20px;
  height: 20px;
  background: url(../images/star.png) no-repeat 0 0/100% 100%;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.scroll-points span.active {
  background: url(../images/star.png) no-repeat 0 0/100% 100%, #aa00ff;
}

.model-detail {
  padding: 100px 70px !important;
  min-height: 50vh;
}

.model-detail p {
  font-size: 13px;
  line-height: 1.5;
}

.model-num {
  padding-bottom: 30px;
  font-family: "Anton", sans-serif;
}

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #aa00ff;
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: #aa00ff;
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

/*  */

.scroll-section {
  padding: 4rem 0 0;
  height: 100vh;
  background: #fff;
  position: relative;
}

.round-img {
  position: fixed;
  bottom: 20px;
  left: 20px;
  opacity: 0;
  transform: rotate(0deg);
}

.scroll-section .scroll {
  position: fixed;
  bottom: 0;
  right: 0;
  opacity: 0;
  transform: translate(0, 0);
  pointer-events: none;
}

.scroll-section h4 {
  font-size: 6rem;
  font-family: "Anton", sans-serif;
}

.scroll-section .scroll p {
  transform: translateY(25px);
}

/*  */
.scroll-card {
  display: inline-block;
  text-align: end;
  padding-left: 20px;
  border-left: 2px solid #ccc;
  padding-bottom: 50px;
}

.scroll-reminder {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  mix-blend-mode: difference;
}

.scroll-reminder__arrow {
  width: 40px;
  height: auto;
}

.scroll-reminder__text {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.scroll-reminder.scroll-reminder--visible {
  opacity: 1;
}

.scroll-reminder:not(.scroll-reminder--visible) {
  opacity: 0;
}

/* .scroll-reminder .right-angle-arrow {
  height: 20px;
  width: 20px;
  border-left: 5px solid #fff;
  border-bottom: 5px solid #fff;
} */

.scroll-reminder .scroll-reminder__text {
  text-align: center;
}

/*  */
.product-section {
  height: 100vh;
  background: url(../images/about-1.png) no-repeat bottom left, #ede8e4;
  background-position-y: 90%;
  position: relative;
  perspective: 1500px;
  /* important for 3D depth */
  transform-style: preserve-3d;
}

.product-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* only centering */
  max-width: 450px;
}

.product-circle img {
  display: block;
  width: 100%;
  transform-origin: center;
  /* rotate around its center */
  animation: rotate-scale 4s linear infinite;
}

.product-img {
  width: 150px !important;
  padding: 20px 0 30px;
}

.product-link {
  position: relative;
}

.youtube-icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}

.product-subtext {
  font-size: 3.3rem;
  font-family: "Anton", sans-serif;
}

.product-num {
  display: inline-block;
  font-family: "Anton", sans-serif;
}

.product-section .product-grid .product-item {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 520px;
  padding: 0 20px 20px;
  min-width: 1050px;
  transform: translate(-50%, -50%);
}

.product-item p {
  font-size: 12px;
}

.product-section .product-grid .product-item:nth-child(odd) {
  background: url(../images/p-bg-1.png) no-repeat bottom left/100% 90%, #ede8e4;
}

.product-section .product-grid .product-item:nth-child(even) {
  background: url(../images/p-bg-2.png) no-repeat bottom left/100% 90%, #ede8e4;
}

.product-items {
  height: 100vh;
  display: grid;
  place-items: center;
  color: #000;
}

.product-slogan-1 {
  position: absolute;
  top: 34%;
  left: 43%;
  transform: translate(-50%, -50%);
}

.product-title {
  font-size: 4.5rem;
  font-family: "Anton", sans-serif;
}

.product-item .product-btn {
  background: #00a1e4;
  border: none;
  padding: 8px 25px;
  padding-right: 10px;
  border-radius: 2px;
  color: #fff;
  margin: 0;
}

.product-btn i {
  color: #fff;
  padding: 0 10px;
  transform: rotate(-45deg);
}

/*  */

/*  */
.facility-section {
  background: url(../images/faci-bg-1.png) no-repeat left center, #04031f;
  padding: 4rem 0;
  color: #fff;
  position: relative;
  padding-bottom: 30vh;
  animation: moveBg 4s linear infinite;
}

.facility-section .section-line a {
  color: #fff;
}

@keyframes moveBg {

  0%,
  100% {
    background-position: 0% 0%;
  }

  25% {
    background-position: 50% 0%;
  }

  /* move right */
  50% {
    background-position: 100% 60%;
  }

  /* move down */
  75% {
    background-position: 04% 100%;
  }

  /* move left */
}

.facility-section .container {
  height: 40vh;
}

.facility-inner {
  padding-top: 40vh;
}

.facility-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 400;
  letter-spacing: 1.5px;
  padding-bottom: 10px;
}

.h1 {
  font-size: 7.5rem;
  font-family: "Anton", sans-serif;
}

.xlHeader--right .xlHeader__header {
  position: absolute;
  top: 45%;
  left: 100px;
  transform: translate(0px, -50%);
}

.xlHeader--left .xlHeader__header {
  position: absolute;
  top: 45%;
  left: 100px;
  transform: translate(0px, 50%);
}

.xlHeader__header {
  font-size: 100px;
}

.facility-container {
  padding: 4rem 0;
  max-height: 100vh;
  background: url(../images/contect-1.png) no-repeat bottom left/20% auto,
    #ede8e4;
  position: relative;
}

.facility-subtext {
  font-size: 7rem;
  font-family: "Anton", sans-serif;
}

.facility-contant {
  padding: 20px;
  border-left: 2px solid #ccc;
  padding-bottom: 50px;
}

/*  */

/* === Section Wrapper === */
.racesWrapper-container {
  background: url(../images/race-bg1.png) no-repeat bottom right, #04031f;
  position: relative;
  height: 100vh;
  color: #fff;
  padding: 3rem 0;
}

.racesWrapper {
  position: relative;
  overflow: hidden;
}

/* === Titles moving horizontally === */
.races {
  display: flex;
  white-space: nowrap;
  width: fit-content;
}

.races-title {
  font-family: "Anton", sans-serif;
  font-size: 15vw;
  flex-shrink: 0;
  padding-right: 1em;
}

.races-title:first-of-type {
  padding-left: 4em;
}

/* === Content === */
.races-content-wrapper {
  position: relative;
  min-height: 160px;
}

.races-content {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(30px);
  max-width: 600px;
}

.races-content h6,
.races-content p {
  overflow: hidden;
  display: inline-block;
}

/*  */

.facility-container {
  padding: 4rem 0;
  height: max-content !important;
  background: #ede8e4;
  position: relative;
}

.facility-subtext {
  font-size: 7rem;
  font-family: "Anton", sans-serif;
}

.facility-subtext .arrow,
.about-content .arrow {
  transform: translateY(50px);
}

.facility-contant {
  padding: 0 20px;
  border-left: 2px solid #ccc;
  padding-bottom: 80px;
}

/*  */

/**/
.contact-container {
  padding: 6rem 0 1rem;
  background: #ede8e4;
  position: relative;
}

.contact-container input {
  border: transparent;
  border-bottom: 2px solid #ccc;
  background: transparent;
}

.contact-text,
.contact-subtext {
  font-size: 3rem;
  line-height: 1.4;
  font-family: "Anton", sans-serif;
  position: relative;
}

.contact-text::before {
  position: absolute;
  content: "";
  top: -10px;
  left: -20px;
  width: 5px;
  height: 50%;
  background: #f7931e;
}

.contact-container hr {
  display: inline-block;
  border-bottom: 2px solid #000;
}

.contact-container .social-icons,
.reach-inner-contact .social-icons,
.career-section .social-icons,
.blog-section .social-icons {
  padding-top: 10px;
}

.reach-inner-contact {
  padding-bottom: 30px;
  background: #ede8e4;
}

.contact-container .product-btn {
  background: #222;
  border: none;
  padding: 8px 25px;
  padding-right: 10px;
  border-radius: 2px !important;
  color: #fff;
  margin-bottom: 40px;
}

.top-btn {
  color: #000;
  font-family: "Anton", sans-serif;
  font-size: 1rem;
  text-decoration: none;
}

.top-btn:hover {
  color: #000;
}

.contact-nav a {
  font-family: "Anton", sans-serif;
  text-decoration: none;
  color: #000;
}

/*  */
.our-story {
  background: #ede8e4;
  padding: 0 0 4rem;
}

.story-container {
  padding-top: 8rem;
  height: 100vh;
  position: relative;
}

.story-title {
  font-size: 4.5rem;
  font-family: "Anton", sans-serif;
  color: #797979;
  line-height: 1.5;
  white-space: normal;
}

.story-word {
  display: inline-block;
  margin-right: 0.3rem;
}

.story_img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.story_img img {
  height: 300px;
}

.story-subtitle {
  font-size: 4rem;
  line-height: 1.5;
  font-family: "Anton", sans-serif;
  padding: 30px 0;
}

/*  */
.history-section {
  padding: 40px 30px;
  background: #fff;
}

/*  */
.history-section h2 {
  font-family: "Anton", sans-serif;
}

/* ==== Left History Panel ==== */
.history-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.history-panel h3 {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  color: #000;
}

.history-list-container {
  position: relative;
  height: 250px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.history-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.history-item {
  font-size: 15px;
  margin: 8px 0;
  cursor: pointer;
  color: #555;
  transition: all 0.3s ease;
}

.history-item.active {
  color: #e50054;
  font-weight: 600;
  border-left: 3px solid #e50054;
  padding-left: 10px;
}

.arrow-btn {
  background: #021649;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0;
  transition: 0.3s;
}

.arrow-btn:hover {
  background: #0077b6;
}

/* ==== Right History Content ==== */
.history-wrapper {
  display: flex;
  overflow-y: hidden;
  width: 100%;
  padding: 40px 0px;
  scroll-behavior: smooth;
}

.history-section-item {
  min-width: 100%;
  padding: 0 10px;
  transition: all 0.5s ease;
}

.history-title {
  font-size: 20px;
  font-weight: 700;
  color: #021649;
  margin-bottom: 15px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.history-card {
  background: #f6fbff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: transform 0.4s ease;
}

.history-card:hover {
  transform: translateY(-5px);
}

.history-card h4 {
  margin: 10px 0 5px;
  font-size: 17px;
  font-weight: 600;
  color: #021649;
}

.history-card p {
  font-size: 13px;
  color: #555;
}

.map-card img {
  width: 120px;
  margin-bottom: 10px;
}

/*  */
/* Journey Wrapper */
.journey-wrapper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.journey-timeline {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

/* Center dashed line with start/end dots and padding */
.journey-timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50px;
  /* start gap */
  width: calc(700% - 100px);
  /* end gap */
  height: 2px;
  border-top: 2px dashed #000;
  transform: translateY(-50%);
  z-index: 0;
}

/* Start dot */
.journey-timeline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50px;
  /* same as line start */
  width: 14px;
  height: 14px;
  background: #000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Fullscreen intro as horizontal first "milestone" */
.journey-inner {
  min-width: 100%;
  height: 100vh;
  font-family: "Anton", sans-serif;
  display: grid;
  place-content: center;
  position: relative;
}

.journey-text,
.journey-text1 {
  font-size: 7rem;
  text-align: center;
  margin: 0;
  transform: translateY(-90px);
}

.journey-text1 {
  font-size: 5rem;
  transform: translateY(100px);
}

.journey-text2 {
  font-size: 2.5rem;
  transform: translateY(50px);
}

.journey-text4 {
  font-size: 8rem;
  transform: translateY(100px);
}

/* Milestones */
.journey-milestone {
  position: relative;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey-dot {
  width: 14px;
  height: 14px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0);
  z-index: 2;
}

.journey-connector {
  width: 2px;
  background: repeating-linear-gradient(to bottom,
      #000,
      #000 5px,
      transparent 5px,
      transparent 10px);
  transform: scaleY(0);
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
}

.journey-connector span {
  writing-mode: vertical-rl;
  transform: translateX(-30px) rotate(-180deg);
  font-size: 1.2rem;
  color: #fe9223;
  font-family: "Anton", sans-serif;
}

.journey-subtext {
  color: #fe9223;
}

.journey-milestone.up .journey-connector {
  bottom: 50%;
  height: 150px;
  transform-origin: bottom;
}

.journey-milestone.down .journey-connector {
  top: 50%;
  height: 150px;
  transform-origin: top;
}

.journey-content {
  opacity: 0;
  max-width: 260px;
  position: absolute;
}

.journey-milestone.up .journey-content {
  bottom: calc(50% + 10px);
  right: -100px;
  text-align: left;
  padding-top: 20px;
}

.journey-milestone.down .journey-content {
  top: calc(50% + 10px);
  right: -80px;
  padding-top: 20px;
}

/* Year circle for UP milestones */

.journey-milestone .journey-year {
  opacity: 0;
  transform: translate(-50%, 20px);
}

.journey-milestone.up .journey-year.plain {
  font-size: 5rem;
  transform: translateY(-40px) !important;
  background: none;
  font-weight: bold;
  color: #000;
}

.journey-hide {
  display: none !important;
}

.journey-milestone.up .journey-year.circle {
  position: absolute;
  left: 50%;
  bottom: calc(50% + 150px);
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #00a1e4;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  z-index: 3;
}

/* Year circle for DOWN milestones */
.journey-milestone.down .journey-year {
  position: absolute;
  left: 50%;
  top: calc(50% + 150px);
  /* at bottom of connector */
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #00a1e4;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  z-index: 3;
}

.journey-items {
  min-width: max-content;
}

.journey-items h2 {
  transform: translate(100px, -30px);
  font-family: "Anton", sans-serif;
}

.journey-content h3 {
  margin: 5px 0;
  font-size: 1.2rem;
}

.journey-content img {
  width: 130px;
}

.journey-content p {
  font-size: 0.95rem;
  color: #000000c0;
  line-height: 1.4;
}

.journey-title {
  position: absolute;
  top: 20%;
  left: 73%;
  transform: translate(-50%, -50%);
}

.journey-item {
  min-width: 50%;
  font-family: "Anton", sans-serif;
}

/*  */
/* First hero page */
.reach-section {
  background: #ede8e4;
}

.reach-hero {
  height: 100vh;
  display: grid;
  place-content: center;
  text-align: center;
  position: relative;
}

.reach-hero h1 {
  font-size: 8rem;
  font-family: "Anton", sans-serif;
}

.reach-line-container {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 120px;
  overflow: hidden;
}

.reach-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  border-left: 2px dashed #000;
  transform: scaleY(0);
  transform-origin: top;
}

/* Container */
.reach-container {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-bottom: 8rem;
}

/* Top indicators */
.reach-counter {
  position: absolute;
  top: 70px;
  left: 40px;
  font-size: 14px;
  color: #797979;
  font-family: "Anton", sans-serif;
}

.reach-title {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #000;
  border-radius: 20px;
  padding: 10px 18px;
  letter-spacing: 1px;
  color: #797979;
}

.reach-tag {
  position: absolute;
  top: 180px;
  right: 120px;
  font-size: 11px;
  color: #797979;
  font-family: "Anton", sans-serif;
}

/* Side scroll */
.reach-scroll {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 11px;
  font-weight: 600;
  color: #797979;
  letter-spacing: 2px;
}

/* Arc */
.reach-arc {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200px;
  border-top: 2px dashed #aaa;
  border-radius: 100%;
  pointer-events: none;
}

/* Content */
.reach-content {
  position: relative;
  height: 100vh;
}

.reach-inner {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  will-change: opacity, transform;
  font-family: "Poppins", sans-serif !important;
}

.reach-inner:first-child {
  opacity: 1;
}

.reach-number {
  font-size: 8rem;
  font-family: "Anton", sans-serif;
  line-height: 1;
  letter-spacing: 1px;
}

.reach-subtext {
  font-size: 2.5rem;
  text-align: left !important;
  font-weight: 800;
  line-height: none;
}

.reach-text {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
}

/* Dots */
.reach-dots {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reach-dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.reach-dot.active {
  background: #111;
  transform: scale(1.3);
}

/*  */
.reach-contact {
  background: #ede8e4;
  position: relative;
  height: 75vh;
  display: grid;
  place-items: end;
}

.reach-contact .journey-title {
  top: 40%;
  color: #797979;
}

.contact-title {
  font-size: 9rem;
  line-height: 1.1;
  display: inline-block;
  font-family: "Anton", sans-serif;
  margin-bottom: 30px;
}

/*  */
.scroll-reminder {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
  transform-origin: center;
}

.scroll-reminder--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.scroll-reminder__text,
.scroll-reminder__icon i {
  transition: color 0.3s ease;
}

.scroll-reminder__text {
  display: none;
}

.scroll-reminder__text.active {
  display: inline-block;
}

.jumping-arrow {
  display: inline-block;
  font-size: 1.2rem;
  animation: arrowJump 1.2s infinite ease-in-out;
}

.jumping-circle {
  display: inline-block;
  font-size: 1.2rem;
  /* adjust size */
  animation: circleJump 1.2s infinite ease-in-out;
}

/* Arrow bounce */
@keyframes arrowJump {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
    /* arrow moves down */
  }
}

/* Circle scale + subtle jump */
@keyframes circleJump {

  0%,
  100% {
    transform: scale(1.1) translateY(0);
  }

  50% {
    transform: scale(0.8) translateY(3px);
    /* little pulse + down */
  }
}


/* career-section */
.career-container {
  position: relative;
  padding: 6rem 0;
  width: 100%;
  background: #ede8e4;
  height: 100vh;
  align-content: center;
}

.career-section {
  background: #fff;
  padding: 50px 0 20px;
}

.career-card {
  padding: 0 20px;
  border-left: 1.5px solid #000;
}

.career-mail {
  background: #00a1e4;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  padding: 30px 50px;
  position: relative;
  box-shadow: 0 0 33px #00000059;
  margin-bottom: 100px !important;
}

.mail-text {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  padding: 50px 0 0;
}

.mail-text:hover {
  color: #fff;
  text-decoration: underline;
}

.career-mail h3 {
  color: #fff;
  font-weight: 400;
  font-size: 3rem;
  position: relative;
}

.career-mail h3::before {
  content: " ";
  background: url(../images/ezee_line.png) no-repeat;
  position: absolute;
  width: 100%;
  height: 35px;
  top: 65px;
}


/* .blog-section */

.blog-section {
  padding-top: 6rem;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  padding: 20px;
  margin: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 230px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-card-content h3 {
  margin: 0;
  font-size: 18px;
  color: #021649;
  font-weight: 600;
}

.blog-card-content p.meta {
  font-size: 13px;
  color: #777;
  margin: 8px 0;
}

.blog-card-content p.desc {
  font-size: 14px;
  color: #444;
}

/* SIDEBAR */
.sidebar {
  position: sticky;
  top: 6rem;
}

.blog-img {
  width: 100%;
  height: 260px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
  position: relative;
}

.blog-img img {
  object-fit: contain;
  position: absolute;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.blog-img img.active {
  opacity: 1;
}

.sidebar h4 {
  font-size: 18px;
  font-weight: 600;
  color: #021649;
  margin-bottom: 15px;
}

.blog-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.blog-item a {
  text-decoration: none;
  color: #021649;
}

/* Active color change when image changes */
.blog-item.active span,
.blog-item.active a {
  color: #e50054 !important;
  font-weight: 700;
}

/* FULL POST */
.full-post {
  position: relative;
  background: #fff;
  padding: 60px 0px;
  z-index: 222;
  display: none;
}

.full-post.active {
  display: block;
}

.close-btn {
  position: fixed;
  top: 25px;
  right: 40px;
  background: #021649;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
}

.full-post img {
  width: 100%;
  border-radius: 10px;
  margin: 30px 0;
}

.full-post h1 {
  font-size: 32px;
  color: #021649;
}

.full-post p.meta {
  font-size: 14px;
  color: #777;
}


/* Career Inner box */
.career-inner {
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
  cursor: pointer;
  transition: transform .3s ease;
}

.career-inner:hover {
  transform: translateY(-5px);
}

.career-full {
  background: #fff;
  position: relative;
  padding-top: 6rem;
  z-index: 99;
  display: none;
}

.career-full.active {
  display: block;
  /* Make the full panel a top-level overlay so it can slide in from the top */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.career-close {
  position: fixed;
  top: 4rem;
  right: 40px;
  width: 40px;
  height: 40px;
  background: #021649;
  color: #fff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 20px;
  z-index: 10000;
}

.career-back-link {
  font-size: 14px;
  font-weight: 500;
  color: #021649;
  text-decoration: none;
}

.career-job-title {
  font-weight: 700;
  color: #021649;
}

.career-info-label {
  font-size: 13px;
  color: #666;
  text-transform: uppercase;
}

.career-info-value {
  font-size: 16px;
  font-weight: 600;
  color: #021649;
  margin-top: -4px;
}

.career-section-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.career-list {
  font-size: 15px;
  margin-left: -10px;
  line-height: 26px;
}

/* Arrow next to product trigger */
.product-link .dropdown-arrow {
  margin-left: 6px;
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease;
  transform-origin: center;
  color: #111;
}

.product-dropdown:hover .product-link .dropdown-arrow,
.product-dropdown.show .product-link .dropdown-arrow {
  transform: rotate(180deg);
}

/* Simple hover animation for dropdown links */
.product-menu .nav-link {
  display: block;
  transition: transform 140ms ease, background-color 140ms ease, color 140ms ease;
}

.product-menu .nav-link:hover {
  transform: translateX(6px);
  color: #021649;
  background-color: #f6f7f9;
}

/*  */

.blog-item,
.career-job {
  padding: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.blog-item h2,
.career-job h2 {
  font-size: 26px;
  font-weight: 700;
}