/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background: #f5f6fa;
  color: #333;
  line-height: 1.6;
}

/* Header / Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #0f3460;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.logo span {
  color: #e94560;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #e94560;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(to right, #16213e, #0f3460);
  color: #fff;
  animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #e94560;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero button {
  padding: 10px 20px;
  background: #e94560;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero button:hover {
  background: #ff5f7f;
}

/* Services Section */
.services {
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  margin-bottom: 30px;
  color: #0f3460;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

/* About Section */
.about {
  padding: 60px 20px;
  background: #0f3460;
  color: #fff;
  text-align: center;
}

.about h2 {
  margin-bottom: 20px;
  color: #e94560;
}

/* Contact Section */
.contact {
  padding: 60px 20px;
  text-align: center;
}

.contact h2 {
  color: #0f3460;
  margin-bottom: 20px;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

input, textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button[type="submit"] {
  padding: 10px;
  background: #0f3460;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background: #e94560;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #0f3460;
  color: #fff;
  margin-top: 30px;
}

/* Animations */
@keyframes fadeIn {
  0% {opacity: 0; transform: translateY(30px);}
  100% {opacity: 1; transform: translateY(0);}
}

