/* Global Styles */
body {
  background-color: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Navigation */
.nav_color{
  background-color: var(--secondary-color);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;

}
 .navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

.navbar_items {
  background-color: #101010;
  border: 1px solid #242424;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px;
  margin-right: 20px; /* Space between nav items and button */
}

.Nav_items {
  color: white !important;
  padding: 8px 15px;
}

.Nav_items:hover {
  color: #ddd !important;
}



.navbar_btn {
  background-color: #000;
  color: #ffffff;
  border: 1px solid #FF8B00;
  border-radius: 12px;
  padding: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar_btn:hover {
  background-color: #FF8B00;
  color: #000;
}

/* Align nav items and button to the right */
.navbar-collapse {
  justify-content: flex-end;
}

/* Mobile menu styling */
@media (max-width: 991.98px) {
  .navbar_items {
      background-color: transparent;
      border: none;
      padding: 0;
      margin: 0;
      gap: 0;
  }
  
  .Nav_items {
      color: #ffffff !important;
      padding: 10px 15px;
  }
  
  .Nav_items:hover {
      color: #FF8B00 !important;
  }
  
  .navbar_btn {
      margin-top: 10px;
      display: inline-block;
      width: 100%;
      text-align: center;
  }
}
/* White hamburger icon */
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Collapse content center-aligned on mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .navbar_items {
    padding: 0;
    margin: 1rem 0;
  color: #ffffff!important;
  }
  
  .navbar_btn {
    width: 100%;
    max-width: 300px;
    margin: 1rem auto 0;
  }
 

}   

.contact-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Header */
header {
  padding: 4rem 0;
}

header h1 {
  font-weight: 300;
  letter-spacing: -1px;
}

header .lead {
  color: rgba(255, 255, 255, 0.6);
}

/* Form Styles */
.form-section {
  padding: 2rem 0 4rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.custom-input {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.8rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.custom-input:focus {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  box-shadow: none;
}

.custom-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.send-btn {
  background: #FF8B00;
  color: #000;
  padding: 0.8rem 3rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.send-btn:hover {
  background: #FF8B00;
  transform: translateY(-2px);
}

/* Footer */



.social-icons a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

.subscribe-btn {
  background: #E5D3B7;
  color: #000;
  border: none;
}

.subscribe-btn:hover {
  background: #FF8B00;
  color: #000;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar-nav {
      margin: 1rem 0;
  }
  
  .nav-link {
      margin: 0.5rem 0;
  }
  
  .contact-btn {
      width: 100%;
      margin-top: 1rem;
  }
  
  header {
      padding: 2rem 0;
  }
  
  .form-section {
      padding: 1rem 0 2rem;
  }
}
/* footer */

.footer {
  margin-top: 6rem;
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: px;
  margin-bottom: 2rem;
}

.footer-address {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.footer-links {
  margin-bottom: 2rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 1rem;
}

.footer-copyright {
  color: #666;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .pricing-header h1 {
      font-size: 2rem;
  }
  
  .pricing-card {
      margin-bottom: 2rem;
  }
  
  .navbar-collapse {
      background-color: rgba(0, 0, 0, 0.95);
      padding: 1rem;
      border-radius: 8px;
  }
}


.Bg_glow::before{
  content: "";
  background: white;
  position: absolute;
  width: 50%;
  height: 270px;
  filter: blur(245px);
  left: 266px;
  top: 100%;
  z-index: -1;
  opacity: 0.5;
}

