/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #333;
  overflow: hidden;
  z-index: 1000; /* makes sure it stays on top of other content */
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style-type: none;
}

.navbar li {
  flex: 1;
}

.navbar a {
  display: block;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  color: white;
}

.navbar a:hover {
  background-color: #575757;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.header {
  background-color: #004080;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 20px; /* adds space below nav */
  margin-bottom:20px
}

/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*
body {
  font-family: Arial, sans-serif;
}
*/




ul {
  margin: 0;
  padding: 0;
  /*list-style: disc; /* Or 'none' if you want to remove bullet points */
}
 /*
   li::before {
      content: "\2022"; /* Unicode character for a bullet point */
      color: violet;
      font-size: 1.5em;
      display: inline-block; /* Allows width and margin-left to be applied */
      width: 1em;
      margin-left: -1em; /* Adjusts bullet position */
    }*/
li {
  display: block;
  text-align: left;
}

p {
  text-align: justify;
  border-bottom: 1px solid #ccc; /* underline between paragraphs */
  padding-bottom: 10px;
  margin-bottom: 20px;
  
}

/* Footer */
.footer {
  background-color: #004080;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: auto;
}

/* Services layout */
.services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 1rem;
  background-color: #fff;
}

/* Individual service card */
.service-card {
  background-color: #e9f0f7;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  width: 250px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0,0,0,0.2);
}

/* Motion image */
.service-card img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.service-card img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .services {
    flex-direction: column;
    align-items: center;
  }
}
