/* --- GLOBAL RESET & DARK MODE BASE --- */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #e0e0e0; 
  line-height: 1.6;
  background-color: #011120; 
  scroll-behavior: smooth;
}

/* --- TYPOGRAPHY & COLORS --- */
h1, h2, h3 {
  color: #ffffff; 
  font-weight: bold;
  margin-top: 0;
  letter-spacing: 0.5px;
}

.highlight-text { color: #00E5FF; }

/* --- NAVIGATION --- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: #011120;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 229, 255, 0.3);
  box-shadow: 0 2px 15px rgba(0, 229, 255, 0.1);
}

/* Container for Logo + Text */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 15px; /* Space between logo and text */
  text-decoration: none; /* In case you want to link it to home */
}

/* The Logo Image in Header */
.nav-logo-img {
    height: 100px; /* Adjust this number to make logo bigger/smaller */
    width: auto;
    filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.3));
}

.nav-logo-text {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: white;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-item {
  color: #e0e0e0;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.nav-item:hover {
  color: #00E5FF;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.8);
}

/* --- HERO SECTION --- */
.bsa-hero {
  background-color: #011120;
  /* Reduced top padding since logo is gone */
  padding: 100px 20px 100px 20px; 
  text-align: center;
  border-bottom: 2px solid rgba(0, 229, 255, 0.5);
  box-shadow: 0 10px 30px -10px rgba(0, 229, 255, 0.2);
}

.bsa-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}

.bsa-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #cccccc;
}

.industry-tag {
  display: block;
  font-size: 1rem;
  color: #00E5FF;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 229, 255, 0.5);
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #00E5FF;
  color: #00E5FF;
  padding: 15px 35px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.btn:hover {
  background-color: #00E5FF;
  color: #011120;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.7);
}

/* --- SERVICES SECTION --- */
.services {
  padding: 100px 10%;
  background-color: #021a2e; 
  text-align: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: #011120;
  padding: 35px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
    border-color: #00E5FF;
}

.service-card h3 {
    min-height: 3rem;
    color: #00E5FF;
    margin-bottom: 15px;
}

/* --- ABOUT SECTION --- */
.about {
  padding: 100px 10%;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  background-color: #011120;
}

.about-text {
  flex: 2;
  min-width: 300px;
}

.about-stats {
  flex: 1;
  background-color: #021a2e;
  color: white;
  padding: 30px;
  border-radius: 5px;
  min-width: 250px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

.stat-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.3);
  padding-bottom: 10px;
}
.stat-item:last-child { border: none; }
.stat-number { font-size: 2.5rem; color: #00E5FF; font-weight: bold; display: block; text-shadow: 0 0 10px rgba(0, 229, 255, 0.4); }
.stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px;}

/* --- CONTACT SECTION --- */
.contact {
  padding: 100px 20px;
  text-align: center;
  background-color: #021a2e;
}

.contact-box {
  background: #011120;
  border: 1px solid rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
  padding: 50px;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
}

/* --- FOOTER --- */
footer {
  background-color: #011120;
  color: #aaaaaa;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.8rem;
  border-top: 1px solid #021a2e;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 768px) {
  .bsa-hero h1 { font-size: 2rem; }
  nav { flex-direction: column; gap: 15px; padding-bottom: 25px;}
  .nav-brand { flex-direction: column; text-align: center; gap: 5px; } /* Stack logo and text on mobile */
}
