body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background: #fff;
}

header {
  background: #0a1f44;
  color: #fff;
  padding: 15px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a.active,
nav ul li a:hover {
  text-decoration: underline;
}

.hero {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.hero-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
}

.btn {
  background: #0073e6;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
  display: inline-block;
}

.container {
  width: 90%;
  margin: 40px auto;
}

.page-header {
  height: 200px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact-form button {
  background: #0073e6;
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 5px;
}

footer {
  background: #0a1f44;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}
/* Animations */
.fade-in { 
  animation: fadeIn 1.2s ease forwards; 
  opacity: 0;
}
.fade-up {
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}
.bounce {
  display: inline-block;
  animation: bounce 2s infinite;
}
.hover-raise {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-raise:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Keyframes */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes fadeUp {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-8px);}
  60% {transform: translateY(-4px);}
}

/* Process block */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}
.step {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.step-num {
  display: inline-block;
  background: #0a1f44;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 10px;
}