@font-face {
  font-family: "Inter Display";
  src: url("/fonts/inter-display/ttf/InterDisplay-Regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("/fonts/inter-display/ttf/InterDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("/fonts/inter-display/ttf/InterDisplay-Italic.ttf")
    format("truetype");
  font-weight: 400;
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-color: black;
  --main-color: #fff;
  --border-color: grey;
}

body,
html {
  height: 100%;
  font-family: "Inter Display", sans-serif;
}

body {
  background-color: var(--bg-color);
  cursor: none;
}

.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    transition: transform 1s ease-in-out;   
     width: 100%;
    z-index: 11111;
     backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar-wrapper a:hover{
  cursor: none;
}

.brand-logo:hover{
  color: white;
}

/* The class added by JS to hide the navbar */
.navbar-hidden {
    transform: translateY(-100%);
}


.navbar-custom {
  background-color: transparent;
  padding: 1rem 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  top: -50px;
}

.brand-logo img{
  max-width: 180px;
}

.container {
  max-width: 1309px;
}

/* Responsive padding for tablet/mobile */
@media (max-width: 991px) {
  .navbar-custom {
    padding: 1rem 1rem;
  }
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--main-color);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item-link {
  text-decoration: none;
  color: #d1d1d1;
  font-size: 1rem;
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 1.5em;
  line-height: 1.5em;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-item-link:hover {
  color: var(--main-color);
}

.nav-item-link .link-text-wrapper {
  position: relative;
  display: inline-block;
}

.char {
  display: inline-block;
  position: relative;
  transform-style: preserve-3d;
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: var(--main-color);
  padding: 0;
  cursor: pointer;
}

.offcanvas-end {
  z-index: 11111;
}

.offcanvas-custom {
  background-color: #0a0a0a;
  color: var(--main-color);
  border-left: 1px solid #333;
}

.offcanvas-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
 
}

.mobile-nav-item {
  margin-bottom: 1rem;
}

.mobile-nav-link {
  font-size: 15px;
  color: #d1d1d1;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.mobile-nav-link:hover {
  color: var(--main-color);
}

.bottom-line {
  width: 0%;
  border: 1px solid #333;
  background-color: #333;
}

.mouse-box {
  min-width: 15px;
  min-height: 15px;
  border-radius: 50%;
  background-color: var(--main-color);
  mix-blend-mode: difference;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  background-color: var(--bg-color);
}

/* footer  */
footer {
  background-color: #000000;
  color: #ffffff;
  width: 100%;
}

.top-bar {
  background-color: #ffffff;
  color: #000000;
  font-weight: 700;
  font-size: 1rem;
}

.middle-content {
  padding-top: 100px;
  padding-bottom: 120px;
}

.main-text {
  font-size: 15px;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 40px auto;
  font-weight: 500;
}

.btn-back-to-top {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-back-to-top:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Bottom Section Styling */
.bottom-links {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.link-heading {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  display: inline-block;
  margin-right: 15px;
}

.footer-nav-list li:last-child {
  margin-right: 0;
}

.footer-nav-list a {
  color: #999999; /* Grey color for links */
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-nav-list a:hover {
  color: var(--main-color);
}

/* Adjustments for the right side alignment */
.network-col {
  text-align: right;
}

.footer-bottom-wrapper p {
  /* font-size: 210px; */
  line-height: 1.2;
  font-size: clamp(40px, 15vw, 210px);
}

.footer-bottom-section {
  position: relative;
  overflow: hidden;
}

.footer-bottom-wrapper {
  transform: translateY(200px);
  opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .network-col {
    text-align: left;
    margin-top: 20px;
  }
  .top-bar .col-md-3 {
    margin-bottom: 5px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .footer-bottom-wrapper p {
    font-size: 87px;
  }

  .middle-content {
    padding-top: 52px;
    padding-bottom: 52px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .footer-bottom-wrapper p {
    font-size: 87px;
  }

  .middle-content {
    padding-top: 52px;
    padding-bottom: 52px;
  }
}

@media (max-width: 575.98px) {
  .footer-bottom-wrapper p {
    font-size: 58px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .footer-bottom-wrapper p {
    font-size: 87px;
  }

}

