* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ✅ SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
}

/* ✅ NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #ffffff;
  border-bottom: 2px solid #ff6a00;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff6a00;
}
.nav-links {
  list-style: none;
  display: flex;
}
.nav-links li {
  margin-left: 20px;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #ff6a00;
  text-decoration: underline;
}

/* ✅ HERO SECTION */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 50px 5%;
  background: linear-gradient(135deg, #fff4e6, #fff);
}
.hero-text {
  flex: 1;
  padding-right: 20px;
}
.hero-text h1 {
  font-size: 3rem;
  color: #ff6a00;
}
.hero-text p {
  margin: 15px 0;
  font-size: 1.2rem;
}
.btn {
  padding: 12px 30px;
  background-color: #ff6a00;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn:hover {
  background-color: #e04e00;
}

/* ✅ FOOTER */
footer {
  background-color: #f9f9f9;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: 30px;
  color: #777;
}
