@font-face {
  font-family: 'CeraPro';
  src: url('assets/fonts/CeraPro-Thin.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'CeraPro';
  src: url('assets/fonts/CeraPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'CeraPro';
  src: url('assets/fonts/CeraPro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'BIN Regular';
  src: url('assets/fonts/BIN-Regular.woff') format('woff'),
       url('assets/fonts/BIN-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


body {
    font-family: 'CeraPro', 'Inter', sans-serif;
    /*background-color: #05051a; */
	background-color: #000000;
    color: #e0e7ff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
.border-t {
    border-top: 1px solid;
}
    @keyframes slideUpFade {
      0% {
        opacity: 0;
        transform: translateY(40px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .slide-up-fade {
      animation: slideUpFade 1.2s ease-out forwards;
    }
    @keyframes slideInRight {
      0% {
        opacity: 0;
        transform: translateX(60px);
      }
      100% {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    .slide-in-right {
      animation: slideInRight 1s ease-out forwards;
      animation-delay: 0.5s; /* delay before it starts */
      opacity: 0; /* ensure it's hidden before animation */
    }

.line-05 {
  line-height: 0.5;
}

    
    @keyframes bounceExplore {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-8px);
      }
    }
    
    .bounce-explore {
      /*** box-shadow: 0 0 30px rgba(0, 255, 255, 0.2), inset 0 0 15px rgba(0, 255, 255, 0.1); */
      transition: all 0.3s ease;
    }
    
    .bounce-explore:hover {
      animation: bounceExplore 1.5s ease-in-out;
    }

    .slider-text{
        background: transparent;
        padding: 1rem 2rem;
        text-transform: uppercase;
    }

    .site-branding img {
        max-width: 140px;
    }

    .site-header {
        width: 100%;   z-index: 99;
        background: unset;
    }

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
  flex: 1;
}

.site-branding img {
  height: auto;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
#mobile-menu {
  backdrop-filter: blur(5px);
}

.menu li {
  display: inline;
}
.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.02) 0%, transparent 70%);
    animation: pulseBg 15s infinite alternate ease-in-out;
    z-index: 0;
}

    .background-effect {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(0, 255, 255, 0.03) 0%, transparent 70%),
                    linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
        animation: subtleGlow 20s infinite alternate;
        z-index: 0;
    }

.container {
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.menu .current-menu-item > a::after,
.menu .current-menu-ancestor > a::after,
.menu .current-menu-parent > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);
    width: 100%;
    height: 3px; 
    background: #222426;
    clip-path: ellipse(50% 50% at 50% 50%);
    z-index: -1;
}



.menu li ul {
    display: none;
    position: absolute;
    top: 120%;
    left: 0;
    background: #111;
    min-width: 200px;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.menu li:hover > ul {
    display: block;
}

.menu li ul li {
    display: block;
    
    white-space: nowrap;
}

.menu li ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    transition: background 0.3s;padding: 10px 20px;
    font-size: 0.85rem;
}

.menu li ul li a:hover {
    background: #00ffff22;
}


@media screen and (max-width: 767px){
        .lead-description {        margin-bottom: 40px!important ;  }
}