@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(45px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.92);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-55px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(55px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(212,117,111,0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(212,117,111,0.5);
    }
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}.hero-area {
    animation: fadeInScale 0.85s ease-out;
}

.hero-text h1 {
   animation: slideFromLeft 0.9s ease-out 0.15s backwards;
}

.hero-text p {


  animation: slideFromLeft 0.9s ease-out 0.3s backwards;}

.hero-text .primary-btn {
     animation: slideFromLeft 0.9s ease-out 0.45s backwards;
}

.hero-visual {
   animation:       slideFromRight 1s ease-out 0.25s backwards;
}

.feature-item {
   animation: slideInUp 0.75s ease-out backwards;
}

.feature-item:nth-child(1)

{
				 animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
   animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-item:nth-child(6)  
  {
   animation-delay: 0.6s;
	
}

.section-header {
    animation   :  slideInUp 0.8s ease-out 0.2s backwards;
}

.about-image {

	   animation: slideFromLeft 0.9s ease-out 0.3s backwards;
	}

.about-text {
    animation: slideFromRight 0.9s ease-out 0.4s backwards;
}

.cta-block {
  animation: fadeInScale 0.85s ease-out 0.25s backwards;
}

.contact-form {
   animation: slideInUp 0.8s ease-out 0.3s backwards;

}



.primary-btn:hover {
	 animation: pulseGlow 1.5s infinite;
}@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}.hero-visual img {

	    animation: floatElement 6s ease-in-out infinite;
	}

.about-image img {

  animation: floatElement 7s ease-in-out infinite;}

.policySection {
    padding: 80px 2rem;
  background: #f8f9fa;


}

.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;
    }
}

@keyframes checkmarkDraw {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(45deg);
    }
    100% {
        transform: scale(1) rotate(45deg);
        opacity: 1;
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212,117,111,0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(212,117,111,0);
    }
}

@keyframes contentSlideUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.success-icon {
     animation  :    iconPulse 2s ease-out 0.5s infinite;}  

.success-icon::after {
   animation: checkmarkDraw 0.6s ease-out 0.3s backwards;
}

.thankyou-content h1 {
    animation: contentSlideUp 0.7s ease-out 0.4s backwards;}

.thankyou-content > p:first-of-type {
   animation: contentSlideUp 0.7s ease-out 0.5s backwards;
}

.next-steps {
  animation: contentSlideUp 0.7s ease-out 0.6s backwards;
}

.action-buttons {
   animation: contentSlideUp 0.7s ease-out 0.7s backwards;
}

.page-hero	{
    animation: contentSlideUp 0.8s ease-out 0.2s backwards;
}

.story-block {

	    animation     :        contentSlideUp 0.75s ease-out backwards;

}

.story-block:nth-of-type(1) {
   animation-delay :   0.2s;
}

.story-block:nth-of-type(2) {
  animation-delay: 0.35s;
}

.value-card {

    animation: contentSlideUp 0.7s ease-out backwards;
     }

.value-card:nth-child(1) {
    animation-delay :   0.15s;
}

.value-card:nth-child(2) {
    animation-delay: 0.25s;
}

.value-card:nth-child(3) {
  animation-delay: 0.35s;
}

.value-card:nth-child(4) {
    animation-delay: 0.45s;
}

.value-card:nth-child(5) {
    animation-delay: 0.55s;
}

.value-card:nth-child(6) {
  animation-delay: 0.65s;
}

.approach-content {
   animation: contentSlideUp 0.8s ease-out backwards;
}

.approach-content:nth-of-type(1) {
        animation-delay: 0.2s;
}

.approach-content:nth-of-type(2) {
	animation-delay: 0.35s;
}

.approach-content:nth-of-type(3) {
  animation-delay: 0.5s;
}

.team-intro {
	  animation: contentSlideUp 0.8s ease-out 0.3s backwards;
}@keyframes fadeInContent {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}.thankyou-wrapper {
  animation: fadeInContent 0.5s ease-out;
}

.thankyou-content {

	    animation: contentSlideUp 0.8s ease-out 0.15s backwards;
     }@media (prefers-reduced-motion: reduce) {
    .success-icon,
    .success-icon::after,
    .thankyou-content h1,
    .thankyou-content p,
    .next-steps,
    .action-buttons,
    .page-hero,
    .story-block,
    .value-card,
    .approach-content,
    .team-intro,
    .thankyou-wrapper,
    .thankyou-content {
        animation: none !important;
    }
}