/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
}

.logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: #fff;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffcf40;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-content button {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  background: #ffcf40;
  border: none;
  color: #000;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s;
}

.hero-content button:hover {
  background: #f0b000;
}

/* Sections */
.section {
  padding: 4rem 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  padding: 1rem;
  font-size: 1.2rem;
  color: #333;
}

/* Contact Form */
.container {
  background: white;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.container h2 {
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #4f83ff;
  box-shadow: 0 0 5px rgba(79, 131, 255, 0.3);
}

button {
  width: 100%;
  padding: 12px;
  background: #4f83ff;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #376de0;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #222;
  color: #fff;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
