    .fade-in, .reveal, .fade-in-art { opacity: 1; transform: none; transition: none;}
    .js .fade-in , .js .fade-in-art {opacity:0; transform:translateY(20px); transition: all 0.8s ease;}
    .js .fade-in.visible, .js .fade-in-art.visible  {opacity:1; transform:translateY(0);}
    .js .reveal {opacity:0; transform:scale(0.95); transition: all 0.6s ease;}
    .js .reveal.visible {opacity:1; transform:scale(1);}
	.card {background:#fff; border-radius:12px; padding:20px; margin:20px 0; box-shadow:0 3px 10px rgba(0,0,0,0.08); transition: all 0.4s ease; border-left: 6px solid #3fa535;}
    .card:hover {background: linear-gradient(135deg, #ffffff 0%, #f0faf0 100%); transform: translateY(-6px) scale(1.02); box-shadow: 0 8px 20px rgba(63,165,53,0.2), 0 0 12px rgba(91,192,222,0.3);}
	.card h3 {color: #006599; margin-bottom: 8px; font-size: 20px;}
	.engagements-grid {display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); column-gap: 20px;}
	.engagements-grid .card { display: flex; flex-direction: column; justify-content: space-between; text-align: center;}
	
	@keyframes gradientMove {0% {background-position: 0% 50%;} 50% {background-position: 100% 50%;} 100% {background-position: 0% 50%;}}
		
	.button_submit{background: linear-gradient(135deg, #1af1bb, #048cc5); color: white; border: none; border-radius: 50px; padding: 12px 28px; font-size: 1rem; font-weight: 600;
		cursor: pointer; box-shadow: 0 4px 10px rgba(0, 160, 227, 0.3); transition: all 0.25s ease; background-size: 200% 100%;  animation: gradientMove 6s ease infinite;}
	.button_submit:hover {transform: translateY(-3px); box-shadow: 0 6px 14px rgba(0, 160, 227, 0.5); background: linear-gradient(135deg, #02b6b1, #006599);}
	.button_submit:active {transform: scale(0.98); box-shadow: 0 3px 8px rgba(0, 160, 227, 0.3);}