
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
}

@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);
    }
}.success-icon {
  -moz-animation: bounceIn 0.8s ease-out;
   -webkit-animation: bounceIn 0.8s ease-out;
       animation: bounceIn 0.8s ease-out;
}

.success-icon:hover {
   animation: pulseGlow 2s infinite;
}

.content-main,
.content-sidebar {

	  animation: slideInFromLeft 0.8s ease-out;


}

.team-member {
   opacity: 0;
        animation :       slideInFromRight 0.6s ease-out forwards;
}

.team-member:nth-child(1) {
  animation-delay: 0.1s;
}

.team-member:nth-child(2) {
    animation-delay: 0.3s;
} 

.team-member:nth-child(3) {
    animation-delay: 0.5s;
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.02);
    transition: all 0.3s ease;
}

.value-item:hover


{
  transform: translateY(-5px);
    transition: all 0.3s ease;
}  

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
   background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2a5298, #1e3c72);
}@media (max-width: 768px) {
    .content-main h2 {
        font-size: 1.8rem;
    }
    
    .content-main h3 {
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}.btn-primary:focus,
.btn-secondary:focus
	{
		outline  :  3px solid #ffd700;
       outline-offset: 2px;
}

.nav-links a:focus {
   outline: 2px solid #ffd700;
   outline-offset: 2px;
}@media print {
    .premium-nav,
    .footer-section {
        display: none;
    }
    
    .thankyou-section,
    .main-content {
        margin-top: 0;
        background: white !important;
    }
    
    .thankyou-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .premium-nav {
        background: #000;
        border-bottom: 2px solid #fff;
    }
    
    .feature-card,
    .service-item,
    .team-member {
        border: 2px solid #000;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background: #1a1a1a;
        color: #e0e0e0;
    }
    
    .content-sidebar {
        background: #2a2a2a;
        color: #e0e0e0;
    }
    
    .team-member,
    .feature-card {
        background: #2a2a2a;
        color: #e0e0e0;
    }
}.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;
    }
}