.loading-overlay {
	position: fixed;
   top: 0;
  left: 0;
   width: 100%;
          height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
   justify-content: center;
  align-items: center;
    z-index: 9999;
	opacity: 1;
   transition: opacity 0.5s ease;
}

.loading-overlay.hidden

{
    opacity:      0;
  pointer-events: none;
}

.spinner {
   width: 60px;
    height:        60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
   border-top: 4px solid #ffffff;
    border-radius: 50%;
	animation: spin 1s linear infinite;
	 position: relative;
}

.spinner::before {
  content: '';
  position     :      absolute;
    top: -8px;
    left: -8px;
    right: -8px;
     bottom: -8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
   animation: spin 2s linear infinite reverse;
}@keyframes spin {
    0% { 
        transform: rotate(0deg); 
    }
    100% { 
        transform: rotate(360deg); 
    }
}.loading-text {

	    position    :    absolute;
      bottom: 30%;
      left: 50%;
     transform: translateX(-50%);
     color: white;
       font-size: 1.2rem;
     font-weight :500;
       animation: pulse 2s infinite;}@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}.creative-loader {
  position: relative;
    width: 80px;
    height: 80px;
}

.creative-loader .dot {
   position: absolute;
    width: 12px;
    height: 12px;
   background: white;
   border-radius: 50%;
    animation: creative-bounce 1.4s infinite ease-in-out both;
}

.creative-loader .dot:nth-child(1) {
   top: 0;
    left: 35px;
   animation-delay: -0.32s;
}

.creative-loader .dot:nth-child(2) {
 top  :    10px;
   right: 10px;
    animation-delay    :     -0.16s;
}

.creative-loader .dot:nth-child(3) {

	   bottom: 10px;
	 right  :      10px;
	 animation-delay: 0s;}

.creative-loader .dot:nth-child(4) {

	     bottom:       0;
  left: 35px;
  animation-delay: 0.16s;
}

.creative-loader .dot:nth-child(5) {
 bottom: 10px;
  left: 10px;
   animation-delay: 0.32s;
}

.creative-loader .dot:nth-child(6) {
    top: 10px;
  left: 10px;
               animation-delay: 0.48s;
}@keyframes creative-bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}.page-transition     {
    position :      fixed;
   top: 0;
  left: 0;
    width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #667eea, #764ba2);
    z-index  :  8888;
    opacity: 0;
  pointer-events: none;
   transition: opacity 0.3s ease;
}

.page-transition.active
	{
    opacity: 1;
   pointer-events: all;
}

.transition-spinner {
  position: absolute;
    top: 50%;
   left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
   border-top: 3px solid white;
   border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.form-loading {
  position: relative;
    overflow: hidden;
}


.form-loading::after {
  content: '';
   position: absolute;
   top: 0;
  left: -100%;
  width: 100%;
    height    :       100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
	 animation: form-shimmer 1.5s infinite;
}@keyframes form-shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}.button-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.button-loading::before  
  {
  content: '';
   position: absolute;
   top   :    50%;
   left: 50%;
  transform: translate(-50%, -50%);
        width: 20px;
   height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
  border-radius: 50%;
   animation: spin 1s linear infinite;
}@media (max-width: 768px) {
    .spinner {
        width: 50px;
        height: 50px;
    }
    
    .loading-text {
        font-size: 1rem;
        bottom: 25%;
    }
    
    .creative-loader {
        width: 60px;
        height: 60px;
    }
    
    .creative-loader .dot {
        width: 10px;
        height: 10px;
    }
}.page-transition-effect {
	          opacity: 0;
  transition    :       all 0.6s ease;
  transform: translateY(20px);
     }

.page-transition-effect.loaded {
   opacity: 1;
  transform: translateY(0);
}

.value-card {
    cursor: pointer;
   position: relative;
               overflow: hidden;
	
}

.value-card::before {
  content: '';
    position: absolute;
	top: 0;
    left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.value-card:hover::before {
   left: 100%;
}

.about-image
	{
	 position  :      relative;
  overflow: hidden;
}

.about-image::after {
  content: '';
   position: absolute;
   top: 0;
  left: 0;
     right: 0;
   bottom: 0;
  background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  opacity: 0;
 transition  :     opacity 0.3s ease;
}

.about-image:hover::after {
    opacity:   1;
}

.approach-image {
  position: relative;

	   overflow: hidden;
}

.approach-image::after {
  content: '';
    position: absolute;
        top: 0;
   left: 0;
  right   :      0;
	bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
    transition: opacity 0.3s ease;
}

.approach-image:hover::after {
   opacity: 1;
}

.stat-item {


  position: relative;
   overflow :hidden;

}  

.stat-item::before {
  content: '';
	position: absolute;
    top: 0;
    left: -100%;
	width  :   100%;
	height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
    transition: left 0.8s ease;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-number {
    position: relative;
    display: inline-block;
}

.thankyou-container {
    position: relative;
}

.thankyou-container::after {
  content: '';
    position: absolute;
   bottom  :       -10px;
       left: 50%;
  transform: translateX(-50%);
    width: 80%;
  height: 20px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 50%;
  filter: blur(15px);
}

.success-icon {
   position: relative;
}

.success-icon::after {
  content: '';
   position   :    absolute;
   top: -20px;
  left: -20px;
         right: -20px;
   bottom: -20px;
  border: 2px solid rgba(39, 174, 96, 0.2);
    border-radius: 50%;
   animation  :pulse-ring 2s infinite; 
	
}@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}.steps-list li {
    transition  : all 0.3s ease;
}

.steps-list li:hover 
 {
  transform: translateX(10px);
    color: #2c3e50;


}

.btn {
  position: relative;
   overflow: hidden;
}

.btn::before {
  content: '';
  position  :     absolute;
   top: 50%;
   left: 50%;
  width: 0;
    height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
	transition: width 0.3s ease, height 0.3s ease;
}

.btn:hover::before   {
  height: 300px;
  width: 300px;
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: '';
    position: absolute;
    bottom: -5px;
  left: 0;
  right: 0;
    height: 2px;
    background: #667eea;
   border-radius: 1px;
}

html {
  scroll-behavior: smooth;
}

.btn:focus,
.nav-links a:focus {
		outline: 2px solid #667eea;

    outline-offset    :    2px;
}@media (max-width: 768px) {
    .thankyou-container::after {
        display: none;
    }
    
    .value-card:hover {
        transform: translateY(-5px);
    }
    
    .stat-item:hover::before {
        left: 0;
        width: 100%;
        transition: none;
    }
}

@media print {
    nav,
    footer,
    .btn,
    .burger {
        display: none !important;
    }
    
    .thankyou-container,
    .about-grid,
    .approach-content {
        box-shadow: none !important;
        background: white !important;
    }
    
    .page-header,
    .approach-section {
        background: white !important;
        color: black !important;
    }
}

@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) {
    .value-card,
    .stat-item,
    .thankyou-container {
        border: 2px solid #000;
    }
    
    .btn-primary {
        background: #000;
        color: #fff;
    }
    
    .btn-secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}.cookies-policy, .privacy-policy {
  max-width: 800px;
  margin: 0 auto;
    padding: 40px 20px;
  line-height: 1.6;
}

.cookies-policy h1, .privacy-policy h1 {
    margin-bottom: 20px;
   color: #333;
	 font-size: 2.5rem;
}

.cookies-policy h2, .privacy-policy h2 {
   font-size: 1.8rem;
   color: #333;
	 margin-top: 30px;
       margin-bottom: 15px;
}

.cookies-policy p, .privacy-policy p {
   color: #555;
    font-size: 1rem;
               margin-bottom: 15px;
}

.cookies-policy ul, .privacy-policy ul {
    list-style-type: disc;
    margin-left: 20px;
  margin-bottom   :    20px;
}

.cookies-policy li, .privacy-policy li {
  font-size: 1rem;
    color     :  #555;
    margin-bottom: 10px;
}

.pol {
   margin: 7% 15%;
}