* {
   transition: all 0.3s ease;
}

a, button, .ctaButton, .submitBtn {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.featureBox, .showcaseItem img {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mainNav {
   transition: left 0.3s ease-in-out;
}

.burgerMenu span {
   transition: all 0.3s ease;
}

input, select, textarea {
	 transition: border-color 0.3s ease, box-shadow 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.footerLinks a {
   transition: color 0.3s ease;
}@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}.policySection {
      background: #f8f9fa;
       padding: 80px 2rem;


}

.policyContainer {
    max-width: 800px;
    margin :  0 auto;
  text-align: left;
}

.policyContainer h2 {
	font-size: 2.5rem;
	 color: #2c3e50;
    margin-bottom: 1.5rem;
               font-weight: 700;
}

.policyContainer p		{
    color: #7f8c8d;
	 margin-bottom: 1.5rem;
	line-height: 1.7;
    font-size    :       1.1rem; 

}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.storyContent {
   animation     : fadeInUp 0.8s ease-out;
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.valueCard, .memberCard {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.valueCard:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
     transform: translateY(-8px);
}

.memberCard:hover {
  box-shadow: 0 12px 35px rgba(0,0,0,0.16);
}

.imageBlock img {
    transition: transform 0.4s ease;
}

.successIcon {
	  animation: scaleIn 0.5s ease-out;
     }@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyouBox {
       animation: slideUp 0.6s ease-out;
}@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.btnPrimary, .btnSecondary {
      position: relative;
	overflow    :hidden;
}

.btnPrimary::before, .btnSecondary::before {
  content: '';
  position: absolute;
    top :   50%;
  left: 50%;
       width: 0;
  height    :    0;
   border-radius    :        50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btnPrimary:hover::before, .btnSecondary:hover::before
{
  width: 300px;
    height:        300px;
}

.messageBlock {
  animation: fadeIn 0.8s ease-out 0.3s both;
}@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}