body {
  font-family: Arial, sans-serif;
}

.navbar {
  min-height: 80px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 0.25rem 0;
}

.navbar-logo {
  height: 32px;
  max-height: 32px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}

.navbar .navbar-collapse {
  align-items: center;
}

.navbar-nav .nav-link {
  padding: 0.75rem 0.9rem;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  text-shadow: 0 0 1px rgba(255,255,255,0.2);
  transition: color 0.2s ease, transform 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #FFD700;
  transform: translateY(-1px);
}

.hero {
  height: 60vh;
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
  url('My_IT_office.png');
  background-size: cover;
  background-position: center;
  color: white;

  display: flex;
  align-items: center;
}

.service-card {
  background: #111E38;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,.15);
  transition: .3s;
}
.service-card-primary {
  background: #2563EB;
}

.service-card-secondary {
  background: #6d65b6;
}

.service-card-tertiary {
  background: #3992db;
}
.service-card h4,
.service-card p {
  color: #ffffff;
}

.service-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
}

.service-card p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-10px);
}

.about-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-section h2 {
  font-size: 2.8rem;
  line-height: 1.05;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.stats-section {
  background: #0d6efd;
  color: white;
  padding: 70px 0;
}

.contact-form {
  max-width: 700px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}

.contact-form button {
  background: #0d6efd;
  color: white;
  border: none;
  padding: 15px 30px;
}