.tooltip-container {
    position: relative;
   display: inline-block; 

}

.tooltip-text {
   visibility: hidden;
  opacity: 0;
    width: 220px;
  background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
               text-align: center;
     border-radius: 6px;
  padding: 8px 12px;
                    font-size: 0.9rem;
    position: absolute;
   z-index: 1001;
  bottom: 125%;
  left: 50%;
  margin-left: -110px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);}

.tooltip-text::after {
  content: "";
   position: absolute;
	 top:       100%;
  left: 50%;
   margin-left: -5px;
    border-width: 5px;
  border-style :   solid;
  border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent; 
	
}

.tooltip-container:hover .tooltip-text {
	visibility: visible; 
	    opacity: 1;
}

.tooltip-right .tooltip-text {
  top: -5px;

	   left: 125%;

	 bottom: auto;

		 margin-left: 0;
}

.tooltip-right .tooltip-text::after {
    top: 50%;
	 left: -5px;
		 margin-left :       0;
       margin-top: -5px;
  border-color: transparent rgba(0, 0, 0, 0.9) transparent transparent;
}

.tooltip-left .tooltip-text {
  top: -5px;
   right: 125%;
  left: auto;
    bottom: auto;
	margin-left: 0;
}

.tooltip-left .tooltip-text::after {

	   top: 50%;
  right: -5px;
   left: auto;
    margin-left: 0;
   margin-top: -5px;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.9);}

.notification-banner {
    position: fixed;
   top: 0;
   left :        0;
	right: 0;
  background: linear-gradient(90deg, #667eea, #764ba2);
	color: white;
  padding: 12px;
  text-align: center;
  z-index: 9999;
  transform: translateY(-100%);
   transition     : transform 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.notification-banner.show {
  transform: translateY(0);
}

.notification-banner .close-btn  {
    position: absolute;
	 right: 20px;
   top: 50%;
  transform: translateY(-50%);
    background: none;
  border: none;
  color: white;
   font-size: 1.2rem;
  cursor: pointer;
  padding: 5px;
}

.notification-banner .close-btn:hover {
  opacity: 0.7;
}


.form-tooltip {
               position: relative;
}

.form-tooltip .tooltip-text {
    width: 200px;
   font-size: 0.8rem;
 background-color: #333;
   margin-left: -100px;
}

.loading-spinner {
	display: none;
   width: 20px;
   height: 20px;
	border: 2px solid #f3f3f3;
  border-top: 2px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
   margin: 0 auto; 
	
}@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}.success-message {
	background-color: #d4edda;
    color: #155724;
  padding: 12px;
  border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin: 10px 0;
         display: none;
}

.error-message {
   background-color     :     #f8d7da;
   color: #721c24;
  padding: 12px;
  border: 1px solid #f5c6cb;
   border-radius  :  4px;
    margin: 10px 0;
       display: none;
}

.info-tooltip {

		background-color: #667eea;
    color: white;
  border-radius: 50%;
    width: 18px;
   height: 18px;
  display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 12px;
   font-weight: bold;
    cursor: help;
   margin-left: 5px;


}

.tooltip-fade {
  animation: fadeInTooltip 0.3s ease-in-out;
}@keyframes fadeInTooltip {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .tooltip-text {
        width: 180px;
        margin-left: -90px;
        font-size: 0.8rem;
    }

    .notification-banner {
        padding: 8px;
        font-size: 0.9rem;
    }

    .notification-banner .close-btn {
        right: 10px;
        font-size: 1rem;
    }
}.value-card:hover {
  transform: translateY(-8px);
               transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.team-member:hover {

	  transform: scale(1.02);
	transition: transform 0.3s ease;
     }  

.team-member:hover .member-info {
               background     : #f8f9fa;
}

.stats-section .stat-item {
   position: relative;
   overflow: hidden;
}

.stats-section .stat-item::before {
  content: '';
   position: absolute;
   top :      0;
    left: -100%;
    width :   100%;
    height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
   transition     :       left 0.8s ease;
}

.stats-section .stat-item:hover::before {
    left: 100%;
}



.about-hero {
   position: relative;
}

.about-hero::after {
  content: '';
	   position: absolute;
		bottom: 0;
	  left   :        0;
	   width: 100%;
	    height: 50px;
	  background: linear-gradient(to bottom, transparent, white);
}

.thankyou-section {
            position: relative;
    overflow: hidden;
     }

.thankyou-section::before {
  content: '';
  position   :    absolute;
   top: -50%;
  left: -50%;
   width  :      200%;
	height: 200%;
  background: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255,255,255,0.02) 10px,
            rgba(255,255,255,0.02) 20px
    );
   animation: drift 20s linear infinite;
}@keyframes drift {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}.success-card {

  position: relative;
    z-index: 2; 
	


}

.success-card::before {
  content: '';
   position: absolute;
    top: 0;
               left: 0;
    right: 0;
	 bottom: 0;
    border-radius: 15px;
   padding: 2px;
  background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite   :  exclude;
    opacity:0.3;
}

.next-steps li {
   animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.next-steps li:nth-child(1) {
      animation-delay: 0.2s;


}

.next-steps li:nth-child(2)
	{
   animation-delay: 0.4s;
}



.next-steps li:nth-child(3) {
   animation-delay: 0.6s;
}

.next-steps li:nth-child(4) {
    animation-delay: 0.8s;
}@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.contact-info {
      position: relative;
  overflow: hidden;

}

.contact-info::before {
  content: '';
	   position: absolute;
	  top: -2px;
	  left: -2px;
	   right: -2px;
		bottom: -2px;
	  background: linear-gradient(45deg, #667eea, #764ba2);
	   border-radius: 12px;
		z-index: -1;
}@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .story-text h2 {
        font-size: 1.9rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content h1 {
        font-size: 1.9rem;
    }

    .success-card {
        margin: 0 10px;
    }

    .next-steps {
        padding: 1.5rem;
    }
}.back-button:focus,
.main-navigation a:focus {
  outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

.value-card:focus-within {
	outline: 2px solid #667eea;
   outline-offset: 4px;
}

.team-member img {
    transition: opacity 0.3s ease;
}

.team-member img:not([src]),
.team-member img[src=""] {
	   opacity: 0.3;
  background: #f0f0f0;


}@media print {
    .main-header,
    .main-footer,
    .back-button {
        display: none;
    }

    .thankyou-section {
        padding: 2rem 0;
        min-height: auto;
        background: white;
    }

    .success-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .contact-info {
        background: #f8f9fa;
        color: #333;
    }
}.cookies-policy, .privacy-policy {
          padding :  60px 20px;
    background-color: #f8f9fa;
}

.cookies-policy h1, .privacy-policy h1 {
    font-size: 2.5rem;
   color: #333;
   margin-bottom: 20px;
  text-align: center;
}

.cookies-policy h2, .privacy-policy h2 {
          font-size:      1.8rem;
   color: #333;
    margin-top    :    30px;
  margin-bottom: 10px;
}

.cookies-policy p, .privacy-policy p {
   font-size  :   1rem;
    color :#555;
   line-height: 1.6;
   margin-bottom:   15px;
}

.cookies-policy ul, .privacy-policy ul

{

		margin-left: 20px; 
       margin-bottom:      15px; 
   list-style-type: disc;
}

.cookies-policy ul li, .privacy-policy ul li {
  font-size: 1rem;
  color: #555;
   margin-bottom: 10px;
}