.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.animate {
    opacity: 1;
  transform: translateY(0);
}

.pulse-effect {
    animation: pulseGlow 2s infinite;
}@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}.slide-in-left {
	opacity    :      0;
  transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-in-left.animate {
    opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
	   opacity  :       0;
	  transform: translateX(50px);
	  transition: all 0.8s ease-out;}

.slide-in-right.animate {
   opacity: 1;
  transform: translateX(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.8);
	transition: all 0.5s ease-out;
}

.zoom-in.animate {
   opacity: 1;
  transform: scale(1);
}

.rotate-in {
    opacity  :      0;
  transform: rotate(-10deg) scale(0.9);
  transition: all 0.7s ease-out;
}

.rotate-in.animate {
    opacity: 1;
  transform: rotate(0deg) scale(1);
}

.bounce-in {
   opacity: 0;
  transform: scale(0.3);
   animation-duration: 0.8s;
    animation-fill-mode: both;
	
}

.bounce-in.animate
{
   animation-name: bounceIn;
}@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}.stagger-delay-1 {
   animation-delay: 0.1s;
}

.stagger-delay-2 {
  animation-delay: 0.2s;
}

.stagger-delay-3 {
  animation-delay: 0.3s;
}

.stagger-delay-4 {

	   animation-delay: 0.4s;


}

.stagger-delay-5    {
    animation-delay: 0.5s;
}

.stagger-delay-6 {
    animation-delay :        0.6s;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
	  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hover-scale {
  transition: transform 0.3s ease;


}

.hover-scale:hover {


  transform: scale(1.05);

}

.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip   :  text;
}

.floating-animation {
         animation     :     floating 3s ease-in-out infinite;
}@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}.glow-effect {
  position: relative;
    overflow: hidden;
}

.glow-effect::before {
  content: '';

	  position: absolute;

	   top: 0;

	    left    :        -100%;

		width: 100%;

	    height: 100%;

	  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);

	   transition: left 0.5s;
	
}

.glow-effect:hover::before {
  left: 100%;
}

.typewriter {
    overflow: hidden;
   border-right: 0.15em solid #667eea;
	white-space: nowrap;
   margin :       0 auto;
    letter-spacing: 0.15em;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #667eea; }
}.alert-notification {
  position: fixed;
    top: 20px;
   right: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 1.5rem;
	border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: translateX(400px);
    transition: transform 0.4s ease;
	z-index: 10000;
  max-width: 300px;
}

.alert-notification.show {
  transform: translateX(0);
}

.alert-notification.success {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}


.alert-notification.error   {
  background: linear-gradient(135deg, #f44336 0%, #da190b 100%);
}

.alert-notification.warning {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.parallax-bg {

   background-attachment: fixed;
     background-position: center;
   background-repeat: no-repeat;
    background-size: cover;
}

.text-highlight {
      position: relative;
    display: inline-block;
}

.text-highlight::after {
  content: '';
    position: absolute;
   bottom: 0;
    left: 0;
   width: 0;
	 height   :    3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       transition: width 0.6s ease;
}

.text-highlight:hover::after {
	width: 100%;
}

.card-flip {
  perspective: 1000px;
}

.card-flip-inner {
     position: relative;
    width: 100%;
    height: 100%;
   text-align   :     center;
    transition: transform 0.6s;
               transform-style: preserve-3d;

}

.card-flip:hover .card-flip-inner {
  transform: rotateY(180deg);
}

.card-flip-front,
.card-flip-back {
   position: absolute;
      width: 100%;
  height    :100%;
  backface-visibility     :  hidden;
   border-radius: 15px;
}

.card-flip-back {
  transform: rotateY(180deg);


}

.loading-spinner {
	   border-radius: 50%;
  height: 40px;
  width    :40px;
  border-top :       4px solid #667eea;
   border: 4px solid #f3f3f3;
    animation: spin 1s linear infinite;
    margin: 20px auto;


}@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}.progress-bar {
    width: 100%; 
	    height: 8px; 
	    background   :  #f0f0f0; 
	  border-radius: 4px; 
				overflow: hidden; 
	    position: relative;
}

.progress-bar-fill {
    height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 4px;
   transition: width 0.3s ease;
	 position : relative;
	
}

.progress-bar-fill::after {
	  content: '';
	position: absolute;
   top: 0;
  left: 0;
   bottom: 0;
    right: 0;
  background-image: linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
   background-size: 50px 50px;
  animation: move 2s linear infinite;


}@keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}.ripple-effect {
   position: relative;
   overflow: hidden;
}

.ripple-effect::before {
  content: '';
    position: absolute;
   top: 50%;
  left: 50%;
    width     :        0;
    height: 0;
    border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple-effect:active::before {
   width: 300px;
   height: 300px;
}

.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;
    }
}.footer-logo  {
  height: 80px;
  filter: brightness(0) invert(1);
}