/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styles */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #333;
  color: #fff;
  padding: 1rem 0;
}

.logo {
  float: left;
  font-size: 24px;
  margin-left: 10px;
}

nav ul {
  float: right;
  list-style: none;
  display: flex;
  gap: 20px;
  margin-right: 10px;
}

nav a {
  color: #fff;
  text-decoration: none;
}

header::after {
  content: "";
  display: block;
  clear: both;
}

/* Hero Section */
.hero {
  background: url('images/hero.jpg') no-repeat center center/cover;
  color: #ffcc00;
  padding: 4rem 0;
  text-align: center;
}

.hero h2, .hero p, .hero .btn {
  animation: fadeInUp 1s ease-in-out forwards;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: #fff;
  color: #007BFF;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  font-weight: bold;
}

/* Features */
.features {
  padding: 3rem 0;
  background: #fff;
  text-align: center;
}

.feature-box {
  margin: 1rem 0;
}

.feature-box i {
  color: #007BFF;
  margin-right: 8px;
}

/* About Section */
.about {
  padding: 3rem 0;
  background: #eee;
  text-align: center;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

/* Contact Form */
.contact {
  background: #fff;
  padding: 3rem 0;
  text-align: center;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: auto;
  margin-top: 20px;
}

.contact input, .contact textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
}

.contact .btn {
  width: fit-content;
  background: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .container {
    width: 95%;
  }
}

