 /*--------------------------------------------------------------
# Projects Section Styles
--------------------------------------------------------------*/
 
 .project-event-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
      overflow: hidden;
    }

    .project-event-card:hover {
      transform: translateY(-5px);
    }

    .project-section-title {
      font-weight: bold;
      font-size: 2rem;
      color: #2c3e50;
      margin-bottom: 1rem;
    }

    .project-price-badge {
      background-color: #28a745;
      color: white;
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.9rem;
    }

    .project-card-image {
      width: 100%;
      height: 350px;
      object-fit: cover;
    }

/*--------------------------------------------------------------
# Kutty ganesha button
--------------------------------------------------------------*/

.kuttyganesha {
      animation: blink 3s infinite;
      background-color: #feb900;
      color: #2c3e50;
    }

.kuttyganesha:hover{
  background-color: #e0a800; /* darker golden yellow */
color: #ffffff; /* white text pops */
}
    @keyframes blink {
      0%, 50%, 100% { opacity: 1; }
      25%, 75% { opacity: 0; }
    }

/*--------------------------------------------------------------
# news-scroll
--------------------------------------------------------------*/    

.news-ticker {
  overflow: hidden;
  position: relative;
  max-width: 100%;
  font-size: 0.95rem;
  white-space: nowrap;
}

.ticker-wrapper {
  overflow: hidden;
  width: 100%;
}

.ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 20s linear infinite;
}

.news-ticker:hover .ticker-content {
  animation-play-state: paused;
}

/* Allow long press on mobile to pause (partial support via hover) */
@media (hover: none) {
  .news-ticker:active .ticker-content {
    animation-play-state: paused;
  }
}

/* Adjust for small screens */
@media (max-width: 576px) {
  .news-ticker {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }
  .ticker-content {
    animation-duration: 30s;
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/*--------------------------------------------------------------
# JMC Registration-contact-form
--------------------------------------------------------------*/

.required-color{
  color: #dc3545;
}