* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff5e1;
  color: #333;
}

/* Header */
header {
  background: #ff9933;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

header nav ul {
  display: flex;
  list-style: none;
}

header nav ul li {
  margin-left: 20px;
}

.blinking-text {
  color: white;                       /* text color */
  -webkit-text-stroke: 2px #000;        /* border around text */
  text-shadow: 0 0 10px blue,        /* glowing shadow */
               0 0 20px #ff3300,
               0 0 30px #ff0000;
  font-size: 50px;
  font-weight: bold;
  text-align: center;
 background: #ff9933;
  /* Blinking animation */
  
}



header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

header nav ul li a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(rgba(255, 153, 51, 0.8), rgba(255, 204, 102, 0.8));
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero button {
  padding: 10px 20px;
  font-size: 1rem;
  background: #cc3300;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.hero button:hover {
  background: #990000;
}

/* Content Section */
.content {
  padding: 40px 20px;
  text-align: center;
}

.content h2 {
  margin-bottom: 20px;
  color: #cc3300;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  border-radius: 8px;
  width: 250px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 8px;
}

.card h3 {
  margin: 10px 0;
  color: #ff6600;
}

/* Footer */
footer {
  background: #ff9933;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 30px;
}
