.elementor-603 .elementor-element.elementor-element-64338f7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-9f6e814 */#diwali-offer {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  background: url('https://cdn.thegoavilla.com/image/CID_0313_7c52a6b0d6546b0fe9e2344b4dc71148.jpg') center/cover no-repeat;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* Overlay for readability */
#diwali-offer .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1;
}

/* Content Layer */
#diwali-offer .content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: auto;
}

/* Floating Sparkles */
.sparkles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
}

.sparkle {
  position: absolute;
  bottom: -20px;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #ffdf80 20%, transparent 70%);
  border-radius: 50%;
  opacity: 0.8;
  animation: floatUp 6s linear infinite;
}

.sparkle:nth-child(2) {
  left: 25%;
  animation-delay: 2s;
}
.sparkle:nth-child(3) {
  left: 50%;
  width: 10px;
  height: 10px;
  animation-delay: 4s;
}
.sparkle:nth-child(4) {
  left: 70%;
  animation-delay: 1s;
}
.sparkle:nth-child(5) {
  left: 85%;
  width: 12px;
  height: 12px;
  animation-delay: 3s;
}
.sparkle:nth-child(6) {
  left: 10%;
  animation-delay: 5s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-120vh) scale(0.6);
    opacity: 0;
  }
}

/* Headings */
.main-heading {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  background: linear-gradient(90deg, #ffd54f, #ff9100, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.sub-heading {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.section-title {
  color: #ffffff !important;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Courses grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

/* Card design */
.course-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: left;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Shimmer Effect */
.shimmer::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 200%; height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  animation: shimmer 4s infinite linear;
  opacity: 0.4;
}
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Hover */
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(255, 204, 0, 0.5);
}

/* Price Styling */
.course-card h3 {
  color: #ffecb3;
  font-size: 20px;
  margin-bottom: 10px;
}
.old-price span {
  text-decoration: line-through;
  color: #ff8a80;
}
.new-price {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}

/* List styling */
.course-card ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
.course-card li {
  margin: 6px 0;
  font-size: 15px;
  color: #fff9c4;
}

/* CTA Button Glow */
.diwali-btn {
  display: inline-block;
  background: linear-gradient(45deg, #ff6f61, #ffcc00);
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(255, 200, 0, 0.5);
}

.diwali-btn:hover {
  background: linear-gradient(45deg, #ffcc00, #ff6f61);
  color: #fff8dc;
  box-shadow: 0 0 25px rgba(255, 200, 0, 0.9);
}


.glow {
  animation: glowPulse 2s infinite alternate;
}
@keyframes glowPulse {
  from { box-shadow: 0 0 15px rgba(255, 193, 7, 0.5); }
  to { box-shadow: 0 0 40px rgba(255, 87, 34, 0.9); }
}



.offer-valid {
  margin-top: 10px;
  font-size: 15px;
  opacity: 0.9;
}

.footer-note {
  margin-top: 40px;
  font-size: 16px;
  font-style: italic;
  color: #fff8e1;
}

/* Responsive */
@media (max-width: 600px) {
  .courses-grid { grid-template-columns: 1fr; }
  .cta-btn { font-size: 16px; padding: 12px 20px; }
}/* End custom CSS */