/* ========== Brand Fonts ========== */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #000000;
  color: #FFFFFF;
}

/* ==========================================
   GLOBAL BACKGROUND | AI RAIN DATA GRID
   ========================================== */
body {
  background-color: #000;
  background-image:
    linear-gradient(rgba(58,102,245,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,102,245,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  position: relative;
  overflow-x: hidden;
}

/* === Falling electro lines === */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(58,102,245,0.15) 0px,
      rgba(58,102,245,0.15) 2px,
      transparent 2px,
      transparent 80px
    );
  background-size: 2px 100px;
  background-repeat: repeat-x;
  background-position: 0 -100px;
  animation: dataRain 25s linear infinite;
  opacity: 0.35;
  z-index: -3;
  filter: blur(0.3px);
}

/* === Subtle blue haze pulse === */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle at 50% 80%,
    rgba(58,102,245,0.1),
    transparent 80%
  );
  animation: pulseField 12s ease-in-out infinite;
  z-index: -2;
  pointer-events: none;
}

/* === Animations === */
@keyframes dataRain {
  0% {
    background-position: 0 -100px;
  }
  100% {
    background-position: 0 100%;
  }
}

@keyframes pulseField {
  0%,100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.03);
  }
}

/* === Optional stronger glow === */
@media (prefers-color-scheme: dark) {
  body::before {
    opacity: 0.45;
    filter: blur(0.4px) brightness(1.3);
  }
}



/* ========== Navbar ========== */
/* ==========================================
   BOSSMADE.AI | NAVBAR with Electro Glow
   ========================================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: linear-gradient(180deg, #000 0%, #030712 100%);
  border-bottom: 1px solid rgba(58, 102, 245, 0.3);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 0 20px rgba(58, 102, 245, 0.05);
  overflow: hidden;
}

/* === Moving electro line (energy beam) === */
.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20%;
  width: 140%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(58, 102, 245, 0.9),
    rgba(0, 255, 255, 0.8),
    rgba(58, 102, 245, 0.9),
    transparent
  );
  filter: blur(1px);
  animation: electroMove 6s linear infinite;
  opacity: 0.9;
}

/* === Pulsing outer glow === */
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top center,
    rgba(58, 102, 245, 0.1),
    transparent 70%
  );
  opacity: 0.5;
  animation: glowPulse 8s ease-in-out infinite;
  pointer-events: none;
}

/* === Glow keyframes === */
@keyframes electroMove {
  0% { left: -40%; }
  100% { left: 100%; }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.4;
    box-shadow: 0 0 15px rgba(58, 102, 245, 0.3);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 35px rgba(58, 102, 245, 0.6);
  }
}

/* === Logo & nav link adjustments for glow theme === */
.navbar .logo img {
  height: 40px;
  filter: drop-shadow(0 0 6px rgba(58, 102, 245, 0.5));
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar a:hover {
  color: #3A66F5;
  text-shadow: 0 0 8px rgba(58, 102, 245, 0.8);
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
}

.logo img {
  height: 40px;
}

.hero img {
  height: 300px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #3A66F5;
}

/* ========== Burger Menu Icon ========== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  position: absolute;
  right: 25px; /* aligns burger to the right side */
  top: 25px;
  transition: all 0.3s ease;
}

.burger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Burger Active Animation */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* ========== Hero Section ========== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 75vh;
  padding: 0 20px;
  background: #000000;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  margin: 0;
  letter-spacing: 2px;
  color: #FFFFFF;
}

.hero-content h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #CCCCCC;
  margin: 10px 0 20px;
}

.hero-content p {
  max-width: 650px;
  color: #DDDDDD;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-btn {
  background-color: #3A66F5;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  padding: 15px 40px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #3358d4;
}

/* ========== Footer ========== */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111111;
  color: #FFFFFF;
  font-size: 0.9rem;
  margin-top: 50px;
}

/* ========== Mobile Menu ========== */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    text-align: center;
  }

  nav.active {
    max-height: 300px;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  nav a {
    font-size: 1.1rem;
    padding: 10px;
    display: block;
  }

  .navbar {
    padding: 15px 20px;
  }

  .logo img {
    height: 35px;
  }
}



/* ========== About Page ========== */
.about-hero {
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
  text-align: center;
  padding: 0px 20px 20px;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  color: #ffffff;
  letter-spacing: 1px;
}

.about-content h1 span {
  color: #3A66F5;
}

.about-content p {
  color: #CCCCCC;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 20px;
}

.about-values {
  background-color: #0d0d0d;
  padding: 40px 20px;
  text-align: center;
}

.about-values h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #3A66F5;
  margin-top: 20px;
}

.about-values p {
  max-width: 750px;
  margin: 15px auto;
  color: #DDDDDD;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
}

.stat h3 {
  font-size: 2rem;
  color: #3A66F5;
  margin-bottom: 5px;
}

.stat p {
  font-size: 1rem;
  color: #AAAAAA;
}

.services{
  color: #3A66F5;
}
/* ========== Responsive ========== */
@media (max-width: 768px) {
  .about-content h1 {
    font-size: 2.2rem;
  }
  .about-values h2 {
    font-size: 1.6rem;
  }
  .about-stats {
    flex-direction: column;
    align-items: center;
  }
}


/* ========== Services Page (Darker Version) ========== */

.services-hero {
  background: linear-gradient(180deg, #000000 0%, #050505 100%);
  text-align: center;
  padding: 100px 20px 70px;
  border-bottom: 1px solid #111;
}

.services-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  color: #ffffff;
  letter-spacing: 1px;
}

.services-hero h1 span {
  color: #3A66F5;
}

.services-hero p {
  max-width: 750px;
  margin: 20px auto;
  color: #9c9c9c;
  font-size: 1.05rem;
  line-height: 1.7;
}

.services-grid,
.bg-dark {
  background-color: #000000 !important;
}

/* ========== SERVICES PAGE (Color-Unified) ========== */

/* Hero Section */
.services-hero {
  background: linear-gradient(180deg, #000000 0%, #050505 100%);
  text-align: center;
  padding: 100px 20px 70px;
  border-bottom: 1px solid #111;
}

.services-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  color: #ffffff;
  letter-spacing: 1px;
}

.services-hero h1 span {
  color: #3A66F5; /* Bossmade Blue */
}

.services-hero p {
  max-width: 750px;
  margin: 20px auto;
  color: #9c9c9c;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Grid Background */
.services-grid,
.bg-dark {
  background-color: #000000 !important;
}

/* Service Cards */
.service-card {
  background: #0a0a0a;
  border-radius: 10px;
  border: 1px solid #111;
  padding: 45px 25px;
  text-align: center;
  color: #dcdcdc;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: inset 0 0 15px rgba(58,102,245,0.03);
}

.service-card h4 {
  color: #3A66F5; /* Unified Accent Blue */
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card p {
  color: #aaaaaa;
  font-size: 0.97rem;
  line-height: 1.6;
}

.service-card i {
  color: #3A66F5;
  background: rgba(58, 102, 245, 0.08);
  padding: 20px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-8px);
  border-color: #3A66F5;
  box-shadow: 0 0 25px rgba(58, 102, 245, 0.25);
}

.service-card:hover i {
  background: rgba(58, 102, 245, 0.2);
  color: #ffffff;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(180deg, #050505 0%, #000000 100%);
  text-align: center;
  padding: 100px 20px;
  border-top: 1px solid #111;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

.cta-section h2 span {
  color: #3A66F5;
}

.cta-section p {
  color: #9c9c9c;
  font-size: 1.05rem;
  margin: 20px auto 40px;
  max-width: 600px;
}

/* CTA Button */
.cta-section .btn-primary {
  background-color: #3A66F5;
  border: none;
  padding: 14px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
  background-color: #3358d4;
  transform: translateY(-2px);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 2.2rem;
  }

  .service-card {
    padding: 35px 20px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 2.2rem;
  }

  .service-card {
    padding: 35px 20px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}




/* ========== Contact Page ========== */
.contact-hero {
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
  text-align: center;
  padding: 0px 20px 70px;
}

.contact-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  color: #FFFFFF;
}

.contact-hero p {
  color: #CCCCCC;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 20px auto 0;
}

.contact-section {
  background-color: #0d0d0d;
  padding: 80px 40px;
  display: flex;
  justify-content: center;
}

.contact-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
}

.contact-info, .contact-form {
  flex: 1 1 400px;
  background: #111111;
  padding: 40px 30px;
  border-radius: 10px;
  border: 1px solid #1e1e1e;
  box-shadow: 0 0 25px rgba(0,0,0,0.2);
}

.contact-info h2, .contact-form h2 {
  color: #3A66F5;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
}

.contact-info p {
  color: #DDDDDD;
  line-height: 1.6;
}

.contact-info a {
  color: #3A66F5;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #333;
  background-color: #0d0d0d;
  color: #FFFFFF;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3A66F5;
  box-shadow: 0 0 6px rgba(58,102,245,0.4);
}

.contact-form button {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

/* ========== Map Section ========== */
.map-section {
  background-color: #000000;
  text-align: center;
  padding: 60px 20px;
}

.map-section h3 {
  font-family: 'Montserrat', sans-serif;
  color: #3A66F5;
  margin-bottom: 20px;
}

.map-section iframe {
  width: 90%;
  height: 400px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(58,102,245,0.2);
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info, .contact-form {
    width: 100%;
    padding: 30px 20px;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .map-section iframe {
    width: 100%;
    height: 300px;
  }
}


/* ========== Custom Hover Glow ========== */
.hover-glow {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-glow:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(58, 102, 245, 0.3);
}

/* ========== Navbar Styling Overrides ========== */
.navbar {
  background-color: #000000 !important;
  font-family: 'Inter', sans-serif;
}

.navbar-brand span {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: #cccccc !important;
  font-weight: 500;
  margin-left: 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #3A66F5 !important;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Make sure burger icon is visible on black background */
.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='rgba(255,255,255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* ===============================
   MOBILE RESPONSIVE (iPhone / iPad)
   =============================== */
@media (max-width: 768px) {
  .hero {
    padding: 40px 15px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content h2 {
    font-size: 1rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .cta-btn {
    width: 80%;
    padding: 14px 15px;
    font-size: 1rem;
  }

  footer {
    font-size: 0.85rem;
  }
}

/* ===============================
   iPhone Notch Safe Area
   =============================== */
@supports(padding: max(0px)) {
  body {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* ========== Navbar Mobile Visibility Fix ========== */
.navbar {
  background-color: #000000 !important;
  font-family: 'Inter', sans-serif;
  padding-top: max(20px, env(safe-area-inset-top)); /* adds iPhone notch padding */
  padding-bottom: 15px;
  min-height: 70px;
}

.navbar-brand img {
  height: 40px;
}

.navbar-toggler {
  padding: 10px;
  margin-right: 10px;
}

.navbar-toggler-icon {
  width: 28px;
  height: 28px;
}

/* Increase touch target area for iPhone users */
.navbar-nav .nav-link {
  padding: 12px 10px;
  font-size: 1rem;
}

@supports(padding: max(0px)) {
  body {
    padding-top: env(safe-area-inset-top);
  }
}

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Ensure burger is visible and functional */
.navbar-toggler {
  border: none;
  padding: 8px;
}

.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='rgba(255,255,255,0.9)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar {
  background-color: #000 !important;
  font-family: 'Inter', sans-serif;
  padding-top: max(15px, env(safe-area-inset-top));
  padding-bottom: 15px;
}

.navbar-nav .nav-link {
  color: #ccc !important;
  font-weight: 500;
  padding: 10px 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #3A66F5 !important;
}


nav {
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

nav.active {
  max-height: 300px;
  opacity: 1;
}

/* ========== Custom Bossmade Navbar ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 20px 40px;
  border-bottom: 1px solid #111;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.logo img {
  height: 40px;
}

/* Hide nav menu initially on mobile */
nav {
  transition: max-height 0.4s ease;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #3A66F5;
}

/* Burger Icon */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 25px;
  transition: all 0.3s ease;
}

.burger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Burger Active Animation */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* ========== Mobile Styles ========== */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    width: 100%;
    max-height: 0;
    overflow: hidden;
    text-align: center;
  }

  nav.active {
    max-height: 300px;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  nav a {
    display: block;
    font-size: 1.1rem;
    padding: 10px;
  }
}

/* ========== NAVBAR BASE ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 20px 40px;
  border-bottom: 1px solid #111;
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.logo img {
  height: 40px;
}

/* ======= NAVBAR VISIBILITY FIX ======= */

/* Default Desktop Nav (always visible) */
@media (min-width: 769px) {
  #nav-menu {
    display: block !important;
    position: static !important;
    background: none !important;
    width: auto !important;
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
  }

  #nav-menu ul {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-end;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
  }

  #nav-menu a {
    color: #ccc !important;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }

  #nav-menu a:hover,
  #nav-menu a.active {
    color: #3A66F5 !important;
    text-shadow: 0 0 8px rgba(58, 102, 245, 0.8);
  }
}

/* ==========================================
   BOSSMADE.AI | Responsive Navbar + Glow Fix
   ========================================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: linear-gradient(180deg, #000 0%, #030712 100%);
  border-bottom: 1px solid rgba(58, 102, 245, 0.3);
  position: sticky;
  top: 0;
  z-index: 10000; /* 🔼 ensure above pseudo-elements */
  box-shadow: 0 0 20px rgba(58, 102, 245, 0.05);
  overflow: visible;
}

/* Keep glowing beam + pulse */
.navbar::before,
.navbar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1; /* 🔽 push behind menu */
}
.navbar::before {
  background: radial-gradient(circle at top center, rgba(58, 102, 245, 0.1), transparent 70%);
  animation: glowPulse 8s ease-in-out infinite;
}
.navbar::after {
  bottom: 0;
  height: 2px;
  left: -20%;
  width: 140%;
  background: linear-gradient(90deg, transparent, rgba(58,102,245,0.9), rgba(0,255,255,0.8), rgba(58,102,245,0.9), transparent);
  filter: blur(1px);
  animation: electroMove 6s linear infinite;
}

/* Burger icon */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001; /* ensure clickable */
}
.burger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* Desktop nav */
#nav-menu {
  transition: all 0.3s ease;
}
#nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
#nav-menu a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
#nav-menu a:hover {
  color: #3A66F5;
  text-shadow: 0 0 8px rgba(58,102,245,0.8);
}

/* ==========================================
   MOBILE MENU EFFECTS
   ========================================== */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  #nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(58, 102, 245, 0.2);
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s ease, box-shadow 0.4s ease;
    opacity: 0;
    z-index: 9999;
  }

  #nav-menu.active {
    max-height: 300px;
    opacity: 1;
    box-shadow: 0 8px 25px rgba(58, 102, 245, 0.2);
  }

  #nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 25px 0;
  }

  #nav-menu a {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    color: #eaeaea;
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }

  /* Glowing underline effect for links */
  #nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, rgba(58,102,245,0.9), rgba(0,255,255,0.8));
    border-radius: 2px;
    transition: transform 0.4s ease;
  }
  #nav-menu a:hover::after {
    transform: translateX(-50%) scaleX(1);
  }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes electroMove {
  0% { left: -40%; }
  100% { left: 100%; }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}


/* ==========================================
   BOSSMADE.AI | Futuristic Electro Footer
   ========================================== */
.footer {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #030712 0%, #000 100%);
  font-family: 'Inter', sans-serif;
  text-align: center;
  border-top: 1px solid rgba(58, 102, 245, 0.25);
  box-shadow: 0 -5px 20px rgba(58, 102, 245, 0.05);
  overflow: hidden;
  padding-top: 40px;
}

/* === Animated electro beam (same concept as navbar) === */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 160%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 255, 0.8),
    rgba(58, 102, 245, 0.9),
    rgba(0, 255, 255, 0.8),
    transparent
  );
  filter: blur(1px);
  animation: footerBeam 8s linear infinite;
  opacity: 0.8;
}

/* === Subtle radial glow emanating upward === */
.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at bottom center,
    rgba(58, 102, 245, 0.15),
    transparent 70%
  );
  opacity: 0.4;
  animation: footerGlow 10s ease-in-out infinite;
  pointer-events: none;
}

/* === Footer Text Styling === */
.footer .navbar-brand span {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(58, 102, 245, 0.6);
}

.footer-links a {
  color: #999;
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.95rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links a:hover {
  color: #3A66F5;
  text-shadow: 0 0 6px rgba(58, 102, 245, 0.8);
}

.footer-social a {
  font-size: 1.4rem;
  color: #aaa;
  transition: color 0.3s ease, transform 0.2s ease, text-shadow 0.3s ease;
}

.footer-social a:hover {
  color: #3A66F5;
  transform: scale(1.15);
  text-shadow: 0 0 10px rgba(58, 102, 245, 0.9);
}

.footer p {
  color: #777;
  margin-top: 10px;
  font-size: 0.9rem;
}

/* === Keyframe Animations === */
@keyframes footerBeam {
  0% { left: -30%; }
  100% { left: 100%; }
}

@keyframes footerGlow {
  0%, 100% {
    opacity: 0.4;
    box-shadow: 0 0 15px rgba(58, 102, 245, 0.3);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 35px rgba(58, 102, 245, 0.6);
  }
}

/* === Responsive Tweaks === */
@media (max-width: 768px) {
  .footer {
    padding: 30px 15px;
  }
  .footer-links a {
    display: inline-block;
    margin: 6px 8px;
  }
  .footer-social a {
    font-size: 1.3rem;
  }
}



/* Burger Animation */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}


/* ==========================================
   BOSSMADE.AI | Intelligent Animated Dividers
   ========================================== */

.ai-divider {
  position: relative;
  width: 100%;
  height: 100px;
  background: radial-gradient(circle at center,
    rgba(20, 40, 90, 0.3) 0%,
    rgba(0, 0, 0, 1) 100%);
  overflow: hidden;
  margin: 100px 0;
  border-top: 1px solid rgba(58,102,245,0.4);
  border-bottom: 1px solid rgba(58,102,245,0.2);
  box-shadow: inset 0 0 25px rgba(58,102,245,0.2);
}

/* ===== Common moving pulse ===== */
.ai-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(58,102,245,0.8),
    rgba(255,255,255,0.9),
    rgba(58,102,245,0.8),
    transparent);
  filter: blur(8px);
  animation: aiPulseRight 6s linear infinite;
  opacity: 0.9;
}

/* ===== Animated grid overlay ===== */
.ai-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(90deg, rgba(58,102,245,0.08) 0 2px, transparent 2px 10px),
    repeating-linear-gradient(0deg, rgba(58,102,245,0.06) 0 2px, transparent 2px 10px);
  background-size: 100px 100px;
  animation: gridMove 15s linear infinite;
  opacity: 0.4;
}

/* ===== Variant 2: reverse pulse + scanning line ===== */
.ai-divider.variant-2::before {
  left: auto;
  right: -250px;
  background: linear-gradient(270deg,
    transparent,
    rgba(255,255,255,0.9),
    rgba(58,102,245,0.8),
    transparent);
  animation: aiPulseLeft 7s linear infinite;
}

.ai-divider.variant-2::after {
  background-image: 
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(-45deg, rgba(58,102,245,0.06) 0 1px, transparent 1px 8px);
  background-size: 80px 80px;
  animation: gridMoveAlt 12s linear infinite;
}

/* ===== Variant 3: bi-directional neural pulse ===== */
.ai-divider.variant-3::before {
  width: 200px;
  background: linear-gradient(90deg,
    transparent,
    rgba(30,200,255,0.9),
    rgba(58,102,245,1),
    rgba(30,200,255,0.9),
    transparent);
  animation: aiPulseBoth 5s ease-in-out infinite;
}

.ai-divider.variant-3::after {
  background-image:
    repeating-linear-gradient(0deg, rgba(58,102,245,0.05) 0 2px, transparent 2px 8px),
    repeating-linear-gradient(90deg, rgba(30,200,255,0.05) 0 2px, transparent 2px 8px);
  background-size: 120px 120px;
  animation: circuitFlow 10s linear infinite;
}

/* ==========================================
   AI DIVIDER - VARIANT 4 | FUTURISTIC ENERGY CONDUIT
   ========================================== */

.ai-divider.variant-4 {
  position: relative;
  width: 100%;
  height: 5px; /* 5px taller than standard */
  background: radial-gradient(
    circle at center,
    rgba(10, 20, 50, 0.3) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  overflow: hidden;
  margin: 0px 0;
  border-top: 1px solid rgba(58, 102, 245, 0.3);
  border-bottom: 1px solid rgba(58, 102, 245, 0.3);
  box-shadow: inset 0 0 35px rgba(58, 102, 245, 0.25),
              0 0 25px rgba(58, 102, 245, 0.15);
  filter: contrast(1.2);
}

/* Moving holographic gradient layer */
.ai-divider.variant-4::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(58,102,245,0.1) 0%,
    rgba(0,255,255,0.4) 20%,
    rgba(255,255,255,0.1) 40%,
    rgba(58,102,245,0.1) 60%,
    rgba(0,255,255,0.4) 80%,
    rgba(58,102,245,0.1) 100%
  );
  animation: holoMove 8s linear infinite;
  background-size: 300% 100%;
  opacity: 0.4;
  filter: blur(1px);
}

/* Central pulse core */
.ai-divider.variant-4::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0,255,255,0.9),
    rgba(58,102,245,1),
    rgba(0,255,255,0.9),
    transparent
  );
  box-shadow: 0 0 25px rgba(0,255,255,0.7),
              0 0 50px rgba(58,102,245,0.4);
  animation: corePulse 4s ease-in-out infinite;
  opacity: 0.8;
}

/* Glow pulse animation */
@keyframes corePulse {
  0%, 100% {
    opacity: 0.7;
    box-shadow: 0 0 20px rgba(58,102,245,0.4),
                0 0 50px rgba(0,255,255,0.2);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 35px rgba(0,255,255,0.8),
                0 0 75px rgba(58,102,245,0.6);
  }
}

/* Holographic wave movement */
@keyframes holoMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

/* Scroll fade-in */
.ai-divider.variant-4 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.ai-divider.variant-4.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ai-divider.variant-4 {
    height: 5px;
    margin: 70px 0;
  }
}


/* ===== Keyframes ===== */
@keyframes aiPulseRight {
  0% { left: -250px; }
  100% { left: 110%; }
}
@keyframes aiPulseLeft {
  0% { right: -250px; }
  100% { right: 110%; }
}
@keyframes aiPulseBoth {
  0%,100% { left: 0%; }
  50% { left: 80%; }
}
@keyframes gridMove {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 100px 0, 0 100px; }
}
@keyframes gridMoveAlt {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: -80px 0, 0 -80px; }
}
@keyframes circuitFlow {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 120px 0, 0 120px; }
}

/* Fade in on scroll */
.ai-divider {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.ai-divider.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .ai-divider { height: 70px; margin: 70px 0; }
}


/* ==========================================
   BOSSMADE.AI | Back to Top Button (AI Glow)
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(58, 102, 245, 0.1);
  color: #3A66F5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(58, 102, 245, 0.2);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 9999;
}

/* Show on Scroll */
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Hover Effect */
.back-to-top:hover {
  background: rgba(58, 102, 245, 0.3);
  box-shadow: 0 0 25px rgba(58, 102, 245, 0.8);
  color: #fff;
  transform: scale(1.1);
}

/* 🌌 AI Glow Pulse Effect */
.back-to-top::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(58, 102, 245, 0.4) 0%,
    rgba(58, 102, 245, 0) 70%
  );
  opacity: 0;
  transform: scale(0.8);
  animation: aiGlow 3s infinite ease-in-out;
  z-index: -1;
}

@keyframes aiGlow {
  0%, 100% {
    opacity: 0;
    transform: scale(0.8);
    box-shadow: 0 0 0 rgba(58, 102, 245, 0);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.5);
    box-shadow: 0 0 25px rgba(58, 102, 245, 0.7);
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
}

/* ==========================================
   BOSSMADE.AI | CONTACT SECTION
   ========================================== */
.contact {
  padding: 100px 0;
  background: radial-gradient(circle at top, rgba(10, 20, 40, 0.6), #000 80%);
  position: relative;
  overflow: hidden;
}

.contact h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
}

.contact p {
  color: #bbb;
  text-align: center;
  max-width: 700px;
  margin: 10px auto 40px;
  line-height: 1.6;
}

.contact .info-item {
  background: rgba(15, 15, 25, 0.8);
  border: 1px solid rgba(58, 102, 245, 0.2);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(58, 102, 245, 0.05);
}

.contact .info-item:hover {
  border-color: rgba(58, 102, 245, 0.8);
  box-shadow: 0 0 25px rgba(58, 102, 245, 0.4);
}

.contact .info-item i {
  font-size: 1.8rem;
  color: #3A66F5;
  margin-right: 15px;
}

.contact .info-item h3 {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact .info-item p {
  color: #ccc;
  margin: 0;
}

/* FORM STYLING */
.contact-form {
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(58, 102, 245, 0.25);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(58, 102, 245, 0.1);
  transition: box-shadow 0.3s ease;
}

.contact-form:hover {
  box-shadow: 0 0 45px rgba(58, 102, 245, 0.3);
}

.contact-form .form-control {
  background: rgba(20, 20, 30, 0.9);
  border: 1px solid rgba(58, 102, 245, 0.2);
  color: #fff;
  border-radius: 6px;
  padding: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: rgba(58, 102, 245, 0.9);
  box-shadow: 0 0 10px rgba(58, 102, 245, 0.4);
  background: rgba(15, 15, 25, 0.95);
}

.contact-form textarea {
  resize: none;
}

.contact-form .cta-btn {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(90deg, #3A66F5, #00FFFF);
  color: #fff;
  border: none;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form .cta-btn:hover {
  background: linear-gradient(90deg, #00FFFF, #3A66F5);
  box-shadow: 0 0 25px rgba(58, 102, 245, 0.7);
}

/* Form feedback text */
.form-status {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #3A66F5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact .info-item {
    text-align: left;
  }
}

