html,
body {
  scroll-behavior: smooth;
  height: 100%;
  margin: 0;
}

.bgdark1 {
  background-color: black !important;
}

.textg {
  color: #55727f !important;
}


.bgdark2 {
  background-color: #041a22 !important;
}

.nav-link {
  font-family: "Orbitron", sans-serif !important;
}

.image-fade {
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
}

/* .glow-image {
  filter: drop-shadow(0 0 1.9px rgba(252, 251, 251, 0.8));
} */

/* img {
  mix-blend-mode: multiply;

} */

h1,
h2,
h3 {
  font-family: "Orbitron", sans-serif !important;
}

.orb {
  font-family: "Orbitron", sans-serif !important;
}

section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  /* background-color: #f8f9fa; */
  overflow: hidden;
  z-index: 1;
}
section::before,
section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #05212b;
  z-index: 0;
  pointer-events: none;
  filter: blur(20px);
  clip-path: polygon(60% 0%, 100% 40%, 80% 100%, 20% 100%, 0% 60%, 20% 20%);
  animation: floatShape 6s cubic-bezier(0.66, 0, 0.34, 1) infinite alternate;
}
section::before {
  left: -150px;
  top: -100px;
  --initial-rotation: 15deg;
  animation-delay: -5s;
}
section::after {
  right: -150px;
  bottom: -100px;
  --initial-rotation: -15deg;
  animation-delay: -3s;
}
@keyframes floatShape {
  0% {
    transform: translate(0, 0) rotate(var(--initial-rotation)) scale(1);
  }
  50% {
    transform: translate(30px, -25px)
      rotate(calc(var(--initial-rotation) + 10deg)) scale(1.05);
  }
  100% {
    transform: translate(-30px, 25px)
      rotate(calc(var(--initial-rotation) - 10deg)) scale(0.95);
  }
}
section > .container {
  position: relative;
  z-index: 2;
}
.navbar {
  z-index: 9999;
  transition: all 0.3s ease;
}
.navbar-brand img {
  transition: transform 0.3s ease;
}
.navbar-brand:hover img {
  transform: scale(1.05);
}
.underline-hover {
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}
.underline-hover::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  margin-top: 5px;
  right: 0;
  background: #6c757d;
  transition: width 0.3s ease;
}
.underline-hover:hover::after {
  width: 100%;
  left: 0;
  background: #6c757d;
}
.nav-link.active::after {
  width: 100%;
}
.team-member {
  /* border-color: 5px solid #e0e0e0; */
  border-radius: 10px;
  /* padding: 20px; */
  /* background-color: #ffffff; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.brand-logos img {
  object-fit: contain;
  transition: transform 0.3s ease;
}
.brand-logos img:hover {
  transform: scale(1.05);
}
.form-control,
.btn {
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
section {
  transition: background-color 0.5s ease;
}

@keyframes spinInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100vw) rotate(-720deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

.logo-animated {
  animation: spinInFromLeft 1.5s ease-out forwards;
  opacity: 0; /* Ensures fade-in is part of the effect */
}

.flag-muted {
  filter: grayscale(100%) brightness(80%) contrast(90%);
  transition: filter 0.3s ease;
}

.flag-muted:hover {
  filter: none; 
}

.flag{
 font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    cursor: pointer;
}

.custom-tooltip {
    display: none;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background-color: white;
    color: black;
    border: 1px solid #ccc;
    padding: 6px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-size: 14px;
    z-index: 100;
    
  }
  
