 /*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# JMC Registration-contact-form-closed
--------------------------------------------------------------*/

.jmc-registration-closed {
  width: 100%;
  padding: 45px 20px;
  background: #f2f5ff;
  display: flex;
  justify-content: center;
}

.jmc-card {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Top curved banner */
.jmc-top-banner {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, #ff4e63, #ff7d94);
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  position: relative;
}

/* Logo */
.jmc-logo-wrap {
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
}

.jmc-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 6px solid #fff;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

/* Content */
.jmc-content {
  margin-top: 80px;
  padding: 25px 25px 35px;
}

.jmc-tag {
  display: inline-block;
  background: #ff4e63;
  color: #fff;
  font-size: 14px;
  padding: 5px 14px;
  border-radius: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

.jmc-title {
  font-size: 22px;
  font-weight: 800;
  color: #222;
  margin-bottom: 12px;
}

.jmc-subtitle {
  font-size: 17px;
  font-weight: 600;
  color: #444;
  margin-bottom: 12px;
}

.jmc-numbers p {
  font-size: 17px;
  margin: 6px 0;
  color: #555;
}

/* Responsive */
@media (max-width: 480px) {
  .jmc-title {
    font-size: 19px;
  }
  .jmc-numbers p {
    font-size: 15px;
  }
}
