@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

@font-face {
  font-family: 'avenir-lt-w01_35-light1475496';
  font-style: normal;
  font-weight: 400;
  src: url(//static.parastorage.com/fonts/v2/af36905f-3c92-4ef9-b0c1-f91432f16ac1/v1/avenir-lt-w05_35-light.woff2) format('woff2');
  unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+0218-021B, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+0394, U+03A9, U+03BC, U+03C0, U+1E9E, U+20B9-20BA, U+20BC-20BD, U+2113, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+F8FF, U+FB01-FB02;
  font-display: swap;
}

:root {
  --bg-dark: #07090e;
  --bg-card: rgba(15, 22, 36, 0.75);
  --bg-card-hover: rgba(23, 33, 54, 0.85);
  --primary-cyan: #00f2fe;
  --primary-blue: #4facfe;
  --accent-purple: #7f00ff;
  --accent-gold: #ffb703;
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --border-glow: rgba(0, 242, 254, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --font-heading: 'avenir-lt-w01_35-light1475496', sans-serif;
  --font-body: 'avenir-lt-w01_35-light1475496', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: var(--font-heading);
}

a {
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  text-decoration: none;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.custom-navbar {
  background: #a3a3a3;
  /* Solid grey background to match the screenshot */
  padding: 1rem 0;
  transition: all 0.4s ease;
  z-index: 1050;
}

.custom-navbar.scrolled {
  padding: 1rem 0;
  background: #a3a3a3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.nav-link {
  color: #ffffff !important;
  font-family: 'avenir-lt-w01_35-light1475496', sans-serif;
  font-weight: 400;
  font-size: 18px;
  padding: 0.5rem 1rem !important;
  transition: opacity 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  opacity: 0.8;
}

.btn-nav-action {
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
  color: #000 !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
  border: none;
}

.btn-nav-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.5);
  color: #000 !important;
}

.navbar-toggler {
  border: 1px solid var(--border-subtle);
  padding: 0.5rem;
  color: #fff;
}

.navbar-toggler:focus {
  box-shadow: 0 0 10px var(--border-glow);
}

/* ==========================================================================
   Hero Section with Video Background
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.video-bg-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(7, 9, 14, 0.4) 0%, rgba(7, 9, 14, 0.9) 100%),
    linear-gradient(180deg, rgba(7, 9, 14, 0.6) 0%, rgba(7, 9, 14, 0.95) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 3rem 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--primary-cyan);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

.hero-badge i {
  font-size: 0.75rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 30%, var(--primary-cyan) 70%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-glow {
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
  color: #05070a;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
}

.btn-primary-glow:hover {
  color: #05070a;
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.6);
}

.btn-outline-glow {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-outline-glow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
  transform: translateY(-3px);
}

/* ==========================================================================
   Ticker / Marquee Bar
   ========================================================================== */
.ticker-wrap {
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 242, 254, 0.08), rgba(127, 0, 255, 0.08));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-move {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-main);
  padding: 0 2rem;
}

.ticker-item i {
  color: var(--primary-cyan);
  font-size: 0.7rem;
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ==========================================================================
   Section Styling
   ========================================================================== */
.section-padding {
  padding: 6rem 0;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 4rem;
}

.sub-title-glow {
  color: var(--primary-cyan);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-cyan), var(--accent-purple));
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* ==========================================================================
   Current Projects Section
   ========================================================================== */
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-cyan), var(--primary-blue), var(--accent-purple));
}

.project-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 242, 254, 0.15);
}

.pdf-preview-box {
  background: rgba(7, 9, 14, 0.6);
  border: 1px dashed rgba(0, 242, 254, 0.3);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.pdf-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(0, 242, 254, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-cyan);
  font-size: 2.2rem;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(12px);
}

.about-highlight-card {
  background: rgba(0, 242, 254, 0.03);
  border: 1px solid rgba(0, 242, 254, 0.15);
  border-radius: 16px;
  padding: 1.8rem;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

.about-highlight-card:hover {
  background: rgba(0, 242, 254, 0.08);
  border-color: var(--primary-cyan);
}

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary-cyan);
  line-height: 1;
  margin-bottom: 0.3rem;
}

/* ==========================================================================
   Members Benefits Section
   ========================================================================== */
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 40px rgba(0, 242, 254, 0.2);
}

.benefit-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.benefit-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.benefit-card:hover .benefit-img-wrap img {
  transform: scale(1.08);
}

.benefit-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(7, 9, 14, 0.8);
  backdrop-filter: blur(8px);
  color: var(--primary-cyan);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  border: 1px solid rgba(0, 242, 254, 0.3);
}

.benefit-body {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.benefit-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.benefit-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  backdrop-filter: blur(12px);
}

.info-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-cyan);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}

.form-control-custom {
  background: rgba(7, 9, 14, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control-custom:focus {
  background: rgba(7, 9, 14, 0.8);
  border-color: var(--primary-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
  color: #fff;
  outline: none;
}

.form-control-custom::placeholder {
  color: #64748b;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-section {
  background: #040508;
  padding: 4rem 0 2rem;
}

.footer-logo {
  max-height: 40px;
  margin-bottom: 1.2rem;
}

.footer-links a {
  color: var(--text-muted);
  margin-right: 1.5rem;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 3rem;
  padding-top: 1.8rem;
  color: #64748b;
  font-size: 0.88rem;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: #ffffff;
  color: #33343F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  color: #000;
  background: #f0f0f0;
}

/* Members Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 45px;
}

.box-1 {
  grid-column: 1;
  grid-row: 1;
}

.box-2 {
  grid-column: 1;
  grid-row: 2;
}

.box-3 {
  grid-column: 1;
  grid-row: 3;
}

.box-4 {
  grid-column: 2;
  grid-row: 1;
}

.box-5 {
  grid-column: 2;
  grid-row: 2 / span 2;
}

.benefit-box {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.benefit-box-icon {
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.benefit-box-text {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

/* Contact Us Form */
.contact-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
  padding: 10px 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s ease;
}

.contact-input::placeholder {
  color: #ffffff;
  opacity: 0.9;
}

.contact-input:focus {
  border-bottom-color: #a3a3a3;
}

.contact-submit-btn {
  background: #ffffff;
  color: #33343F;
  border: none;
  width: 100%;
  padding: 12px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.contact-submit-btn:hover {
  background: #e0e0e0;
}

/* Structural Classes replacing inline styles */
.navbar-brand {
  gap: 15px;
}

.navbar-brand img {
  height: 40px;
}

.linkedin-icon img {
  height: 40px;
}

.current-projects-section {
  background-image: url('../images/current-projects.jpg');
  background-size: cover;
  background-position: center;
  min-height: 450px;
  display: flex;
  align-items: center;
  background-color: #a3a3a3;
}

.projects-title {
  font-weight: 400;
  font-size: 28px;
}

.about-section {
  position: relative;
  overflow: hidden;
}

.section-bg-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.about-title {
  font-weight: 400;
  font-size: 32px;
}

.about-text {
  font-size: 16px;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 25px;
  line-height: 1.6;
}

.crypto-ecosystem-section {
  position: relative;
  text-align: center;
}

.crypto-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 60px 0;
}

.crypto-title {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 4px;
  word-spacing: 6px;
}

.members-benefits-section {
  background-color: #33343F;
  padding: 80px 0;
}

.benefits-container {
  max-width: 900px;
}

.benefits-icon {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.benefits-title {
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 6px;
}

.contact-section {
  background-color: #33343F;
  padding: 60px 0;
}

.contact-container {
  max-width: 100%;
  padding: 0;
  background-color: #434459;
}

.contact-box {
  padding: 70px 50px;
}

.contact-title {
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 2px;
}

.contact-text {
  font-size: 16px;
  margin-bottom: 25px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.contact-text:last-child {
  margin-bottom: 0;
}

.contact-map {
  width: 100%;
}

.contact-map iframe {
  border: 0;
  display: block;
  filter: invert(90%) hue-rotate(180deg) contrast(85%);
}

.footer-section {
  background-color: #33343F;
  padding: 20px 0;
}

/* Responsive Overrides */
.btn-download-pill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 6px 6px 24px;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 50px;
  color: #ffffff;
  font-family: 'avenir-lt-w01_35-light1475496', sans-serif;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-download-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.btn-download-pill .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #a3a3a3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-left: 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-download-pill:hover .icon-circle {
  background: #f0f0f0;
  color: #555;
}

@media (max-width: 991px) {
  .custom-navbar .navbar-collapse {
    background: rgba(7, 9, 14, 0.98);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 22px 0px;
    margin-top: 1rem;
  }

  .nav-link::after {
    display: none;
  }

  .btn-nav-action {
    display: inline-block;
    margin-top: 1rem;
    text-align: center;
  }

  .section-bg-image {
    min-height: 350px;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 4rem 0;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-primary-glow,
  .btn-outline-glow {
    width: 100%;
    justify-content: center;
  }

  .section-bg-image {
    min-height: 400px;
  }

  /* Fix logo cutting off in header */
  .navbar-brand img {
    max-width: 100%;
    height: auto;
    max-height: 40px;
  }

  /* Fix video banner getting cropped */
  .hero-section {
    min-height: 60vh;
  }
  .video-bg-container video {
    object-fit: contain;
    background-color: #000;
  }

  /* Fix Members Benefits boxes on mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 30px;
  }
  
  .box-1, .box-2, .box-3, .box-4, .box-5 {
    grid-column: 1;
    grid-row: auto;
  }
}