/*********************/
/*** Video Cards ***/
/*********************/

.session-title {
  color: #2FA7D8;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600; /* if you want it slightly bold */
  text-align: center;
  margin-bottom: 20px;
}

/*********************/
/*** Email Support ***/
/*********************/

.email-support {
  margin-top: 24px;
  font-size: 16px;
  opacity: 0.9;
  text-align: right;
}

/********************************/
/*** Break Points for Mobile ***/
/********************************/

/* Mobile Fixed Header - Hide Hamburger */
@media (max-width: 430px) {

  /* Make header fixed at top */
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
  }

  /* Add padding to body to prevent content from hiding under fixed header */
  body {
    padding-top: 80px;
    /* Adjust this value based on your actual header height */
  }

  /* Keep the logo visible and centered or left-aligned */
  .navbar-brand {
    display: block;
  }

  /* Navigation Toggle Button Hide */
  .nav-toggle-btn {
    display: none !important;
  }

  /* Hide desktop watch again button, but not mobile play button */
  .video-play-button:not(.video-play-mobile) {
    display: none !important;
  }

  .my-scrolling-content {
    display: flex;
    gap: 40px !important;
    align-items: center;
    padding: 0 40px;
  }

}

/********************************/
/*** Spacing Between Sections ***/
/********************************/

.section-spacing {
  height: 180px;
}

@media (max-width: 991px) {
  .section-spacing {
    height: 40px;
    /* or whatever you want for tablet */
  }
}

@media (max-width: 480px) {
  .section-spacing {
    height: 40px;
    /* or whatever you want for mobile */
  }
}

/************************************/
/*** Parallax Background Grids ***/
/************************************/

.parallax-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  /* behind all content */
}

.parallax-shape {
  position: absolute;
  will-change: transform;
  opacity: 0.05;
  /* very subtle - adjust to taste (3-8%) */
}

/* DOWN */
.shape-1 {
  top: 80%;
  left: 50%;
  width: 1800px;
  height: 413px;
}

/* UP */
.shape-2 {
  top: 20%;
  right: 90%;
  width: 196px;
  height: 724px;
}

/* DOWN */
/* .shape-3 {
    top: 50%;
    left: -20%;
    width: 1083px;
    height: 219px;
} */

/* UP */
/* .shape-4 {
    top: 60%;
    right: 90%;
    width: 196px;
    height: 724px;
} */

/* Make sure content sits above parallax */
header,
main,
.hero-intro-video {
  position: relative;
  z-index: 1;
}

/* Hide on mobile for performance */
@media (max-width: 991px) {
  .parallax-container {
    display: none;
  }
}

/**********************/
/*** Testimonial ***/
/**********************/

/* Navigation Toggle Button */
.nav-toggle-btn {
  background: none;
  border: none;
  color: rgba(47, 167, 216, 0.7);
  cursor: pointer;
  font-size: 18px;
  padding: 8px 12px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 30px;
  top: 200px;
  z-index: 1001;
}

.nav-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(238, 233, 222, 1);
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 5px;
  margin-right: 0px;
  margin-left: 2px;
}

.nav-toggle-btn:hover {
  color: rgba(238, 233, 222, 1);
}

/* Hide nav when toggled */
.main-header.hidden {
  display: none;
}

.nav-toggle-btn i {
  transition: transform 0.3s ease;
}

.main-header.hidden~.nav-toggle-btn i {
  transform: rotate(180deg);
}

/* Badge at bottom of image */
.testimonial-box-content {
  padding: 15px 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong {
  font-size: 24px;
  color: #586C91;
  margin-bottom: 2px;
}

.testimonial-author>span:first-of-type {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 12px;
}

.testimonial-author span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.testimonial-author .company {
  margin-top: 4px;
  font-weight: 600;
  font-size: 12px;
}

/* Main testimonial quote box on right side */
.testimonial-box {
  background: rgba(54, 69, 92, 0.4);
  border-left: 4px solid #586C91;
  padding: 35px 40px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.quote-icon {
  color: #6B9BD1;
  font-size: 36px;
  margin-bottom: 15px;
  opacity: 0.6;
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 0;
}

blockquote {
  margin: 0;
  padding: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .testimonial-box {
    padding: 25px 30px;
    margin-bottom: 30px;
  }

  .testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
  }
}

.hks-logo {
  width: 100px;
  height: auto;
  margin-top: 20px;

}

.main-header.hidden {
  display: none;
}


/**********************/
/*** Copyright Date ***/
/**********************/

/* 

<p class="design-credit">
    <a href="https://jefftrish.co" target="_blank" rel="noopener">
        Site by <img src="/images/jt-logo-icon.svg" alt="" class="designer-logo">
    </a>
</p> 

*/



.design-credit {
  margin-top: 24px;
  font-size: 16px;
  opacity: 0.7;
  text-align: center;
}

.design-credit a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.design-credit a:hover {
  opacity: 1;
  color: #fff;
}

.designer-logo {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.design-credit a:hover .designer-logo {
  opacity: 1;
  transform: scale(1.1);
}

/* Adjust colors for light backgrounds */
body.light-theme .design-credit a,
.light-footer .design-credit a {
  color: rgba(0, 0, 0, 0.6);
}

body.light-theme .design-credit a:hover,
.light-footer .design-credit a:hover {
  color: rgba(0, 0, 0, 0.9);
}

/*********************************************************/
/*** On pages WITHOUT hero video, add space for header ***/
/*********************************************************/


body:not(.home-page) main,
main:not(:has(.hero-intro-video)) {
  padding-top: 80px !important;
}

/* Mobile 360px - reduce padding for smaller screens */
@media only screen and (max-width: 360px) {
  body:not(.home-page) main,
  main:not(:has(.hero-intro-video)) {
    padding-top: 80px !important;
  }
}

/* Small devices (tablets, >= 576px) */
@media (min-width: 576px) {
  body:not(.home-page) main,
  main:not(:has(.hero-intro-video)) {
    padding-top: 180px !important;
  }
}

/* Medium devices (laptops, >= 768px) */
@media (min-width: 768px) {
  body:not(.home-page) main,
  main:not(:has(.hero-intro-video)) {
    padding-top: 180px !important;
  }
}

/* Large devices (desktops, >= 992px) */
@media (min-width: 992px) {
  body:not(.home-page) main,
  main:not(:has(.hero-intro-video)) {
    padding-top: 180px !important;
  }
}

/* OR target specific pages */
/* .pricing-page main,
.about-page main,
.blog-page main {
  padding-top: 100px !important;
} */

/*******************************************/
/*** Hero Video Section - Kill Bootstrap ***/
/*******************************************/


.hero-intro-video .col-lg-12 {
  padding: 0 !important;
}

/*******************/
/*** Video Cards ***/
/*******************/
.video-gallery-image-vimeo {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.video-gallery-image-vimeo a {
  position: relative;
  display: block;
  cursor: pointer;
}

.video-gallery-image-vimeo a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-color);
  border-radius: 20px;
  opacity: 0%;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.video-gallery-image-vimeo:hover a::before {
  opacity: 40%;
  visibility: visible;
  transform: scale(1);
}

.video-gallery-image-vimeo a::after {
  content: "\f04b";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 20px;
  background: linear-gradient(136.83deg,
      var(--accent-color) 2.01%,
      var(--accent-secondary-color) 97.82%);
  color: var(--primary-color);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

@media (max-width: 991px) {
  .video-frame-container iframe {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
  }
}

.video-gallery-image-vimeo:hover a::after {
  opacity: 1;
  visibility: visible;
}

.video-gallery-image-vimeo img {
  width: 100%;
  aspect-ratio: 1 / 0.829;
  object-fit: cover;
  border-radius: 20px;
}

/*** Video Card Headers ***/

.card-header h5 {
  padding-bottom: 10px;
  font-size: 20px;
  padding-bottom: 10px;
  color: #2FA7D8;
  text-align: center;
}

@media (max-width: 768px) {
  .card-header h5 {
    font-size: 16px;
  }
}


/***********************/
/*** Video Container ***/
/***********************/

/* Hero section - remove default spacing */
.hero-intro-video {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Main content - no top padding */
main {
  padding-top: 0 !important;
}

/* Header overlaps video */
header.main-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}

/* Outer wrapper - holds video at 100vh (full screen height) */
.hero-video-image {
  position: relative;
  width: 100%;
  height: 100vh;
  /* full viewport height - goes to top */
  background: #000;
  overflow: hidden;
}

/* Inner container - no padding! */
.video-frame-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Vimeo iframe - centered and fills container */
.video-frame-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 0;
}

/* Video wrapper - full viewport height */
.hero-video-image {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

/* Container - full size, no padding */
.video-frame-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Iframe - CRITICAL: make it bigger than container so it fills */
.video-frame-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  /* Make video LARGER so it always fills, then center crops */
  width: 177.77vh;
  /* 16:9 ratio based on height */
  height: 56.25vw;
  /* 16:9 ratio based on width */
  min-width: 100%;
  min-height: 100%;

  border: 0;
}


/*********************/
/*** Frame Pieces ***/
/*********************/

/* Left corner - fixed width, anchored LEFT BOTTOM */
.frame-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 640px;
  height: 1080px;
  pointer-events: none;
  z-index: 10;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
}

/* Center - stretches between corners, BOTTOM anchored */
.frame-center {
  position: absolute;
  left: 640px;
  right: 640px;
  bottom: 0;
  height: 1080px;
  background-image: url('/images/video-frame-c.svg');
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: center bottom;
  pointer-events: none;
  z-index: 10;
}

/* Right corner - fixed width, anchored RIGHT BOTTOM */
.frame-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 640px;
  height: 1080px;
  pointer-events: none;
  z-index: 10;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
}

/************************************/
/*** Use Cases - Flip Card Styles ***/
/************************************/

/* Override existing project-item styles for flip cards */
.project-item.flip-card {
  background: transparent !important;
  padding: 0 !important;
  height: 600px !important;
  perspective: 1000px;
  cursor: pointer;
  margin-bottom: 30px;
}

/* Inner wrapper that does the flipping */
.flip-card .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

/* Flip on hover */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front and back face positioning */
.flip-card .flip-card-front,
.flip-card .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
}

/* Front face (image + title) */
.flip-card .flip-card-front {
  background: var(--white-color);
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.flip-card .flip-card-front .project-image-card {
  flex: 1;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.flip-card .flip-card-front .project-image-card figure {
  height: 100%;
  margin: 0;
}

.flip-card .flip-card-front .project-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card .flip-card-front .project-content {
  padding: 20px;
  background: var(--white-color);
  border-radius: 20px 20px 20px 20px;
}

.flip-card .flip-card-front .project-content h3 {
  font-size: 20px;
  margin: 0;
  color: var(--primary-color);
}

/* Back face (detailed content) */
.flip-card .flip-card-back {
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
  transform: rotateY(180deg);
  padding: 30px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Custom scrollbar for back content */
.flip-card .flip-card-back::-webkit-scrollbar {
  width: 4px;
}

.flip-card .flip-card-back::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.flip-card .flip-card-back::-webkit-scrollbar-thumb {
  background: #2FA7D8;
  border-radius: 2px;
}

/* Back content styling */
.flip-card .flip-card-content h3 {
  font-size: 22px;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.3em;
}

.flip-card .use-case-section {
  margin-bottom: 20px;
}

.flip-card .use-case-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: #2FA7D8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.flip-card .use-case-section p {
  font-size: 14px;
  line-height: 1.5em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.flip-card .use-case-example {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  line-height: 1.5em;
  color: rgba(255, 255, 255, 0.8);
}

.flip-card .use-case-example strong {
  color: #2FA7D8;
  font-weight: 600;
}

/* Mobile: Click to flip instead of hover */
@media (max-width: 991px) {
  .project-item.flip-card {
    height: 500px !important;
  }

  /* On mobile, add a visual indicator */
  .flip-card .flip-card-front::after {
    content: 'Tap to learn more';
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: #E24C4A;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
    z-index: 10;
  }

  .flip-card .flip-card-content h3 {
    font-size: 18px;
  }

  .flip-card .flip-card-back {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .project-item.flip-card {
    height: 450px !important;
  }

  .flip-card .use-case-section p {
    font-size: 13px;
  }
}


/****************************/
/*** Video Slider Section ***/
/****************************/

.issue-illustration {
  max-width: 35%;
  height: auto;
}

/****************************/
/*** Video Slider Section ***/
/****************************/

/* Main section container */
.our-projects {
  padding: 60px 0;
}

/* Section title styles */
.section-row {
  margin-bottom: 80px;
}

.section-title.section-title-center {
  width: 100%;
  max-width: 700px;
  text-align: center;
  margin: 0 auto 40px;
}

/* Project item card */
.project-item {
  background: var(--white-color);
  padding: 20px;
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

/* Add background shape effect */
.box-bg-shape {
  position: relative;
}

.box-bg-shape::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(56, 107, 183, 0.05) 0%, rgba(226, 76, 74, 0.05) 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

.box-bg-shape:hover::before {
  opacity: 1;
}

/* Project image */
.project-image {
  margin-bottom: 20px;
}

.project-image a,
.project-image figure {
  display: block;
  border-radius: 20px;
  cursor: none;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  aspect-ratio: 1 / 0.662;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image img {
  transform: scale(1.1);
}

/* Image animation effect */
.image-anime {
  position: relative;
  overflow: hidden;
  cursor: pointer !important;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 100%;
  transition: all 600ms linear;
  background-color: transparent;
}

/* Project content */
.project-content {
  margin-bottom: 30px;
}

.project-content p {
  font-size: 14px;
  font-weight: 500;
  color: #586C91;
  margin-bottom: 10px;
}

.project-content h3 {
  font-size: 20px;
  line-height: 1.4em;
}

.project-content h3 a {
  color: inherit;
  transition: color 0.3s ease-in-out;
}

.project-content h3 a:hover {
  color: #586C91;
}

/* Read more button */
.readmore-btn {
  position: relative;
  display: inline-block;
  z-index: 100;
}

.readmore-btn a {
  width: 50px;
  height: 50px;
  background: linear-gradient(110deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
  background-size: 200% auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  z-index: 100;
}

.readmore-btn a:hover {
  background-position: right center;
  transform: rotate(45deg);
  z-index: 100;
}

.readmore-btn a img {
  max-width: 20px;
  z-index: 100;
}

/****************************/
/*** Video Training Cards ***/
/****************************/





/*************************/
/***   Document Page   ***/
/*************************/


.section-title-book h3 {
  display: inline-block;
  position: relative;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: url("/images/books-lightbulb.svg") no-repeat;
  background-position: left center;
  background-size: 18px auto;
  padding-left: 30px;
  margin-bottom: 20px;
}

.section-title-user h3 {
  display: inline-block;
  position: relative;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: url("/images/user.svg") no-repeat;
  background-position: left center;
  background-size: 18px auto;
  padding-left: 30px;
  margin-bottom: 20px;
}

.section-title-gear h3 {
  display: inline-block;
  position: relative;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: url("/images/document-gear.svg") no-repeat;
  background-position: left center;
  background-size: 18px auto;
  padding-left: 30px;
  margin-bottom: 20px;
}

.section-title-icon-star h3 {
  display: inline-block;
  position: relative;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: url("/images/icon-star.svg") no-repeat;
  background-position: left center;
  background-size: 18px auto;
  padding-left: 30px;
  margin-bottom: 20px;
}

.section-title-insight-alt h3 {
  display: inline-block;
  position: relative;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: url("/images/insight-alt.svg") no-repeat;
  background-position: left center;
  background-size: 18px auto;
  padding-left: 30px;
  margin-bottom: 20px;
}


/*********************/
/***   Word Flip   ***/
/*********************/

.container-word-flip {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

#rotating-word {
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: inline-block;
  max-width: 500px;
  text-align: left;
}


/********************************/
/***   Scrolling Ticker css   ***/
/********************************/

.scrolling-ticker-box.our-scrolling-ticker {
  margin: 0;
}

.our-scrolling-ticker .scrolling-ticker-item {
  --gap: 40px;
  margin-bottom: 40px;
}

.our-scrolling-ticker .scrolling-ticker-item:last-child {
  margin-bottom: 0;
}

.our-scrolling-ticker .scrolling-content {
  animation-duration: 44s;
}

.our-scrolling-ticker .scrolling-content span {
  font-size: 40px;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 25px 40px;
}

.our-scrolling-ticker .scrolling-content span img {
  max-width: 124px;
  margin-right: 30px;
}

.scrolling-ticker-item {
  --gap: 15px;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  align-items: center;
  margin-bottom: 15px;
}

.scrolling-ticker-item:last-child {
  margin-bottom: 0;
}

.scrolling-content {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 34s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.scrolling-content span {
  background: var(--secondary-color);
  padding: 14px 24px;
  border-radius: 100px;
}

.scrolling-ticker-item.scroll-reverse .scrolling-content {
  animation-direction: reverse;
}

/* .scrolling-ticker-item:hover .scrolling-content {
  animation-play-state: paused;
} */

.scrolling-ticker-item {
  --gap: 15px;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  align-items: center;
  margin-bottom: 15px;
}

.scrolling-ticker-item {
  --gap: 15px;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  align-items: center;
  margin-bottom: 15px;
}

.scrolling-ticker-item:last-child {
  margin-bottom: 0;
}

.scrolling-content {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 34s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.scrolling-content span {
  background: var(--secondary-color);
  padding: 14px 24px;
  border-radius: 100px;
}

.scrolling-ticker-item.scroll-reverse .scrolling-content {
  animation-direction: reverse;
}

/* .scrolling-ticker-item:hover .scrolling-content {
  animation-play-state: paused;
} */


/**********************/
/***   Hero CTA's   ***/
/**********************/

/* Base CTA Styles - Common to both desktop and mobile */
.cta-demo {
  position: absolute;
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  color: #1C1B1A;
  -webkit-text-stroke: 2px #2FA7D8;
  paint-order: stroke fill;
  border: 4px solid #2FA7D8;
  padding: clamp(10px, 1vw, 20px) clamp(14px, 1.5vw, 20px);
  border-radius: 12px;
  z-index: 60;
  letter-spacing: 1px;
  background: #F5F5F5;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.cta-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(47, 167, 216, 0.8);
}

.cta-news {
  position: absolute;
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 400;
  color: #EEE9DE;
  border: 3px solid #2FA7D8;
  padding: clamp(10px, 1vw, 20px) clamp(14px, 1.5vw, 20px);
  border-radius: 12px;
  z-index: 20;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-news:hover {
  background-color: rgba(47, 167, 216, 0.8);
}

/* Desktop Positioning - Adjust these values to reposition */
@media (min-width: 992px) {
  .cta-demo {
    left: 60px;
    bottom: 100px;
  }

  .cta-news {
    bottom: 45px;
    left: 820px;
  }
}

/* Tablet/Large Screen Adjustment */
@media (max-width: 1200px) {
  .cta-news {
    bottom: 4%;
    left: 3%;
    right: auto;
    font-size: 14px;
    padding: 10px 14px;
  }
}

/**********************************/
/*** Logo and Login BTN Margins ***/
/**********************************/



/* Header Logo - Add margin from edge */
.navbar-brand {
  margin-left: 90px;
}

/* Header Login Button - Add margin from edge */
.header-btn {
  margin-right: 90px;
}

/* Desktop specific adjustments if needed */
@media (min-width: 992px) {
  .navbar-brand {
    margin-left: 30px;
    /* More space on desktop if desired */
  }

  .header-btn {
    margin-right: 30px;
  }
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .navbar-brand {
    margin-left: 20px;
  }

  .header-btn {
    margin-right: 20px;
  }
}

/*** ctas ***/
.sec-cta {
  position: absolute;
  top: 900px;
  left: 200%;
  transform: translateX(-50%);
  z-index: 9999;
  margin: 0;
  padding: 0;
}

/*********************/
/*** global styles ***/
/*********************/

@media (max-width: 991px) {
  body {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
}

/*********************/
/*** Contact Us BTN ***/
/*********************/

.cta-circle img {
  width: 128px;
  height: 128px;
  padding-right: 50px;
  object-fit: contain;
  filter: none;
  background: #2b313d;
  border-radius: 50%;
  border: 1px solid #3b4250;
  padding: 18px;
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-circle img:hover {
  transform: translateY(-2px);
  box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.28);
}

/*** Plan Feature Chart ***/
.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-row img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/*********************/
/*** Loader ***/
/*********************/

.loading {
  position: absolute;
  inset: 0;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: #6EA8FF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loader-logo {
  position: absolute;
  width: 50%;
  height: 50%;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

/************************************/
/*** Custom Hamburger Menu Styles ***/
/************************************/

.navbar-toggle {
  display: none;
  width: 48px;
  height: 64px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  position: absolute;
  right: 16px;
  z-index: 1200;
}

.hamburger-icon {
  position: relative;
  display: block;
  width: 38px;
  height: 4px;
  background-color: #EEE9DE;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 48px;
  height: 4px;
  background-color: #EEE9DE;
  border-radius: 4px;
  transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  top: 8px;
}

/* Animated hamburger to X when active */
.navbar-toggle.active .hamburger-icon {
  background-color: transparent;
}

.navbar-toggle.active .hamburger-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggle.active .hamburger-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Show hamburger on mobile */
@media (max-width: 991px) {
  .navbar-toggle {
    display: flex;
  }

  /* Hide desktop menu on mobile */
  .desktop-menu {
    display: none !important;
  }

  /* Mobile menu slide-in */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #222831;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1100;
    padding-top: 80px;
  }

  /* Show menu when active */
  .mobile-menu.mobile-active {
    right: 0;
  }

  /* Mobile menu items styling */
  .mobile-menu .nav-menu-wrapper {
    padding: 20px;
  }

  .mobile-menu .navbar-nav {
    flex-direction: column;
    display: block !important;
  }

  .mobile-menu .nav-item {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu .nav-item a {
    display: block;
    padding: 15px 10px;
    color: #EEE9DE !important;
  }

  /* Mobile submenu styling */
  .mobile-menu .submenu ul {
    position: static;
    display: none;
    background: rgba(0, 0, 0, 0.2);
    padding-left: 20px;
  }

  .mobile-menu .submenu.open ul {
    display: block;
  }

  /* Mobile header button */
  .mobile-menu .header-btn {
    padding: 20px 10px;
  }

  .mobile-menu .header-btn .btn-default {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* Overlay when menu is open */
  body.menu-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
  }

  .navbar-brand img,
  .navbar-logo img {
    max-width: 232px;
    height: auto;
    padding-left: 0px !important;
  }
}


/**********************/
/*** Desktop Styles ***/
/**********************/

@media (min-width: 992px) {
  .header-sticky {
    background: transparent !important;
  }

  .navbar {
    background: transparent !important;
  }

  .nav-menu-wrapper ul li a {
    background: transparent !important;
  }

  .cta-row {
    padding: 60px 0;
  }

  /* Hide hamburger and mobile menu on desktop */
  .navbar-toggle,
  .slicknav_btn,
  .slicknav_menu,
  .mobile-menu {
    display: none !important;
  }

  /* Desktop navigation styles */
  .desktop-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 0px;
  }

  .desktop-menu .nav-menu-wrapper .navbar-nav {
    background: #222831;
    opacity: 1.0;
    border: 3px solid var(--divider-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 0 25px;
    border: 3px solid #2FA7D8;
    z-index: 9999;
  }

  .desktop-menu .nav-menu-wrapper>ul {
    align-items: center;
    display: inline-flex;
  }

  .desktop-menu ul li {
    margin: 0 5px;
    position: relative;
  }

  .desktop-menu ul li a {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    padding: 14px 10px !important;
    color: var(--primary-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
  }

  .desktop-menu ul li.submenu>a:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 400;
    font-size: 14px;
    margin-left: 8px;
    margin-top: 4px;
  }

  .desktop-menu ul li a:hover,
  .desktop-menu ul li a:focus {
    color: var(--accent-color);
  }

  .desktop-menu ul li a:focus-visible {
    box-shadow: none;
  }

  .desktop-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 235px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background: linear-gradient(100deg,
        var(--accent-secondary-color) 0%,
        var(--accent-color) 100%);
    transition: all 0.3s ease-in-out;
    text-align: left;
  }

  .desktop-menu ul li.submenu:first-child ul {
    width: 235px;
  }

  .desktop-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
  }

  .desktop-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
    padding: 5px 0;
  }

  .desktop-menu ul li.submenu ul li.submenu>a:after {
    content: "\f105";
    float: right;
  }

  .desktop-menu ul ul li {
    margin: 0;
    padding: 0;
  }

  .desktop-menu ul ul li a {
    color: var(--primary-color);
    padding: 6px 20px !important;
    margin: 0;
    transition: all 0.3s ease-in-out;
  }

  .desktop-menu ul ul li a:hover,
  .desktop-menu ul ul li a:focus {
    color: var(--bg-color);
    background-color: transparent;
    padding: 6px 20px 6px 23px !important;
  }

  .desktop-menu ul li.highlighted-menu {
    display: none;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 992px) {
  .main-menu .nav-menu-wrapper .navbar-nav {
    padding: 0 10px;
  }

  .main-menu .nav-menu-wrapper {
    margin: 0 10px;
  }

  .main-menu .nav-menu-wrapper ul li {
    margin: 0;
  }
}

/*********************/
/*** Mobile Styles ***/
/*********************/

@media (max-width: 991px) {

  .header-sticky,
  .navbar,
  .nav-menu-wrapper {
    background: #222831 !important;
    padding-left: 0px !important;
    padding-right: 5px !important;
    border-radius: 12px !important;
  }

  .nav-menu-wrapper ul li a {
    background: transparent !important;
    color: #fff !important;
  }

  .navbar .btn {
    margin-top: 16px;
    width: 100%;
  }

  .cta-row {
    padding: 20px 0;
  }
}

/***********/
/*** CTA ***/
/***********/

.btn-cta-lg {
  padding: 16px 34px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  background: #586c91;
  color: #fff;
  transition: all 0.25s ease;
}

.btn-cta-lg:hover {
  background: #2fa7d8;
  transform: translateY(-1px);
}

/*********************/
/*** Header BTN's ***/
/*********************/

.main-menu ul li.active a,
.main-menu ul li.nav-item.active a {
  color: #2fa7d8 !important;
  font-weight: 700 !important;
  transform: scale(1.05) !important;
  display: inline-block !important;
}

/*** ADA  ***/
.skip-to-content {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: #000;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 4px;
}

.skip-to-content:focus {
  left: 10px;
}

.slicknav_btn {
  position: relative;
}

.slicknav_btn:after {
  content: "Open navigation menu";
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/***********************/
/*** Footer Socials ***/
/***********************/

.footer-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 64px;
  align-items: center;
}

.footer-social li {
  margin: 0;
  padding: 0;
}

.footer-social a {
  color: #8db4ff;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus {
  opacity: 0.2;
  transform: scale(1.1);
}

.footer-social {
  display: flex;
  justify-content: center;
}

/*******************************/
/*** Footer dropdown styles ***/
/*******************************/

.footer-dropdown {
  position: relative;
}

.footer-dropdown>ul>li {
  position: relative;
}

.footer-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2a2d3a;
  border: 1px solid #3a3d4a;
  border-radius: 4px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 200px;
  z-index: 9999;
  list-style: none;
}

.footer-dropdown-menu.show {
  display: block;
}

.footer-dropdown-menu li {
  padding: 0;
}

.footer-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.footer-dropdown-menu a:hover {
  background-color: #3a3d4a;
  color: #5b9dd9;
}

/*******************/
/*** Logo Ticker ***/
/*******************/

.my-scrolling-ticker {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  position: relative;
}

.my-scrolling-ticker-box {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: scroll-track 35s linear infinite;
  will-change: transform;
}

/* .my-scrolling-ticker:hover .my-scrolling-ticker-box {
  animation-play-state: paused;
} */

.my-scrolling-content {
  display: flex;
  gap: 124px;
  align-items: center;
  padding: 0 40px;
}

.my-scrolling-content img {
  height: 48px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.5s ease;
}

.my-scrolling-content img:hover {
  opacity: 1;
}

@keyframes scroll-track {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/***************************/
/*** Watch Again Button ***/
/***************************/

.hero-intro-video>.container-fluid>.row>.col-lg-12>.video-play-button {
  position: absolute;
  bottom: 95px;
  right: 2.5%;
  transform: translateY(-50%);
  z-index: 20;
  margin: 0;
  padding: 0;
}

.video-play-button button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(42, 47, 59, 0.95);
  border: 1px solid #3b4250;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-play-button button:hover {
  background: rgba(59, 66, 80, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.video-play-button i {
  font-size: 18px;
  color: #2FA7D8;
}

.video-play-button span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

/**********************************/
/*** Responsive video behavior ***/
/**********************************/

@media (max-width: 991px) {
  .hero-image-content-box {
    flex-direction: column;
  }

  .hero-counter-item-list {
    width: 100%;
  }

  /* Mobile CTA Positioning */
  .cta-demo {
    bottom: 5%;
    left: 2.5%;
    font-size: 14px;
    padding: 10px 14px;
    border: 3px solid #00d9ff;
    -webkit-text-stroke: 1px #00d9ff;
  }

  .cta-news {
    bottom: 8%;
    left: 2.5%;
  }

  .video-play-button button {
    padding: 10px 20px;
    font-size: 16px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero-intro-video>.container-fluid>.row>.col-lg-12>.video-play-button {
    top: 430px;
    left: 20px;
  }

  .cta-demo {
    bottom: 60%;
    left: 2%;
    font-size: 12px;
    padding: 8px 12px;
  }

  .cta-news {
    bottom: -30%;
    left: 2%;
  }

  .video-play-button button {
    padding: 10px 20px;
    font-size: 16px;
  }

  .video-play-button {
    padding-top: 30px;
  }

  .my-scrolling-ticker {
    padding-top: 130px;
  }

  .hero-video.hero-video-mobile {
    margin-top: 80px;
  }



}

/**************************/
/*** Rotating Hero Text ***/
/**************************/

#hero-heading .hero-sub {
  font-size: 1.1em;
  font-weight: 400;
}

#rotating-word {
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.rotating-word {
  color: #EEE9DE !important;
  text-shadow: 0 0 1px #2FA7D8;
}

/*** Back to top ***/
#backToTop {
  position: fixed;
  bottom: 54px;
  right: 32px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  background-image: url("/images/arrow-white-up.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 34px 34px;
  border: 2px solid #2FA7D8;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}

#backToTop:hover {
  background-color: rgba(47, 167, 216, 0.12);
  transform: translateY(-2px);
}

/*** Mobile Video ***/
.hero-video-mobile {
  display: none;
}

.hero-video-image {
  display: block;
}

.hero-video-desktop {
  display: block;
}

.video-play-mobile {
  display: none;
}

@media (max-width: 991px) {
  .hero-video-image {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }

  .video-play-desktop {
    display: none;
  }

  .video-play-mobile {
    display: block;
  }
}

.video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-overlay-inner {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-overlay iframe {
  width: 100%;
  height: 100%;
}

.close-video {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  color: #fff;
  font-size: 24px;
  border: 0;
  cursor: pointer;
}