/* Common styles */
body {
  font-family: 'Mangal', sans-serif;
  color: #222;
  margin: 0;
  padding: 0;
  background: linear-gradient(
    -45deg,
   #fff176,   /* हल्का पीला */
    #64b5f6,   /* हल्का नीला */
    #81c784,   /* हल्का हरा */
    #f06292,   /* हल्का गुलाबी */
    #ffb74d,   /* हल्का नारंगी */
    #9575cd,   /* हल्का बैंगनी */
    #aed581    /* हल्का हरा-पीला */
  );
  background-size: 400% 400%;
  animation: rainbowBG 20s ease infinite;
}

/* Gradient Animation */
@keyframes rainbowBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Header */
header {
  background: #ff9800; /* Orange */
  color: #fffde7;
  text-align: center;
  padding: 15px;
}

header h1 {
  margin: 0;
  font-size: 28px;
}

/* Navigation */
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px 0 0 0;
}

nav ul li {
  margin: 5px 10px;
}

nav ul li a {
  color: #222;
  text-decoration: none;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

nav ul li a:hover {
  background: #ffe082;
}

/* Banner */
.banner {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

.slider img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: none;
}

.banner button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  color: #ff9800;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
}

#prevBtn {
  left: 20px;
}

#nextBtn {
  right: 20px;
}

.banner button:hover {
  background: rgba(255, 255, 255, 1);
}

footer {
  background: #ff9800; /* Orange */
  color: #fffde7;
  text-align: center;
  padding: 20px;
  font-size: 16px;
  position: relative;
}

footer a {
  color: #fffde7;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  color: #222;
  background: #ffe082;
  padding: 4px 8px;
  border-radius: 4px;
  transition: 0.3s;
}

footer p {
  margin: 5px 0;
}


/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none; /* hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffe0b2;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 999;
}

.dropdown-content li {
  display: block;
}

.dropdown-content li a {
  color: #222;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
}

.dropdown-content li a:hover {
  background: #ffcc80;
}

