* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f3f4f6;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* margin: 0;
  padding: 20px; */
}

header {
      background: #f9a825 !important;
      padding: 15px !important;
      text-align: center !important;
      font-size: 26px !important;
      font-weight: bold;
      display: block !important;
      color: white;
    }
    .icon i{
      display: none;
    }

        .icon i  a{
        text-decoration: none;
        color: white !important;
    }
    .fa-solid {
    --fa-style: 900;
    color: white;
}

/* Card Container */
/* Card Container */
.custom-card {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 200px;
  margin: auto;
  cursor: pointer;
  overflow: hidden;
  border-radius: 1rem;
}

/* Slide 1 - Image */
.custom-card .slide.slide1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: 0.7s;
  transform: translateY(0);
}

.custom-card:hover .slide.slide1 {
  transform: translateY(-100%);
}

.image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slide 2 - Details */
.custom-card .slide.slide2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateY(100%);
  transition: 0.8s;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
}

.custom-card:hover .slide.slide2 {
  transform: translateY(0);
}

.slide2{
  background-color: #ee7e33 !important;
}

.custom-card .content h3 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 10px;
  text-align: center;
}

.custom-card .content p {
  font-size: 0.95rem;
  color: white;
  margin: 2px 0;
  text-align: center;
}


/* Content styling */
.custom-card .content h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}

.custom-card .content p {
  margin: 0;
  font-size: 0.95rem;
  color: #fff;
  text-align: center;
}




.hero-banner {
  background: url('../images/upcoming_puja.jpg') no-repeat center center/cover;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  color: #fff;
  max-width: 700px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero-text p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.btn{
  display: inline-block;
  padding: 12px 24px;
  background-color: #ee7e33 !important; /* saffron/orange */
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}
.btn:hover{
  transform: scale(1.05);
  background-color: #f28c3c !important;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.6) !important;
}
.btn::before{
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-20deg);
}

/* Card Group Container */
.card-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding: 20px;
}

/* Card */
.card {
  background-color: #ffffff;
  cursor: pointer;
  width: 240px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.card-body {
  padding: 16px;
  color: #333;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.colored {
  color: #b82e8a;
  font-weight: bold;
}

.label {
  font-weight: 500;
  color: #555;
}

.edited {
  display: inline-block;
  color: #1e88e5;
  margin-bottom: 5px;
}