@keyframes fadeInUp {
  from {
opacity: 0;
    transform: translateY(30px);
  }
  to {
opacity: 1;
transform: translateY(0);
  }
}

@keyframes slideInLeft {
0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
opacity: 1;
transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
opacity: 1;
    transform: scale(1);
  }
}.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.7s ease-out;
}

.slide-in-right {
    -webkit-animation: slideInRight 0.7s ease-out;
			animation: slideInRight 0.7s ease-out;
	 -moz-animation: slideInRight 0.7s ease-out;
}

.pulse-animation {
    animation: pulse 2s infinite;

    -moz-animation: pulse 2s infinite;
}

.bounce-in {
   animation: bounceIn 0.6s ease-out;
}@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
  }
}.highlight-text {
       color: #667eea;
   font-weight: 600;


}

.section-divider {
   height    :  2px;
  background: linear-gradient(to right, transparent, #667eea, transparent);
   margin: 60px auto;
  max-width: 200px;
}

.stat-box {
	text-align: center;

	   padding :        25px;
}

.stat-box .number {
          font-size  :        3rem;
  color: #764ba2;
    font-weight: 700;
   display: block;
   margin-bottom: 10px;
}

.stat-box .label {
    font-size     :    1.1rem;
   color: #555;
}

.testimonial-card {
                    background: white;
		 padding: 35px;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   margin-bottom: 25px; 
	
}

.testimonial-card p
	{
	   font-style :     italic;
  margin-bottom     :   15px;
   color: #444;

}

.testimonial-card .author {
  font-weight   :        600;
   color: #667eea;
} 

.info-banner {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
	 padding: 30px;
   border-radius: 10px;
    border-left: 5px solid #667eea;
  margin: 30px 0;
}

.info-banner p {
   margin: 0;
         font-size: 1.05rem;
    line-height: 1.7;
}

.process-step {
    position: relative;
   padding-left: 50px;
  margin-bottom: 35px;
}

.process-step::before {
  content: '';
   position: absolute;
   left: 0;
  top: 0;
   width: 35px;
    height     :  35px;
	background: #667eea;
  border-radius: 50%;
    display: flex;
   align-items: center;
   justify-content: center;
    color: white;
    font-weight: 700;
}

.process-step:nth-child(1)::before
{
  content: '1';
    line-height  :     35px;
        text-align: center;
}

.process-step:nth-child(2)::before{
  content: '2';
  line-height: 35px;
  background     :        #764ba2;
    text-align  :   center; 
	
}  

.process-step:nth-child(3)::before {
  content: '3';
    line-height: 35px;
  text-align: center;
}

.process-step h4 {
  margin-bottom    :    10px;
  font-size: 1.4rem;
    color: #2c3e50;
}

.image-gallery {
	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
	margin: 40px 0;


}

.image-gallery img {
    width: 100%;
 height: 200px;
    object-fit   :      cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	 transition: transform 0.3s; 
	
}

.image-gallery img:hover {
  transform: scale(1.05);
}

.quote-block {
     border-left: 4px solid #764ba2;
  padding-left: 25px;
   margin: 30px 0;
    font-size: 1.2rem;
  font-style: italic;
	 color: #555;


}@media (max-width: 768px) {
  .stat-box .number {
    font-size: 2.2rem;
  }

  .process-step {
    padding-left: 45px;
  }

  .image-gallery {
    grid-template-columns: 1fr;
  }
}.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;
  }
}