body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  color: #333;
  margin: 0;
  padding: 20px;
}

h1, h2 {
  text-align: center;
  color: #d84315;
  margin-bottom: 25px;
}

ul {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0;
  list-style: none;
}

li {
  background: #fff8e1;
  padding: 15px;
  margin: 10px;
  border-left: 5px solid #ff9800;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-card {
  background: #fff8e1;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery-card:hover {
  transform: scale(1.03);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-card p {
  background: #ffe0b2;
  padding: 10px;
  margin: 0;
  font-weight: 600;
  color: #bf360c;
  border-top: 1px solid #ffcc80;
}
nav {
  background-color: #ff6f00;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  margin-bottom: 30px;
}

nav h2 {
  margin: 0;
  font-size: 24px;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

footer {
  background-color: #ffcc80;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #5d4037;
  margin-top: 50px;
}

.view-more {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.view-more a {
  background-color: #e65100;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.view-more a:hover {
  background-color: #bf360c;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.event-card {
  background: #fff3e0;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: scale(1.02);
}

.image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-card h3 {
  color: #bf360c;
  margin-bottom: 10px;
  font-size: 20px;
}

.event-card p {
  color: #444;
  font-size: 15px;
  margin: 10px 0;
}

.event-card small {
  display: block;
  color: #e65100;
  margin-top: 5px;
}

.container {
  max-width: 800px;
  margin: auto;
  background: #fff8e1;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Responsive Navigation */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #ff6f00;
    position: absolute;
    top: 65px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  nav {
    position: relative;
  }
}
.background-blur {
  background: url("/static/images/img3.jpeg") no-repeat center center fixed;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(5px);
  opacity: 0.6;
}
.color-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(142, 39, 7, 0.4); 
  z-index: -1;
}
.aahaval {
  background: rgba(255, 255, 255, 0.85);
  margin: 40px auto;
  padding: 30px;
  border-radius: 16px;
  max-width: 1200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: 'Mukta', sans-serif;
}

.aahaval h2 {
  text-align: center;
  color: #c0392b;
  margin-bottom: 20px;
}

.summary-box {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 18px;
}

.summary-box p {
  margin: 10px;
}

.dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.dot.green { background-color: #2ecc71; }
.dot.red { background-color: #e74c3c; }
.dot.yellow { background-color: #f1c40f; }

.list-box {
  margin-bottom: 30px;
}

.list-box h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.list-box ul {
  list-style-type: none;
  padding: 0;
}

.list-box li {
  background-color: #fff9f3;
  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.btn-view-more {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn-view-more:hover {
  background-color: #216ba5;
}
.section-heading {
  text-align: center;
  font-size: 2rem;
  margin: 40px 0 20px;
  color: #b03505;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 0 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.btn-view-all {
  background-color: #e65100;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.btn-view-all:hover {
  background-color: #bf360c;
}

.view-more {
  text-align: center;
  margin-bottom: 40px;
}


.swiper {
  width: 90%;
  padding-bottom: 40px;
  margin: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item {
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.gallery-item:hover img {
  transform: scale(1.05);
}
