/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  line-height: 1.6;
  color: #fff;
  background: linear-gradient(135deg, #1e1e2f, #252540);
}

/* Navbar */
header {
  background: #141421;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  color: #ffcc00;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffcc00;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: url('https://picsum.photos/1600/900?blur=3') no-repeat center/cover;
  color: white;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: fadeInDown 1.2s ease;
}

.hero p {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.btn {
  background: #ffcc00;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #141421;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #e6b800;
  transform: scale(1.05);
}

/* Section Styles */
.section {
  padding: 80px 20px;
  text-align: center;
}

.section.dark {
  background: #1e1e2f;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #2d2d44;
  padding: 20px;
  border-radius: 15px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

/* Contact Form */
.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: none;
  border-radius: 10px;
  outline: none;
}

.contact-form button {
  border: none;
  cursor: pointer;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #141421;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reset & Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
  color: #fff;
  line-height: 1.6;
}

/* Header */
header {
  text-align: center;
  padding: 3rem 1rem;
  animation: fadeIn 2s ease-in-out;
}

header h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Navigation */
nav {
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  position: sticky;
  top: 0;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #fdbb2d;
}

/* Sections */
section {
  padding: 4rem 2rem;
  text-align: center;
}

/* Cards */
.card-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, background 0.3s;
}

.card:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: auto;
}

input, textarea, button {
  padding: 0.8rem;
  border-radius: 8px;
  border: none;
}

button {
  background: #fdbb2d;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #b21f1f;
  color: #fff;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: rgba(0,0,0,0.6);
  margin-top: 3rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}