.bg-left {
  background-color: #012b01; /*  #0f172a; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: calc(100vh + 60px); /* Full viewport height */
  position: relative; /* Ensure proper layering */  
  display: flex; /* Enables alignment */
  flex-direction: column; /* Align items vertically */
  justify-content: flex-end; /* Align content to the bottom */ 
  padding-bottom: 2rem; /* Space between content and bottom edge */
  text-align: left; /* Center align text horizontally */
  margin-top: -50px !important;
}



.scroll-container {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  padding-bottom: 10px;
}
.scroll-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}
.scroll-item {
  /* display: inline-block;
    width: 350px;    
    margin: 10px;    
    vertical-align: top; */
  flex: 0 0 auto;
  width: 325px;
  margin: 10px;
}
.card {
  /* background: linear-gradient(180deg, #fffbf3, #ddd1b9);  */
  /* Gradient starting with #fffbf3 */
  border: 1px solid #ddd; /* Optional: Add a border for better visibility */
  border-radius: 10px; /* Optional: Add rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
  height: 100% !important;  
}

.card-text {
  white-space: normal; /* Ensure text wraps */
  word-wrap: break-word !important ; /* Break long words if necessary */
}

.arrow-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.arrow-container button {
  z-index: 10; /* Ensure arrows are above the scroll items */
}

.scroll-container::after {
  content: "";
  display: inline-block;
  width: 10px; /* Adjust this value to control how much of the next item is visible */
  height: 100%;
}

.rot8 {
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* General styles for animation */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  opacity: 0; /* Initially hidden */
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Active state for animations when in view */
.in-view {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1) rotate(0deg);
}

/* Fade In */
.fade-in {
  transform: translateY(20px); /* Small offset to animate from */
  animation-name: fadeIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Fade Out */
.fade-out {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Zoom In */
.zoom-in {
  transform: scale(0.8); /* Start smaller */
  animation-name: zoomIn;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Zoom Out */
.zoom-out {
  animation-name: zoomOut;
}

@keyframes zoomOut {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.5);
    opacity: 0;
  }
}

/* Slide In from Left */
.slide-in-left {
  transform: translateX(-100%); /* Start off-screen */
  animation-name: slideInLeft;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Slide In from Right */
.slide-in-right {
  transform: translateX(100%); /* Start off-screen */
  animation-name: slideInRight;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Slide Out to Left */
.slide-out-left {
  animation-name: slideOutLeft;
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}

/* Slide Out to Right */
.slide-out-right {
  animation-name: slideOutRight;
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Bounce */
.bounce {
  animation-name: bounce;
  animation-timing-function: ease-in-out;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Rotate */
.rotate {
  transform: rotate(0deg);
  animation-name: rotate;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Ensure the hero background covers the navbar */
.bg {
  background-color: #021a07;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: calc(100vh + 60px); /* Full viewport height */
  position: relative; /* Ensure proper layering */
  margin-top: -50px !important;
  display: flex; /* Enables alignment */
  flex-direction: column; /* Align items vertically */
  justify-content: center; /*  Align content to the bottom */
  padding-bottom: 2rem; /* Space between content and bottom edge */
  text-align: left; /* Center align text horizontally */
}

.bga {
  background-color: #0f172a; /*  #0f172a; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: calc(100vh + 60px); /* Full viewport height */
  position: relative; /* Ensure proper layering */
  margin-top: -50px !important;
  display: flex; /* Enables alignment */
  flex-direction: column; /* Align items vertically */
  justify-content: center; /* Align content to the bottom */ 
  padding-bottom: 2rem; /* Space between content and bottom edge */
  text-align: center; /* Center align text horizontally */
}


/* Navbar default styles */
.navbar {
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: transparent !important; /* Initially transparent */
  color: white; /* Default text color */
}

.navbar a.nav-link,
.navbar-brand,
.navbar-toggler-icon {
  color: white !important; /* White text for nav items and brand initially */
}

.navbar img {
  transition: filter 0.3s ease;
}

/* Navbar styles when scrolled */
.navbar-scrolled {
  background-color: #eaf0f8 !important; /* Change background on scroll */
  color: black; /* Change text color */
}

.navbar-scrolled a.nav-link,
.navbar-scrolled .navbar-brand {
  color: black !important; /* Change nav links and brand to black */
}

.navbar-scrolled img {
  filter: none !important; /* Ensure the logo appears normally */
}

.rainbow-gradient {
  background: linear-gradient(105deg, rgba(255, 0, 0, 0.5), rgba(255, 127, 0, 0.5), rgba(255, 255, 0, 0.5), rgba(0, 255, 0, 0.5), rgba(0, 0, 255, 0.5), rgba(75, 0, 130, 0.5), rgba(139, 0, 255, 0.5));
}

.gradient {
  background-image: url("../images/backgrounds/rrrepeat.svg");
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
}

.gradient-a {
  background-image: url("../images/backgrounds/sssurf.svg");
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
}

/* .gradient {
  background: linear-gradient(105deg, rgba(255, 127, 0, 0.5),  rgba(255, 0, 0, 0.5));
} */
.text-uppercase {
  text-transform: uppercase !important;
}
.ls-md {
  letter-spacing: 0.1em !important;
}

.card-hover {
  box-shadow: 0.2s ease-in-out;
  cursor: pointer;
  display: block;
  transition: 0.3s ease-in-out;
}
.card-hover svg {
  fill: var(--bs-gray-400);
}
.card-hover:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  transform: translateY(-0.25rem);
}
.card-hover:hover span {
  border-color: var(--bs-primary) !important;
}
.card-hover:hover .card-text {
  color: var(--bs-primary);
}
.card-hover:hover svg {
  fill: var(--bs-primary);
}

.card-lift {
  border-radius: 0.75rem;
  transition: transform 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.card-lift.active,
.card-lift:focus,
.card-lift:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  transform: translateY(-0.25rem);
}

.icon-xl {
  height: 3.5rem;
  line-height: 3.5rem;
  width: 3.5rem;
}

.icon-xxl {
  height: 4rem;
  line-height: 4rem;
  width: 4rem;
}

.icon-md {
  height: 2.5rem;
  line-height: 2.5rem;
  width: 2.5rem;
}

.icon-shape {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
}
.graph__wrapper {
  position: relative;
  width: 100%;
}

.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 5s linear forwards infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

.dashed {
  stroke-dasharray: 5, 12;
}

#arrow {
  animation: arrow 5s linear infinite;
  opacity: 0;
}

@keyframes arrow {
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.label { 
  fill: #333;
  dominant-baseline: middle;
  text-anchor: middle;
}


.hero{
  margin-top: 175px !important;
}


.full-bg-section {
  height: 100vh;
  background-image: url('../../assets/images/backgrounds/bg1.png'); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}


.ticker-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: #000;
  color: #fff;
  padding: 30px 0;
}

.ticker-content {
  display: inline-block;
  animation: ticker 15s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.ticker-item {
  display: inline-block;
  margin: 0 20px; /* Spacing between items */
}



.cta  {  
  background: linear-gradient(180deg,#2a1052,#4908aa 50%,#4200a5);
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--bs-gutter-x)*-.5);
  margin-right: calc(var(--bs-gutter-x)*-.5);
  margin-top: calc(var(--bs-gutter-y)*-1);
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  padding: 3rem!important;
  border-radius: var(--bs-border-radius-lg)!important;
  position: relative;
}
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 800px;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff0000;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-close:hover {
  background: #cc0000;
}

.video-container {
  padding: 42.86% 0 0 0;
  position: relative;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


