/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}
body {
  background: linear-gradient(135deg, #141E30, #243B55);
  color: #fff;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
}
.logo span { color: #ff6a00; }
nav a {
  margin: 0 15px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}
nav a:hover { color: #ff6a00; }

/* Hero Section */
.services-hero {
  text-align: center;
  padding: 80px 20px;
}
.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: fadeIn 2s ease forwards;
}
.services-hero .glow {
  color: #ff6a00;
  text-shadow: 0 0 15px #ff6a00, 0 0 30px #ff4500;
}
.services-hero .animated-text {
  font-size: 1.3rem;
  max-width: 700px;
  margin: auto;
  animation: slideUp 2s ease forwards;
}

/* Service Cards */
.service-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}
.card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards;
}
.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover img { transform: scale(1.1); }
.card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(0,0,0,0.6);
  text-align: center;
}
.card-text h2 {
  color: #ff6a00;
  margin-bottom: 10px;
}
.card-text p { font-size: 1rem; }

/* Alternate Animations */
.card.left { align-self: flex-start; animation: slideLeft 1.2s ease forwards; }
.card.right { align-self: flex-end; animation: slideRight 1.2s ease forwards; }

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  font-size: 0.9rem;
}
footer a { color: #ff6a00; margin: 0 10px; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; transform: scale(0.9);} to { opacity: 1; transform: scale(1);} }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px);} to { opacity: 1; transform: translateY(0);} }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(50px);} to { opacity: 1; transform: translateY(0);} }
@keyframes slideLeft { from { opacity: 0; transform: translateX(-150px);} to { opacity: 1; transform: translateX(0);} }
@keyframes slideRight { from { opacity: 0; transform: translateX(150px);} to { opacity: 1; transform: translateX(0);} }
