/* === Modern & Bold Color Variables === */
/* === Natural & Organic Color Variables === */
:root {
    /* Core Palette - Natural & Organic */
    --clr-bg-primary: #ffffff;        /* Clean white background */
    --clr-bg-secondary: #f1f8f1;      /* Very subtle mint green for sections */
    --clr-bg-card: #ffffff;           /* White cards, using shadows for depth */

    --clr-primary: #198754;           /* Natural, calming green (Primary brand color) */
    --clr-accent: #fd7e14;            /* Warm, energetic orange (for CTAs & accents) */

    --clr-text-primary: black;      /* Dark gray for primary text (easier on eyes than pure black) */
    --clr-text-secondary: #5a5a5a;    /* Medium gray for secondary text */
    --clr-text-dark: white;         /* For text on light backgrounds */

    --clr-border: #cee0ce;            /* Very light green/gray for subtle borders */
    --clr-border-highlight: #198754;  /* Green border highlight */

    --clr-success: #198754;           /* Green for success messages */
    --clr-warning: #fd7e14;           /* Orange for warnings/notices */

    /* Effects - Natural and Subtle */
    --clr-neon-glow: 0 0 25px #198754; /* Glows are removed for a natural feel */
    --clr-gold-glow: 0 0 25px #ddd;  /* Glows are removed for a natural feel */
    
    /* New variable for soft shadows instead of glows */
    --shadow-natural: 0 0.5rem 1rem rgba(25, 135, 84, 0.1);
}

*{
  font-style:unset;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
body {
        padding-top: 60px; /* prevent content from hiding behind navbar */
        background-color: var(--clr-bg-primary);
        background-image: url("tall_ocean\ -\ 30-08-2025\ 21-34-58.png");
        background-size: cover;
      background-repeat: no-repeat;
      position: relative;

      }
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}
.custom-bg .nav-link.active {
  color: var(--clr-primary); /* Using primary cyan instead of gold */
  font-weight: 600;
}

.navbar{
  transition: top 0.3s;
  min-height: 48px;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.custom-bg {
    background-color: var(--clr-bg-secondary); /* deep black */
  }
.custom-bg2{
  background-color: var(--clr-primary); /* Using primary cyan instead of gold */
  color: var(--clr-text-dark); /* dark text for contrast */
}

.btn-lg:hover{
  background-color: var(--clr-primary);
  color: var(--clr-text-dark);
  box-shadow: var(--clr-neon-glow); /* neon effect uses primary */
  
}

.custom-btn:hover{
  box-shadow: var(--clr-neon-glow); /* subtle shadow uses primary */
  background-color: var(--clr-primary);
  color: var(--clr-text-dark); /* dark text for contrast */
}

  .custom-bg .navbar-brand {
    color: var(--clr-primary); /* Using primary cyan instead of gold */
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-right: -10%;
    
  }

  .custom-bg .navbar-brand:hover {
    color: var(--clr-accent);
  }

  .custom-bg .nav-link {
    color: var(--clr-primary); /* Using primary cyan instead of gold */
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    
  }

  .custom-bg .nav-link:hover {
    color: var(--clr-accent);
  }

  /* vertical line (separators) */
  .vl {
    border-left: 1px solid var(--clr-border);
    height: 20px;
    margin: auto 10px;
  }

  @media (max-width: 991px){
    .vl{
      display: none;
    }
  }
  
/* hero section */
  .hero-bg {
    /* background-image: url("blue hydra.png"); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  }

  /* .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
  } */

  .neon-text {
    color: white; /* Using primary cyan instead of green */
    text-shadow: var(--clr-primary) 0 0 5px, var(--clr-primary) 0 0 10px, var(--clr-primary) 0 0 20px, var(--clr-primary) 0 0 40px;
    
  }

   .about{
    color: var(--clr-primary); /* Using primary cyan instead of green */
    text-shadow: none;
  }

  .neon-btn {
    background-color: var(--clr-primary); /* Using primary cyan instead of green */
    color: var(--clr-text-dark);
    font-weight: 600;
    border: none;
  }
/* about secton */
  .about-bg {
    position: relative;
    z-index: 1;
    color: #fff; /* white text for contrast */
   
  }

  #about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* dark overlay */
  z-index: 0;
}

  /* About section background + canvas */
    #about{
      position: relative;
      /* background-image: url("piclumen-1756496574760.png"); */
      background-size: cover;
      margin-top: 6rem; /* Adjust value as needed */
      background-repeat: no-repeat;
      position: relative;
      overflow: hidden;
      color: var(--clr-text-primary);
      padding: 5rem 0;
      height: 100vh;
      
    }
   
 @media (max-width: 991px){
    #about{
      height: auto;
    }
  }
    /* #bouncingBalls {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    #about .container{
      position: relative;
      z-index: 1;  keeps text and cards above canvas 
    }
  .align-items-center {
    align-items: center;  vertical centering 
  } */

  .text-center {
    text-align: center;
  }

   .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
  } 

  .custom-card {
    background-color: var(--clr-bg-card); /* dark gray */
    opacity: 0.95;
    color: var(--clr-text-primary);
    margin: 20px;
    border: none;
    transition: transform 0.1s ease;
    border: 1px solid var(--clr-border); /* subtle border */
    
  }
  .custom-card:hover {
  transform: translateY(-15px);
  /* border-radius: 0 0 10% 10%; */
  box-shadow: var(--clr-neon-glow) !important; /* Uses primary glow */
  border: 1px solid var(--clr-border-highlight); /* primary border */
  }

  .pricing-section {
    /* background-color: var(--clr-bg-secondary); */
    /* background-image: url("images/bitcoin.jpg"); */
    /* background-position: center; */
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  /* z-index: 1; */
  height: auto; /* Fix: let content define height */
  min-height: 100vh; /* Optional: ensures it fills the screen if content is short */
  padding-bottom: 2rem; /* Add space for FAQ and footer */
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /* background: rgba(0, 0, 0, 0.7); */
  z-index: -1;
}


  .pricing-card {
  background:rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--clr-text-dark);
}

.pricing-card:hover {
  box-shadow: 0 0 20px #198754; /* RGBA using primary color */
}

.pricing-card h3 {
  color: var(--clr-primary); /* Using primary cyan for titles */
  font-weight: bold;
}

.pricing-card ul li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.pricing-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, white, transparent);
  margin: 1.5rem 0;
  opacity: 0.8;
}


.pricing-card.premium {
  border: 1px solid var(--clr-primary); /* Using primary cyan */
  background: rgba(0, 0, 0, 0.95);
}

  

#faq h2 {
  
  font-size: 2.5rem;
  color: var(--clr-border-highlight);
  margin-bottom: 20px;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-button {
  background: transparent !important;
  color: white !important;
  font-weight: 500;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: var(--clr-text-dark);
}

  

    /* footer */
    .site-footer {
  background: var(--clr-bg-secondary);
  color: var(--clr-text-secondary);
  padding: 30px 20px;
  text-align: center;
}

.footer-social {
  margin-bottom: 15px;
}

.footer-social a{
  margin: 0 12px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.3);
}

.footer-bottom {
  font-size: 13px;
  color: #777;
}

.card {
  background: rgba(0, 0, 0, 0.3); 
  /* Black with 30% opacity */
  border: none;
  color: var(--clr-text-dark);  /* keep text readable */
}

.display-1{
    opacity: 0;
    filter: blur(10px);
    transform: translatex(-50%);
    transition: 1s;
    transition-delay: 0.5s;
}
.lead{
    opacity: 0;
    filter: blur(10px);
    transform: translatex(-50%);
    transition: 1s;
    transition-delay: 0.8s;
}

.card{
    opacity: 0;
    filter: blur(10px);
    transform: translatey(20%);
    transition: 1s;
    transition-delay: 0.1s;
}

.show{
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.social-icon-box {
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(25,135,84,0.08);
}

.social-icon-box:hover {
  box-shadow: 0 0 12px #198754;
  transform: translateY(-4px) scale(1.08);
}

.about-bg .about-content {
  background: linear-gradient(90deg, rgba(0,0,0,0.7), rgba(25,135,84,0.3));
  padding: 2rem;
  border-radius: 16px;
  color: #fff;
}

@media (max-width: 991px) {
  .pricing-section,
  #about {
    height: auto !important;
    padding-bottom: 2rem;
  }
  #faq {
    padding: 1.5rem 0 !important;
  }
  .accordion {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .pricing-section {
    height: auto !important;
    padding-bottom: 2rem;
  }
  #faq {
    padding-bottom: 2rem;
  }
}