* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f7fa;
  color: #333;
  scroll-behavior: smooth;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #1e3c72;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  z-index: 1000;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.logo {
  font-size: 22px;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ffcc00;
}

.hero {
  background: url('Screenshot\ 2025-10-15\ 225939.png') center/cover no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  animation: fadeIn 2s ease-in;
}


.hero-content {
  background: rgba(0,0,0,0.6);
  padding: 30px;
  border-radius: 15px;
  animation: slideUp 1.5s ease-out;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background: #ffcc00;
  color: #333;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
}

section {
  padding: 100px 50px;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.service {
  background: white;
  border-radius: 15px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.service img {
  width: 80px;
  margin-bottom: 15px;
}

footer {
  background: #1e3c72;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideUp {
  from {transform: translateY(50px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }
  .service-boxes {
    flex-direction: column;
    align-items: center;
  }
}
