/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  background-color: #FED16A;
  color: #000;
}

/* Header */
header {
  width: 100%;
  background-color: #000;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ccc;
}

.signin-btn {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signin-btn:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}

/* Hero Section */
.hero {
  background-color: #000;
  color: black;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 150px;
  padding-top: 50px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 100px;
  color:black;
  text-shadow:#000;
}

.cta-btn {
  text-decoration:double;
  background-color: orange;
  color: black;
  padding: 15px 35px;
  font-size: 1.1rem;
  border-radius: 200px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}

/* Services Section */
.services {
  padding: 50px 20px;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: bold;
}

.service-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  background-color: #000;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
