/* --- GOOGLE SITES RESET --- */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #444;
  line-height: 1.6;
  background-color: transparent;
  scroll-behavior: smooth;
}

/* --- TYPOGRAPHY & COLORS --- */
h1, h2, h3 {
  color: #002244; /* Navy Brand Color */
  font-weight: bold;
  margin-top: 0;
}

/* --- NAVIGATION --- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: #002244;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 1px;
}

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

.nav-item {
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-item:hover {
  color: #00d4ca; /* Teal Hover */
}

/* --- HERO SECTION --- */
.bsa-hero {
  background-color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  border-bottom: 4px solid #00d4ca;
}

.bsa-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

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

.industry-tag {
  display: block;
  font-size: 0.9rem;
  color: #00d4ca;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: bold;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  background-color: #00d4ca;
  color: white;
  padding: 15px 30px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  margin-top: 10px;
}

.btn:hover {
  background-color: #002244;
}

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

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

.service-card {
  background: white;
  padding: 30px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border-top: 5px solid #002244;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
   min-height: 3rem; /* Aligns titles */
}

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

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

.about-stats {
  flex: 1;
  background-color: #002244;
  color: white;
  padding: 30px;
  border-radius: 5px;
  min-width: 250px;
}

.stat-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 10px;
}
.stat-item:last-child { border: none; }
.stat-number { font-size: 2rem; color: #00d4ca; font-weight: bold; display: block; }
.stat-label { font-size: 0.8rem; text-transform: uppercase; }

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

.contact-box {
  background: white;
  border: 2px solid #e0e0e0;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

/* --- FOOTER --- */
footer {
  background-color: #002244;
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.8rem;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 768px) {
  .bsa-hero h1 { font-size: 2rem; }
  nav { flex-direction: column; gap: 15px; }
}
