/* Hero background and layout updates */
.navbar-hero {
    width: 100%;
    position: relative;
    padding: 2rem 1rem 4rem;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
}

/* Position hero text block at bottom-left but keep its lines centered */
.navbar-hero .hero-content {
    position: absolute;
    left: 3rem;
    bottom: -3rem;
    max-width: 680px;
    text-align: center;
}

.navbar-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 360px 1fr 360px;
    gap: 2rem;
    align-items: center;
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
    flex: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.navbar-hero .hero-title {
    font-size: 1.8rem;
    margin-bottom: 0rem;
    line-height: 1.2;
   background: -webkit-linear-gradient(left, red,orange,yellow,green,blue,indigo,violet);
  background: -moz-linear-gradient(left, red,orange,yellow,green,blue,indigo,violet,red);
  background: -o-linear-gradient(left, red,orange,yellow,green,blue,indigo,violet,red);
  background: -ms-linear-gradient(left, red,orange,yellow,green,blue,indigo,violet,red);
  background: linear-gradient(to right, red,orange,yellow,green,blue,indigo,violet,red);
        background-repeat:repeat-x;
  -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    font-weight: 800;
}

.navbar-hero .hero-subtitle.big {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0rem;
    font-weight: 600;
}

.navbar-hero .hero-subtitle.small {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.navbar-hero .buy-now-large {
    background: #84bfff;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2.2rem;
    font-size: 1.05rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: 0px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.navbar-hero .buy-now-large:hover {
    background: #6fb5ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Dedicated hero background class so markup can opt-in */
.hero-bg-banner {
    background: url('./images/img/banner.png') no-repeat center center;
    background-size: cover;
}

@media (max-width: 1024px) {
  .hero-bg-banner {
    background-image: url('./images/tab-banner.png');
    background-position: center top;
  }
  .navbar-hero {
    min-height: 70vh;
    padding: 1.5rem 1rem 3rem;
  }
  .navbar-hero .hero-content {
    left: 2rem;
    bottom: -2rem;
    max-width: 560px;
  }
}

@media (max-width: 600px) {
  .hero-bg-banner {
    background-image: url('./images/mob-banner.png');
    background-position: center top;
  }
}

/* Responsive adjustments */
@media (max-width: 980px) {
    .hero-content {
        padding-top: 167px !important;
    }
    .hero-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    .hero-hex { display: none; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 1.2rem !important;  }
    
    .hero-subtitle.big { font-size: 1.0rem !important; }
    
    .hero-subtitle.small { font-size: 0.95rem !important;
    margin-bottom: 2rem !important;
    }
    
    .navbar-hero {
        min-height: 70vh;
        padding: 1rem 0.5rem 3rem;
    }
    .hero-content { padding-top: 0; }
    .hero-wrapper { grid-template-columns: 1fr; }
    /* On small screens, center text and let it flow naturally so button follows underneath */
    .navbar-hero .hero-content {
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        width: auto;
        max-width: none;
        margin: 0 0px 0px;
        text-align: center;
    }
}

@media (max-width: 320px) {
  .navbar-hero {
    padding: 0.75rem 0.5rem 2rem;
    min-height: 60vh;
  }
  .navbar-hero .hero-content {
    margin: 0;
  }
  .navbar-hero .hero-title {
    font-size: 1.0rem !important;
  }
  .navbar-hero .hero-subtitle.big {
    font-size: 0.9rem !important;
  }
  .navbar-hero .hero-subtitle.small {
    font-size: 0.8rem !important;
    margin-bottom: 1.25rem !important;
  }
  .navbar-hero .buy-now-large {
    width: 100%;
    max-width: 260px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}


/* Gradient background */
.custom-navbar {
  background: linear-gradient(90deg, #240046, #3c096c, #5a189a, #7b2cbf);
  padding: 10px 30px;
}

/* Navbar links */
.navbar-nav .nav-link {
  color: #ddd !important;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0 10px;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #fff !important;
}

/* Email button */
.email-btn {
  background: #a64dff;
  color: #fff;
  border-radius: 6px;
  padding: 6px 16px;
  font-weight: 600;
  transition: background 0.3s;
}

.email-btn:hover {
  background: #9b30ff;
}

/* Social icons */
.social-icons a {
  color: #fff;
  font-size: 18px;
  margin-left: 10px;
  text-decoration: none;
  border: 1px solid #7b2cbf;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #a64dff;
  border-color: #a64dff;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .navbar-nav {
    text-align: center;
  }

  .social-icons {
    margin-top: 10px;
  }
}




.b-text{
  margin-bottom: -100px;

}