/* Basic styling for a professional look */
  
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f9fa;
    margin-top: 70px; /* space for fixed navbar */
}

h1, h2 {
  font-weight: 700;
}

.navbar {
  transition: all 0.3s;
}

.nav-link.active,
.nav-link:hover {
  font-weight: bold;
  /color: #0d6efd !important;
}

/* Hover effect on service cards */
  .hover-shadow:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

/* Section paddings */
  section {
    padding: 60px 0;
  }

/* CTA section styles */
  .bg-primary {
    background-color: #0d6efd !important;
  }

/* Footer styles */
footer a {
  font-size: 1.3rem;
  transition: color 0.3s;
}
footer a:hover {
  color: #ddd;
} 

/* Tech Font*/
.tech-font {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700; /* explicitly set */
  letter-spacing: 2px;
}
