* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

/* Navbar */
.navbar {
  background: white;
  padding: 10px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #f97316;
}
.nav-logo {
  height: 50px;
}

/* Hero Section */
header.hero {
  background: linear-gradient(135deg, #f97316, #fb8500);
  padding: 100px 20px;
  text-align: center;
  color: white;
}
.hero h1 {
  font-size: 3rem;
}
.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}
.logo {
  width: 120px;
  margin-bottom: 20px;
}
.tagline {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* General Section */
section, .section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}
.section h2 {
  color: #f97316;
  margin-bottom: 20px;
}

/* Colored Sections */
.colored {
  background: #f3f4f6;
}

/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 20px;
  width: 280px;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-10px);
}
.card h3 {
  margin-bottom: 10px;
  color: #fb8500;
}

h2 {
  margin-bottom: 15px;
  color: #f97316;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* Footer */
footer, .footer {
  background: #222;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}
.footer a {
  color: #f97316;
  text-decoration: none;
}

/* Scroll To Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #f97316;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: none;
  cursor: pointer;
}

a {
  color: #ffb703;
  text-decoration: none;
}