@font-face {
  font-family: AlteHaasGroteskBold;
  src: url(../fonts/AlteHaasGroteskBold.ttf);
}

@font-face {
  font-family: AlteHaasGroteskRegular;
  src: url(../fonts/AlteHaasGroteskRegular.ttf);
}

@font-face {
  font-family: Archivo-VariableFont_wdth, wght;
  src: url(../fonts/Archivo-VariableFont_wdth\wght.ttf);
}

@font-face {
  font-family: MyriadPro-Regular_5_3;
  src: url(../fonts/Roboto-VariableFont_wdth\wght.ttf);
}

@font-face {
  font-family: TBWAGrotesk-Black;
  src: url(../fonts/TBWAGrotesk-Black.otf);
}

@font-face {
  font-family: TBWAGrotesk-Bold;
  src: url(../fonts/TBWAGrotesk-Bold.otf);
}

@font-face {
  font-family: TBWAGrotesk-ItalicBold;
  src: url(../fonts/TBWAGrotesk-ItalicBold.otf);
}

@font-face {
  font-family: TBWAGrotesk-Medium;
  src: url(../fonts/TBWAGrotesk-Medium.otf);
}

@font-face {
  font-family: TBWAGrotesk-Regular;
  src: url(../fonts/TBWAGrotesk-Regular.otf);
}

@font-face {
  font-family: TBWAGrotesk-SemiBold;
  src: url(../fonts/TBWAGrotesk-SemiBold.otf);
}

/* Navbar Styling */

:root {
  --highlight-color: #ffcb08;
  /*  #f5cd21; */
  --blk: #000000;
  --graywhite: #cccccc;
  --white: #ffffff;
  --lightblk: #292929;
  --lowlightblk: #53575b;
  --gray: #a8a7a7;
}

.container,
.container-lg,
.container-md,
.container-sm {
  max-width: 1127px;
}

.custom-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.heighlight {
  color: var(--highlight-color);
}

.lowlightblk {
  color: var(--lowlightblk);
}

.gray {
  color: var(--gray);
}

.bg-heighlight {
  background-color: var(--highlight-color);
}

.bg-blk {
  background-color: var(--blk);
}

.bg-lightblk {
  background-color: var(--lightblk);
}

.ft-15 {
  font-size: 15px;
}

.ft-16 {
  font-size: 16px;
}

.ft-17 {
  font-size: 17px;
}

.ft-18 {
  font-size: 18px;
}

.ft-19 {
  font-size: 19px;
}

.ft-20 {
  font-size: 20px;
}

.ft-21 {
  font-size: 21px;
}

.ft-22 {
  font-size: 22px;
}

.ft-23 {
  font-size: 23px;
}

.ft-24 {
  font-size: 24px;
}

.ft-25 {
  font-size: 25px;
}

.ft-26 {
  font-size: 26px;
}

.ft-27 {
  font-size: 27px;
}

.ft-28 {
  font-size: 28px;
}

.ft-29 {
  font-size: 29px;
}

.ft-30 {
  font-size: 30px;
}

.ft-31 {
  font-size: 31px;
}

.ft-32 {
  font-size: 32px;
}

.ft-33 {
  font-size: 33px;
}

.ft-34 {
  font-size: 34px;
}

.ft-35 {
  font-size: 35px;
}

.ft-36 {
  font-size: 36px;
}

.ft-37 {
  font-size: 37px;
}

.ft-38 {
  font-size: 38px;
}

.ft-39 {
  font-size: 39px;
}

.ft-40 {
  font-size: 40px;
}

.ft-41 {
  font-size: 41px;
}

.ft-42 {
  font-size: 42px;
}

.ft-43 {
  font-size: 43px;
}

.ft-44 {
  font-size: 44px;
}

.ft-45 {
  font-size: 45px;
}

.ft-46 {
  font-size: 46px;
}

.ft-47 {
  font-size: 47px;
}

.ft-48 {
  font-size: 48px;
}

.ft-49 {
  font-size: 49px;
}

.ft-50 {
  font-size: 50px;
}

.ft-51 {
  font-size: 51px;
}

.ft-52 {
  font-size: 52px;
}

.ft-53 {
  font-size: 53px;
}

.ft-54 {
  font-size: 54px;
}

.ft-55 {
  font-size: 55px;
}

.ft-56 {
  font-size: 56px;
}

.ft-57 {
  font-size: 57px;
}

.ft-58 {
  font-size: 58px;
}

.ft-59 {
  font-size: 59px;
}

.ft-60 {
  font-size: 60px;
}

.ft-71 {
  font-size: 71px;
}

.ft-80 {
  font-size: 80px;
}

.ft-103 {
  font-size: 103px;
}

.ft-139 {
  font-size: 139px;
}

body {
  margin: 0;
}

.navbar {
  background-color: var(--blk);
  padding: 2rem 2rem;
}

:root {
  --blk: #000;
  --white: #fff;
  --highlight-color: #ffcb08;
  /*  #f2c200; */
  /* yellow */
  --menu-width: 80%;
}

/* Reset-ish */

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

body {
  padding-top: 100px;
  min-height: 100vh;
  font-family: TBWAGrotesk-Regular;
}

/* NAV */

/* Make navbar sticky */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--blk);
  padding: 2rem;
  /* default padding */
  transition: padding 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* When scrolled */

.navbar.scrolled {
  padding: 0.8rem 2rem;
  /* reduced padding */
  background-color: var(--blk);
  /* stays same (or change if you want fade) */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  /* smooth shadow when scrolling */
}

/* .navbar {
    background-color: var(--blk);
    padding: 2rem;
    position: relative;
    z-index: 20;
} */

.navbar-brand img {
  height: 40px;
  width: auto;
  display: block;
}

.navbar-toggler {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
}

.navbar-toggler-icon {
  position: relative;
  width: 30px;
  height: 5px;
  background: var(--highlight-color);
  display: inline-block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--highlight-color);
}

.navbar-toggler-icon::before {
  top: -9px;
}

.navbar-toggler-icon::after {
  top: 9px;
}

/* CUSTOM MENU (overlay) */

.custom-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: transparent;
  transition: all 0.6s ease-in-out;
  z-index: 1050;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}

/* White sloped panel - KEEP clip-path */

.custom-menu::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: var(--menu-width);
  height: 100%;
  background-color: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 19% 100%);
  box-shadow: -5px 0 18px rgba(0, 0, 0, 0.12);
  transition: all 0.6s ease-in-out;
  z-index: 1;
}

/* When menu opens slide entire overlay in */

.custom-menu.active {
  right: 0;
}

/* MENU INNER: we rotate the container slightly to match the slope, but we will counter-rotate the text so it reads straight */

.menu-inner {
  position: relative;
  z-index: 2;
  width: var(--menu-width);
  padding: 6rem 8rem;
  /* transform: rotate(-6deg); */
  transform-origin: left center;
  display: flex;
  justify-content: c;
  align-items: flex-start;
  /* left: 4%; */
}

/* Close button (X) placed visually on the white panel */

.close-btn {
  position: absolute;
  top: 2.4rem;
  right: 6.6rem;
  /* tuned to sit on the white panel like the reference */
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 10;
  color: #000;
  line-height: 1;
  transform: rotate(0deg);
}

/* LEFT: nav links column (we counter-rotate anchor text to appear straight) */

.menu-left {
  width: 50%;
}

.menu-left ul {
  font-family: TBWAGrotesk-Bold;
  font-weight: 700;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-left li {
  margin: 2rem 0;
}

.menu-left a {
  display: inline-block;
  font-weight: 700;
  font-size: 2rem;
  color: #000;
  text-decoration: none;
  /* transform: rotate(6deg); */
  /* counter the -6deg of the container */
  transform-origin: left center;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.menu-left a:hover {
  color: var(--highlight-color);
}

/* RIGHT: contact info block aligned on white area */

.menu-right {
  width: 35%;
  max-width: 360px;
  font-family: TBWAGrotesk-Medium;
  /* margin-top: 25%;
    transform: rotate(6deg); */
  transform-origin: right center;
  text-align: left;
  z-index: 1;
  margin-top: 12%;
}

.menu-right p {
  margin-bottom: 2.6rem;
  font-size: 1rem;
  line-height: 1.2;
  color: #222;
}

.menu-right strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

/* Make background elements visible behind the white panel like the reference */

.bg-grid {
  /* position: absolute; */
  left: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(180deg, #090909 0, #000 100%);
  z-index: 0;
}

/* Open-state small tweak: slightly lift the white panel to match visual of ref */

.custom-menu.active::before {
  right: 0;
}

section.who-we-are {
  padding: 100px 0;
  background-color: var(--blk);
  padding-bottom: 0px;
}

.who-we-are .gif-col img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  /* border-radius: 4px; */
}

.heading-col {
  margin-top: 0;
}

.who-we-are .heading-col h2 {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
  font-family: TBWAGrotesk-SemiBold;
}

.who-we-are .heading-col p {
  line-height: 1.2;
  color: var(--white);
  font-family: AlteHaasGroteskRegular;
  font-weight: 400;
  margin-bottom: 20px;
}

/* .who-we-are .text-col {
  margin-top: 80px;
} */

.who-we-are .text-col p {
  color: var(--white);
  font-family: AlteHaasGroteskRegular;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
  /* max-width: 536px; */
  /* margin-bottom: 20px; */
}

.who-we-are .image-col img {
  margin: -50px auto;
}

/* .who-we-are .image-col img {
  margin: -60px auto;
  min-height: 550px;
  object-fit: cover;
} */

.who-we-are .heading-col {
  margin-top: -45px;
  padding-left: 20px;
  /* adjust this value until perfect alignment */
}

/* 3D rotation like Earth */

/* .rotate-3d {
  transform-style: preserve-3d;
  animation: rotate3D 8s linear infinite;
}

@keyframes rotate3D {
  from {
    transform: rotateY(0deg) rotateX(0deg);
  }
  to {
    transform: rotateY(360deg) rotateX(0deg);
  }
} */

/* logo section */

.logos-section {
  padding-top: 115px;
  padding-bottom: 85px;
}

/* Default: always fluid for all screens */

.logos-wrapper {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

/* When screen > 1440px, make it container */

@media (min-width: 1441px) {
  .logos-wrapper {
    width: 1320px;
    /* same as Bootstrap container-xl */
    margin-left: auto;
    margin-right: auto;
  }
}

.home-logo {
  /* max-width: 120px; */
  /* optional, based on your design */
  margin: 0 auto;
  /* center the logos */
}

.logos-section .row > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.most-awarded-txt {
  padding-bottom: 85px;
}

.most-awarded-txt h2 {
  line-height: 1.7;
  font-family: TBWAGrotesk-SemiBold;
  font-weight: 600;
  color: var(--blk);
}

/* disruption-methodology-section */

.disruption-methodology-section {
  padding-top: 60px;
  padding-bottom: 10px;
  background-color: var(--blk);
}

.disruption-methodology-section h2 {
  color: var(--white);
  margin-bottom: 15px;
  font-family: TBWAGrotesk-SemiBold;
  font-weight: 600;
}

.disruption-methodology-section p {
  color: var(--white);
  font-weight: 400;
  font-family: AlteHaasGroteskRegular;
  margin-bottom: 30px;
}

.disruption-methodology-section h3 {
  color: var(--highlight-color);
  font-family: TBWAGrotesk-SemiBold;
  font-weight: 600;
}

.small-bottom-txt {
  margin-top: 30px;
  color: var(--white);
}

/* /disruption-methodology-section */

/* testimonials-section */

.testimonials-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.testimonials-section p {
  font-family: AlteHaasGroteskRegular;
  font-weight: 400;
}

/* /testimonials-section */

.about-small-txt {
  color: var(--white);
  padding: 35px 0;
  font-family: AlteHaasGroteskRegular;
  font-weight: 400;
}

/* our-proprietary-section */

.our-proprietary-section {
  padding-bottom: 65px;
  padding-top: 100px;
}

.our-proprietary-section h4 {
  font-family: TBWAGrotesk-SemiBold;
  font-weight: 600;
}

.our-proprietary-section h1 {
  line-height: 1;
  font-family: TBWAGrotesk-SemiBold;
  font-weight: 600;
}

.our-proprietary-section p {
  font-family: AlteHaasGroteskRegular;
  font-weight: 400;
  line-height: 1.35;
}

.our-proprietary-section p a {
  color: #000000;
  font-weight: bold;
  text-decoration: none;
  font-family: AlteHaasGroteskBold;
}

.our-proprietary-section p a:hover {
  color: var(--highlight-color);
}

/* /our-proprietary-section */

/* edge section */

.edge {
  padding: 50px 0px;
  padding-bottom: 20px;
}

.edge h2 {
  color: var(--white);
  font-family: TBWAGrotesk-SemiBold;
  font-weight: 600;
}

.edge p {
  color: var(--white);
  font-family: AlteHaasGroteskRegular;
  font-weight: 400;
}

.edge span {
  color: var(--white);
}

.AbtedgePara a {
  font-weight: bold;
  text-decoration: none;
  font-family: AlteHaasGroteskBold;
  color: var(--white);
}

.AbtedgePara a:hover {
  color: var(--highlight-color);
}

.map-container {
  background-color: #bab4b0;
}

/* /edge section */

/* disruption-section */

.disruption-section {
  padding-top: 75px;
  padding-bottom: 20px;
}

.disruption-section p {
  max-width: 490px;
}

.disruption-second-section {
  padding-top: 45px;
  padding-bottom: 85px;
}

/* .Skull-img {
  margin-top: -38%;
} */

.Skull-img {
  margin-top: -40%;
  /* height: 550px; */
}

/* @keyframes rotate3DSkull {
  from {
    transform: rotateY(0deg) rotateX(5deg);
  }
  to {
    transform: rotateY(360deg) rotateX(5deg);
  }
} */

/* /disruption-section */

/* some-other-section */

.some-other-section {
  padding-top: 26px;
  padding-bottom: 26px;
  color: var(--white);
}

/* /some-other-section */

/* moonshot-section */

.moonshot-section {
  padding-top: 74px;
  padding-bottom: 50px;
}

.video-section-box {
  padding-top: 90px;
  padding-bottom: 80px;
  max-width: 94%;
}

.video-section-box h3 {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-family: TBWAGrotesk-Bold;
  font-size: 18px;
  line-height: 1.2;
  /* font-weight: 500; */
}

.video-section-box p {
  margin-bottom: 50px;
  text-transform: uppercase;
  font-family: TBWAGrotesk-Regular;
  /* font-weight: 500; */
  text-align: justify;
  font-size: 13px;
  line-height: 1.25;
}

.video-pg-logo img {
  height: 54px;
  margin: 48px 0 24px 0;
}

.sticky-side {
  position: sticky;
  top: 75px;
  transition: all ease-in 0.3s;
  /* adjust based on your header height */
}

.pirates-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.pirates-section h1 {
  margin-bottom: 45px;
  text-transform: uppercase;
  font-family: TBWAGrotesk-Black;
}

.pirates-section p {
  font-family: TBWAGrotesk-Black;
  line-height: 1.2;
  margin-bottom: 20px;
}

.moon-rotate {
  transform-origin: center center;
  animation: rotate3DEarth 12s linear infinite;
}

.lking-fr-sec {
  border-right: 1px solid #231f20;
}

.carrer-title {
  margin-top: 30px;
}

.career-line,
.career-fill {
  max-width: 750px;
}

.career-line {
  position: relative;
  left: 0;
  z-index: 3;
}

.career-fill {
  position: absolute;
  left: 11px;
  z-index: 0;
}

.career-skull {
  max-width: calc(628px + 10%);
  position: absolute;
  right: -5%;
  margin-top: -35px;
  z-index: 1;
}

/* @keyframes rotate3DEarth {
  from {
    transform: rotateY(0deg) rotateX(5deg) translateZ(0);
  }
  to {
    transform: rotateY(360deg) rotateX(5deg) translateZ(0);
  }
} */

/* career page */

/* Section Base */

/* .looking-for-section {
  background-color: #ffffff;
  padding: 50px 0;
}



.looking-for-section .section-title {
  font-weight: 700;
  font-family: TBWAGrotesk-Bold;
  letter-spacing: 1px;
  color: #231f20;
  text-transform: uppercase;
  margin-bottom: 50px;
}



.looking-for-section .column-title {
  font-weight: 700;
  font-family: TBWAGrotesk-Bold;
  margin-bottom: 25px;
  color: #231f20;
  text-transform: uppercase;
  text-align: left;
}



.looking-for-section .looking-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  text-align: left;
}

.looking-for-section .looking-list li {
  color: #000000;
  margin-bottom: 25px;
  font-family: TBWAGrotesk-Medium;
  font-weight: 500;
}

.looking-for-section .looking-list li:last-child {
  margin-bottom: 0;
}



.looking-for-section .vertical-line {
  width: 1px;
  background-color: #bfbfbf;
  height: 100%;
  align-self: stretch;
}



.border-right {
  border-right: 1px solid black;
}

.looking-for-section .row {
  --bs-gutter-x: 0;
} */

.divider-col {
  margin-right: 35px !important;
  padding: 0 !important;
}

.criteria-title {
  font-weight: 700;
  margin-bottom: 30px;
  margin-right: 0;
}

.looking-for-section {
  padding: 50px 0;
  color: var(--blk);
  padding-bottom: 100px;
}

.section-title {
  font-family: TBWAGrotesk-Bold;
  font-weight: 700;
  text-align: center;
  margin-bottom: 70px;
  letter-spacing: 1px;
}

/* Columns */

.criteria-title {
  font-family: TBWAGrotesk-Bold;
  font-weight: 700;
  margin-bottom: 30px;
  margin-right: 0 !important;
}

.criteria-item {
  font-family: TBWAGrotesk-Medium;
  font-weight: 500;
  margin-bottom: 30px;
}

/* Vertical Line Style */

.vertical-divider {
  width: 1px;
  background-color: #bfbfbf;
  height: 112%;
  margin: 0;
  transform: translateY(-10%);
}

/* Extends equally above and below */

@media (max-width: 991px) {
  .vertical-divider {
    height: 1px;
    width: 100%;
    background-color: #dcdcdc;
    margin: 40px 0;
  }
}

.fastcompany-container {
  background-color: #ede8c2;
  padding-inline-start: 0;
}

/* Attach left image to screen left */

.fast-company-img {
  height: 550px;
  margin-top: -55px;
  display: block;
  margin-left: calc((100vw - 1140px) / -2);
  /* pull to left edge */
}

/* Right image stays normal in container */

.Fast-company-logo {
  height: 550px;
  margin-top: 55px;
  width: auto !important;
}

.fastcompany {
  height: 550px;
  background-color: #ede8c2;
}

/* .fastcompany {
  object-fit: cover;
  height: 550px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: #ede8c2;
}

.fastcompany-container {
  background-color: #ede8c2;
}

.Fast-company-logo {
  height: 550px;
  margin-top: 55px;
  width: auto !important;
}

.fast-company-img {
  height: 550px;
  margin-top: -55px;
} */

/* slider css  */

/* Custom Cursor */

/* --- Custom Cursor Styling --- */

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  pointer-events: none;
  display: none;
  /* hidden by default */
  /* display: flex; */
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.15s ease, opacity 0.25s ease;
}

.cursor-left i,
.cursor-right i {
  font-size: 105px;
}

.cursor-read {
  font-size: 15px;
}

.owl-carousel .owl-nav {
  display: none !important;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
  display: none;
}

/* --- Slider Section --- */

.disruption-section p {
  font-family: TBWAGrotesk-Medium;
  font-weight: 500;
  line-height: 1.35;
}

.disruption-second-section p {
  font-family: AlteHaasGroteskRegular;
  line-height: 1.35;
  max-width: 513px;
}

.some-other-section h2 {
  font-family: TBWAGrotesk-Medium;
  font-weight: 500;
}

.moonshot-section p {
  font-family: AlteHaasGroteskRegular;
  font-weight: 400;
  line-height: 1.25;
}

.dxd-logo,
.inside-logo,
.next-logo {
  max-height: 62px;
  margin-left: auto;
}

.bolt-logo {
  max-height: 78px;
  margin-left: auto;
}

.dislive-logo {
  max-height: 128px;
  margin-left: auto;
}

.ACCELERATOR-div {
  position: relative;
}

/* .ACCELERATOR-logo {
  height: 28px;
  max-width: 150%;
  position: absolute;
  right: 7px;
  margin-left: auto;
}
 */
.pirates-section-auther {
  font-family: TBWAGrotesk-SemiBold !important;
  font-weight: 600;
}

.career-section p {
  font-family: TBWAGrotesk-Medium;
  font-weight: 500;
}

.quote-text {
  position: relative;
  display: inline-block;
}

.quote-text::before {
  content: "";
  position: absolute;
  left: -17%;
  top: -35%;
  width: 130px;
  height: 130px;
  background: url(https://tbwa.syscentricdev.com/wp-content/uploads/2025/12/double-left.png) no-repeat center;
  background-size: contain;
}

.quote-text::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -30%;
  width: 130px;
  height: 130px;
  background: url(https://tbwa.syscentricdev.com/wp-content/uploads/2025/12/double-quote-right.png) no-repeat center;
  background-size: contain;
}

.yellow-line {
  height: 100%;
}

.gray-lines {
  width: 100%;
  height: 500px;
}

.gray-lines-section {
  padding-bottom: 60px;
  padding-top: 60px;
}

.gray-lines-second-section {
  padding-bottom: 60px;
  padding-top: 60px;
}

.logos-container {
  padding-inline: 30px;
}

/* .custom-logo {
    min-height: 200px;
} */

.video-container {
  margin-top: 30px;
}

.container-carrer {
  position: relative;
  padding-top: 60px;
  padding-bottom: 150px;
}

.career-text {
  margin-left: 20px;
  margin-top: 72px;
  color: #fff;
  max-width: 380px;
  margin-bottom: 50px;
}

.career-text p {
  line-height: 1.4;
  font-weight: 500;
  font-family: TBWAGrotesk-Medium;
}

.contact-row {
  padding-top: 60px;
  padding-bottom: 60px;
}

.location-container b {
  font-family: AlteHaasGroteskBold;
  font-weight: 700;
}

.location-container p {
  font-family: AlteHaasGroteskRegular;
  font-weight: 400;
}

.contact-us-section {
  padding: 15px 0 50px 0;
}

.contact-us-section h2 {
  font-family: TBWAGrotesk-SemiBold;
  font-weight: 600;
  line-height: 1;
}

.contact-us-section span {
  font-family: AlteHaasGroteskRegular;
  font-weight: 400;
}

.home-menu {
  margin-left: -6%;
}

.disruption-menu {
  padding-left: 5%;
}

.bolt-menu {
  padding-left: 10%;
}

.career-menu {
  padding-left: 15%;
}

.contact-menu {
  padding-left: 20%;
}

.text-black {
  color: #000;
}

/* Footer Styling */

.footer-section {
  background: var(--blk);
  color: var(--white);
}

/* Social Icons */

.footer-social a {
  font-size: 28px;
  color: #fff;
  text-decoration: none;
}

.footer-social a:hover {
  opacity: 0.7;
}

/* Text Styling */

.footer-copy,
.footer-legal a,
.footer-trademark,
.footer-links a {
  font-size: 16px;
  line-height: 1.6;
}

.footer-copy {
  opacity: 0.9;
}

.footer-legal a {
  color: #fff;
  text-decoration: underline;
}

.footer-trademark {
  opacity: 0.8;
}

.footer-links a {
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  opacity: 0.7;
}

/* Responsive Adjustments */

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

/* Social Icons */

.footer-social a {
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.25s ease, color 0.25s ease;
}

.footer-social a:hover {
  transform: scale(1.25);
  /* Zoom effect */
  color: var(--highlight-color);
  /* Change color (you can set any color) */
}

/* Footer Menu Link Hover Animation */

.footer-links a {
  position: relative;
  display: inline-block;
  padding: 2px 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 22px;
  /* smooth text color transition */
  transition: color 0.3s ease;
}

/* Yellow background animation using ::before */

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--highlight-color);
  /* Yellow */
  z-index: -1;
  transition: width 0.35s ease-in-out;
}

/* Hover Effect */

.footer-links a:hover {
  color: #000;
  /* text becomes black */
}

/* Animate background reveal */

.footer-links a:hover::before {
  width: 100%;
}

/* .bottom-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30vh;
  background: rgba(20, 20, 20, 0.95);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 30;
  transform: translateY(100%);
  transition: transform 0.8s ease;
}

.bottom-panel.show {
  transform: translateY(0);
}


.bottom-panel button {
  position: absolute;
  top: 10px;
  right: 20px;
  background: none;
  color: var(--white);
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
}

.bottom-panel button:hover {
  color: var(--highlight-color);
} */

/* MAIN BANNER */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: #fccb12;
  margin: 5px;
  z-index: 9999;
  padding-inline: 25px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

/* SHOW ANIMATION */

.cookie-banner.show {
  transform: translateY(0);
}

/* TEXT & TITLE */

.cookie-text p {
  margin: 0;
  font-size: 13px;
  color: #191e23;
}

.cookie-title h5 {
  margin: 0;
  font-weight: 500;
  color: #191e23;
  font-size: 15px;
}

/* ACCEPT BUTTON */

.accept-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 35px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  width: 60%;
  margin-top: 30px;
}

.accept-btn:hover {
  opacity: 1;
}

/* CLOSE BUTTON (TOP RIGHT) */

.close-cookie-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  color: #000;
}

/* LEFT TEXT → VERTICALLY CENTER */

.cookie-text {
  align-items: center !important;
}

/* CENTER TITLE → VERTICALLY TOP */

.cookie-title {
  align-items: flex-start !important;
  padding-top: 10px;
  /* Same as screenshot spacing */
}

.cookie-btn-col {
  display: flex !important;
  align-items: center !important;
  /* Prevent full-height stretching */
}

/* heading font */

.privacy_policy_section .heading-font {
  font-family: TBWAGrotesk-Regular;
  /* color: #0a0a0d; */
  font-weight: 600;
}

/* body font */

.privacy_policy_section .text-font {
  font-family: TBWAGrotesk-Regular;
  font-weight: 400;
  color: #0a0a0d;
}

.privacy_policy_section .policy-intro {
  margin-bottom: 1.1rem;
}

.privacy_policy_section h1,
.privacy_policy_section h2,
.privacy_policy_section h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.privacy_policy_section ul {
  margin-left: 1.1rem;
}

.privacy_policy_section .small-note {
  font-size: 0.92rem;
  color: #666;
}

/* HEADING */

.notice-title {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 32px;
}

/* BODY TEXT */

.notice-text {
  font-size: 18px;
  line-height: 1.65;
  font-style: italic;
  color: #000;
  max-width: 900px;
  /* matching screenshot width */
  margin-bottom: 26px;
}

/* DATE */

.notice-date {
  font-size: 16px;
  margin-top: 40px;
  margin-bottom: 16px;
  font-style: italic;
}

/* VERSION NUMBER */

.notice-version {
  font-size: 16px;
  font-style: italic;
}

/*Video Strip New CSS*/

.videoSec {
  padding: 60px 0 80px 0;
}

.video-strip {
  gap: 5px;
  overflow: hidden;
}

.video-box {
  flex: 1;
  height: 550px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  clip-path: polygon(0 0, 70% 0, 99% 100%, 26% 100%);
}

.video-box .thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-strip:hover .video-box {
  flex: 0.7;
}

.video-strip .video-box:hover {
  flex: 3;
}

.video-bars {
  height: 550px;
  display: flex;
  overflow: hidden;
}

.video-bar {
  height: 100%;
  transition: width 30s;
  clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%);
  margin-right: -50px;
  transform-origin: left;
  transition: all 0.3s ease-in;
}

.video-bar:hover {
  width: 45%;
  max-width: 45%;
  margin-right: 0;
  margin-right: -50px;
  clip-path: polygon(0 0, 90% 0, 99% 100%, 9% 100%);
}

.video-bar iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

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

/* responsive css */

/* Layout */

.blink-slider-wrapper {
  display: flex;
  gap: 32px;
  padding: 28px;
  align-items: flex-start;
}

.blink-left {
  width: 55%;
  position: relative;
}

.blink-right {
  width: 45%;
}

/* Main slider images */

.blink-slider .item img,
.blink-slider .owl-stage .owl-item img {
  width: 100%;
  display: block;
  border-radius: 6px;
  cursor: pointer;
}

/* Main arrows (visible) */

.blink-main-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.blink-main-prev {
  left: -22px;
}

.blink-main-next {
  right: -22px;
}

/* position dots bottom-right inside slider */

.blink-left .owl-dots {
  position: absolute;
  bottom: 10px;
  right: 18px;
  z-index: 15;
}

.blink-left .owl-dots .owl-dot {
  margin: 0 4px;
}

/* Right static text */

.blink-title {
  font-family: TBWAGrotesk-Bold;
  font-weight: 700;
  margin-bottom: 10px;
}

.blink-desc {
  font-family: TBWAGrotesk-Regular;
  color: #444;
  line-height: 1.6;
}

/* Modal (popup) adjustments */

.modal-content.bg-dark {
  border: 0;
}

.blink-modal-carousel .item img {
  width: 100%;
  display: block;
  /* max-height: 80vh; */
  object-fit: contain;
}

/* Modal arrows (Bootstrap-style white icons) */

.blink-modal-prev,
.blink-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1055;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  background: transparent;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.blink-modal-prev,
.blink-modal-next {
  color: #fff !important;
  border: 2px solid #fff !important;
  background: transparent !important;
}

/* Remove blue click/active/focus color */

.blink-modal-prev:focus,
.blink-modal-prev:active,
.blink-modal-next:focus,
.blink-modal-next:active {
  color: #fff !important;
  border-color: #fff !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

.blink-modal-prev {
  left: -15%;
}

.blink-modal-next {
  right: -15%;
}

/* .btn-close {
  position: absolute;
  z-index: 9999;
  right: -15%;
  top: -5%;
  height: 56px;
  width: 56px;
  color: #fff !important;
  border: 2px solid #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 0;
} */

.blink-close-icon {
  position: absolute;
  z-index: 9999;
  right: -15%;
  top: -5%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.blink-close-icon i {
  font-size: 24px;
  color: #fff;
}

.blink-close-icon:focus,
.blink-close-icon:active {
  outline: none !important;
  box-shadow: none !important;
}

/* Close button styling (white X already provided via btn-close-white) */

/* Counter */

.blink-modal-counter {
  /* position: absolute;
  right: 18px;
  bottom: 18px;
  color: #fff;
  z-index: 1055;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.25);
  padding: 6px 10px;
  border-radius: 6px; */
  position: absolute;
  right: 0;
  bottom: -5%;
  color: #fff;
  z-index: 1055;
  font-weight: 600;
  /* background: rgba(0, 0, 0, 0.25); */
  padding: 6px 10px;
  border-radius: 6px;
}

/* Small screens: place arrows inside padding area */

.slider-pop-up {
  background: none;
}

.disruption-img {
  max-width: 435px;
}
