/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
}

/* Stylish Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #004d4d;
  padding: 15px 30px;
  flex-wrap: wrap;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s;
}

.navbar ul li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ff6600;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

.navbar ul li a:hover {
  color: #ffcc00;
}

.navbar ul li a:hover::after {
  width: 100%;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #ffcc00;
  text-shadow: 1px 1px black;
}

/* Hero Section */
.hero {
  background: url('./img/new7.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
  color: white;
  max-width: 90%;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-text .btn {
  background: #ff6600;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.hero-text .btn:hover {
  background: #cc5200;
}

/* Features Section */
.features {
  padding: 60px 20px;
  text-align: center;
}

.features h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: white;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  margin: 15px 0 5px;
  font-size: 22px;
}

.card p {
  padding: 0 10px 15px;
  font-size: 16px;
  color: #666;
}

/* Footer */
.footer {
  text-align: center;
  background: #004d4d;
  color: white;
  padding: 20px;
  margin-top: 50px;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav-left,
  .nav-right {
    flex-direction: column;
    gap: 10px;
    margin: 10px 0;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
}

