        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(to right, #ffecd2, #fcb69f);
            overflow-x: hidden;
        }

        .navbar {
            backdrop-filter: blur(8px);
            background: rgba(220, 53, 69, 0.85) !important;
        }

        .navbar-brand {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.5rem;
        }
       

        #hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
            
        }

        #hero::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
        }

        #hero .container {
            position: relative;
            z-index: 2;
        }

        .card {
            border-radius: 20px;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.8);
            transition: transform 0.3s ease;
        }

        .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 105, 180, 0.4);
  transition: all 0.3s ease;
}

        footer {
            background: #111;
            font-size: 0.9rem;
        }

        
        #countdown {
            font-size: 1.2rem;
            font-weight: bold;
            color: #fff;
            margin-top: 20px;
        }

    
        .floating {
            position: fixed;
            width: 40px;
            height: 40px;
            background-image: url("https://i.ibb.co/SdyqjzQ/diya.png");
            background-size: cover;
            animation: float 12s infinite linear;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes float {
            from {
                transform: translateY(100vh) translateX(0);
                opacity: 1;
            }

            to {
                transform: translateY(-10vh) translateX(50px);
                opacity: 0;
            }
        }


        #hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
  background: linear-gradient(270deg, #ff6f61, #ffcc70, #ff9a9e, #fad0c4, #fbc2eb, #a18cd1);
  background-size: 1200% 1200%;
  animation: gradientFlow 20s ease infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}



#gallery .carousel-inner,
#gallery .carousel-item,
#gallery .carousel-item img {
    height: 100vh;        
    width: 100vw;       
    object-fit: cover;    
    overflow: hidden;     
}


#gallery {
    padding: 0;
    margin: 0;
}

.festive-marquee {
  width: 100%;
  background: linear-gradient(90deg, #ff6f61, #ffcc70, #fbc2eb);
  overflow: hidden;
  padding: 0.8rem 0;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border-radius: 8px;
  margin-top: 70px; 
}


.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 20s linear infinite;
}


.marquee-track span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  padding: 0 3rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  white-space: nowrap;
}


@keyframes scrollMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.festive-marquee:hover .marquee-track {
  animation-play-state: paused;
}


.marquee-track span::before, .marquee-track span::after {
  content: "✨";
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  0% { text-shadow: 0 0 5px #fff; }
  100% { text-shadow: 0 0 20px #ffd700; }
}
