* {
    margin: 0;
  padding     :0;
   box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	   line-height: 1.6;
	    color: #333;
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.navbar-container {
                    position: fixed;
    top: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
   z-index: 1000;
   padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-content {
  padding: 0 2rem;
  margin: 0 auto;
  align-items   :       center;
   max-width: 1200px;
    justify-content     :        space-between;
   display: flex;
}

.nav-logo {
  height: 45px;
	width: auto;
}

.nav-links {
  display: flex;
   gap: 2rem;
}

.nav-links a {
      text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
    position: relative;}

.nav-links a:hover {
   color: #667eea;
}

.nav-links a::after {

  content: '';
  position    : absolute;
	width  :        0;
  height: 2px;
  bottom: -5px;
    left: 0;
  background-color: #667eea;
   transition: width 0.3s ease;
	}

.nav-links a:hover::after	{
   width: 100%;
}  

.burger-menu {


   cursor: pointer; 
   gap: 4px; 
  flex-direction: column; 
   display: none;
	}

.burger-menu span {


	width     :        25px;
	 height: 3px;
   background: #333;
   transition: all 0.3s ease; 
	


}

.mobile-nav {
  display  :      none;
   position: fixed;
    top: 80px;
	left: 0;
  width: 100%;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
    z-index: 999;
   padding: 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
	 text-decoration: none;
      color: #333;
  font-weight: 500;
   border-bottom    : 1px solid #eee;
}

.hero-section {
    min-height: 100vh;
  display: flex;
	align-items: center;
  padding    :        120px 2rem 60px;
  max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
   flex: 1;
   color: white; 
	
}

.hero-content h1 {
   font-size: 3.5rem;
               margin-bottom: 1.5rem;
        font-weight:   700;
  line-height    :  1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width :  500px;
}

.hero-buttons {
	display: flex;
    gap: 1.5rem;
   flex-wrap: wrap;
}

.btn-primary, .btn-secondary    {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
	display: inline-block;
   position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
  box-shadow: 0 10px 25px rgba(255,107,107,0.3); 

}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255,107,107,0.4);
}

.btn-secondary {
   background: transparent;
    color     : white;
    border: 2px solid white;
}

.btn-secondary:hover {
  -moz-transform: translateY(-2px);
   background: white;
	color  :    #667eea;
  transform: translateY(-2px); 
	
} 

.hero-visual    {
  flex: 1;
     -ms-flex: 1;
       display: flex;
      justify-content: center;
       align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition:      transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.05); 

}


.container {
   max-width: 1200px;
    margin: 0 auto;
  padding: 0 2rem;
}

.stats-section {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding  :4rem 0;
   margin: 0 2rem;
    border-radius: 20px;
  margin-bottom  :       6rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
  color: white;
    margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-item p   {

  color: rgba(255,255,255,0.9); 
	    font-size: 1.1rem;

}

.services-section {
   background: white;

	 padding: 6rem 0;

  margin: 0 2rem;

   border-radius: 30px;

   margin-bottom: 4rem;
	
}

.services-section h2 {
	 text-align: center;
  font-size     :      2.8rem;
  margin-bottom: 3rem;
   color: #333;
  position  :  relative; 
	
}

.services-section h2::after {
  content: '';
	 position: absolute;
    bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
   width: 80px;
    height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
	border-radius: 2px;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap     :      2.5rem;
               margin-top: 4rem;
}

.service-card {
   background: white;

  border-radius: 15px;

   padding  :       2rem;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

   transition: all 0.3s ease;

   border     :   1px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-img {
    -webkit-border-radius: 10px;
   width: 100%;
	height: 200px;
   object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
			color: #333;
} 

.service-card p {
    margin-bottom: 1.5rem;
	 color: #666;
    line-height: 1.6;
}

.service-card ul {
   list-style: none;
         padding: 0;
}

.service-card li {
	    padding: 0.5rem 0;
    color: #555;
    position: relative;
	 padding-left: 1.5rem;
     }

.service-card li::before {
  content: '✓';
	position:   absolute;
   left:     0;
  color: #667eea;
  font-weight: bold;
}

.cta-section {
  background: linear-gradient(45deg, #667eea, #764ba2);
  padding   :       4rem 0;
  margin: 4rem 2rem;
  border-radius: 25px;
   text-align: center;
    color  :white;
}

.cta-content h2 
 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p
{
  font-size: 1.2rem;
  margin-bottom: 2rem;
   opacity: 0.9;
}

.btn-cta {
         background: white;
 color: #667eea;
  padding: 18px 40px;
   border-radius: 50px;
   text-decoration: none;
    font-weight    :       600;
  font-size: 1.1rem;
   transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255,255,255,0.3);
}

.webinars-section {
               background: white;
         padding: 4rem 0;
   margin: 0 2rem;
   border-radius: 20px;
  margin-bottom: 4rem;
}

.webinars-section h2 {

	   text-align:   center;
    font-size: 2.5rem;
  margin-bottom: 3rem;
  color  :      #333;
	}

.webinar-list {
  display     :       flex;
    flex-direction: column;
   gap :    2rem;
}

.webinar-item {
    display     :flex;
   gap: 2rem;
   padding    :    1.5rem;
    border: 1px solid #eee;
   border-radius: 12px;
   transition: all 0.3s ease;
}

.webinar-item:hover	{

	  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: translateX(5px);

}

.webinar-date {
    text-align: center;
  background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 1rem;
    border-radius: 8px;
  min-width: 80px;
}

.webinar-date .day {
   display: block;
  font-size: 1.8rem;
    font-weight     : bold;
}

.webinar-date .month {
       display: block;
    font-size: 0.9rem;
   text-transform: uppercase;
}

.webinar-info h4 {
    font-size: 1.3rem;
	margin-bottom: 0.5rem;
  color :     #333;
}

.webinar-info p{
    color: #666;
  margin-bottom: 0.5rem;
}

.webinar-time {
   color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.planning-section {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 4rem 0;
    margin     :      0 2rem;
  border-radius: 25px;
   margin-bottom: 4rem;
}

.planning-content {
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.planning-text {
    color: white;
}

.planning-text h2
{
   font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.planning-text p {
    font-size: 1.1rem;

	    margin-bottom: 2rem;

	                    opacity: 0.9;

	    line-height     : 1.7;
}

.planning-benefits {
	display: flex;
   flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  background: rgba(255,255,255,0.1);
    padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
	
}

.benefit-item h4 {
  font-size: 1.2rem;
   margin-bottom: 0.5rem;


}

.benefit-item p {
  opacity: 0.8;
   font-size     :     0.95rem;
}

.planning-img {
    width: 100%;
    height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.contact-section {
   background: white;
  padding: 4rem 0;
  margin: 0 2rem;
   border-radius: 25px;
 margin-bottom: 4rem;
}

.contact-section h2 {
   text-align: center;
  font-size: 2.5rem;
    margin-bottom  :        3rem;
  color: #333;
}

.contact-grid


{

  display: grid;

   grid-template-columns  : 1fr 2fr;

   gap: 4rem;
	}

.contact-info {
         background: #f8f9fa;
	   padding :    2rem;
	   border-radius: 15px;
}

.contact-info h3 {
          margin-bottom    :       2rem;
       color: #333;
      font-size: 1.3rem;
}

.contact-item {
   margin-bottom: 1.5rem;
}

.contact-item strong {
  display: block;
               margin-bottom: 0.5rem;
   color: #667eea;
}

.contact-form {
	    display: grid;
    gap: 1.5rem;
	}

.form-group {

	  display: flex;
    flex-direction     :       column;
     }

.form-group label {

	   margin-bottom: 0.5rem;
   font-weight: 600;
   color: #333;


}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
    border: 2px solid #e0e0e0;
   border-radius: 8px;
    font-size    :       1rem;
                    transition: border-color 0.3s ease; 
	
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
  border-color: #667eea;
}

.submit-btn {


  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
   padding: 15px 30px;
    border: none;
    border-radius: 8px;
   font-size: 1.1rem;
    font-weight: 600;
  cursor: pointer;
	 transition: all 0.3s ease;


}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102,126,234,0.3);
}

.footer-section {
  background: linear-gradient(135deg, #2c3e50, #34495e);
   color: white;
  padding: 3rem 0 1rem;
    margin: 0 2rem;
	border-radius: 25px 25px 0 0;
	
}

.footer-content {

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
   margin-bottom: 2rem;}

.footer-logo {

		height: 40px;
  width: auto;
    margin-bottom: 1rem;
  filter: brightness(0) invert(1);

}

.footer-brand p {
   opacity    :  0.8;
  line-height: 1.6;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    margin-bottom    :    1rem;
   font-size: 1.1rem;
}

.footer-links ul,
.footer-legal ul

{
  list-style: none;
   padding: 0;
}

.footer-links li,
.footer-legal li {

  margin-bottom: 0.5rem;

}

.footer-links a,
.footer-legal a {
  color: rgba(255,255,255,0.8); 
  text-decoration: none; 
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover


{
  color: white;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.footer-bottom {
     border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
}@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-section {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 100px 1rem 40px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .planning-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .webinar-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    max-width: 250px;
  }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 120px 0 80px;
  color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
          margin-bottom: 1.5rem;
		 font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
   line-height: 1.6;
}

.mission-section {
   background: white;
  padding: 6rem 0;
   margin: 0 2rem;
 border-radius: 30px;
  margin-top: -40px;
	margin-bottom: 4rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mission-grid {
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap  :      4rem;
    align-items: center; 

	}

.mission-text h2
{
	  font-size: 2.5rem;
    margin-bottom: 2rem;
   color: #333;
	position: relative;
     }

.mission-text h2::after {
  content: '';
    position: absolute;
  bottom: -10px;
   left: 0;
   width: 60px;
  height :      4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
   border-radius: 2px;
	
}

.mission-text p {
  font-size  :1.1rem;
    line-height: 1.7;
		 color    :    #555;
    margin-bottom: 1.5rem;
}

.mission-img {
   width: 100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.values-section {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
    padding: 5rem 0;
    margin:0 2rem;
  border-radius: 25px;
   margin-bottom:   4rem;
}

.values-section h2 {
   text-align:      center;
	 font-size: 2.5rem;
		 margin-bottom: 3rem;
    color: white;
}

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
    padding: 2rem;
   border-radius: 15px;
    text-align :    center;
    color   :        white;
          transition: transform 0.3s ease;
}

.value-card:hover {

  transform: translateY(-5px);


}

.value-card h3 {
   font-size: 1.3rem;
    margin-bottom: 1rem;
        color: white;
}

.value-card p {
  line-height: 1.6;
                    opacity: 0.9;
}

.story-section {
    background: white;
	padding: 5rem 0;
          margin: 0 2rem;
   border-radius: 25px;
    margin-bottom: 4rem; 
	
}

.story-content h2 {
	text-align: center;
         font-size: 2.5rem;
	margin-bottom: 3rem;
   color: #333;
}

.timeline {
   max-width :      800px;
  margin: 0 auto;
   position:  relative;
}

.timeline::before {
  content: ''; 
   position: absolute; 
    left: 50%; 
   top: 0; 
   bottom: 0; 
    width:   2px; 
  background: linear-gradient(to bottom, #667eea, #764ba2); 
  transform: translateX(-50%);
}

.timeline-item {
  display: flex; 
	   align-items: center; 
	   margin-bottom: 3rem; 
	  position: relative;
}

.timeline-item:nth-child(odd)   {
	    flex-direction: row;


}

.timeline-item:nth-child(even) {
	flex-direction: row-reverse;
}

.timeline-year {
  background: linear-gradient(45deg, #667eea, #764ba2);
   color: white;
		 padding   :    1rem 1.5rem;
   border-radius  :      25px;
  font-weight: bold;
    font-size: 1.1rem;
    min-width: 80px;
	text-align: center;
   position: relative;
   z-index: 2; 

}

.timeline-content     {
 flex: 1;
    padding: 0 2rem;
}

.timeline-content h4 {
   font-size    :     1.3rem;
   margin-bottom: 0.5rem;
   color: #333;


}

.timeline-content p {
               color  :       #666;
    line-height: 1.6;
}

.approach-section {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
   padding: 5rem 0;
   margin     : 0 2rem;
    border-radius: 25px;
  margin-bottom: 4rem;
}

.approach-section h2

{
	text-align: center;
  font-size :       2.5rem;
  margin-bottom: 3rem;
    color    :        white;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap     :    4rem;
   align-items: center;
}

.approach-content {
    color: white;
}

.approach-content h3 {

    font-size: 2rem;
  margin-bottom: 1.5rem;


}

.approach-content p {

	  font-size: 1.1rem;
    line-height     :    1.7;
  margin-bottom: 2rem;
                    opacity: 0.9;
	}

.approach-steps {
   display: flex;

    flex-direction: column;

    gap: 1.5rem;
}

.step-item     {
   display:    flex;
   align-items: flex-start;
  gap: 1rem;
}

.step-number {
  background: rgba(255,255,255,0.2);
   color: white;
    width: 40px;
         height: 40px;
	border-radius: 50%;
   display: flex;
    align-items   : center;
  justify-content: center;
  font-weight: bold;
    flex-shrink :        0;
}

.step-content h4 {

		 font-size: 1.1rem;
   margin-bottom: 0.5rem;

}

.step-content p {
   opacity: 0.8;
  font-size: 0.95rem;
   margin: 0;
}



.approach-img     {
  width: 100%;
       height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.expertise-section {
   background: white;
   padding: 5rem 0;
  margin: 0 2rem;
    border-radius: 25px;
			margin-bottom: 4rem; 

}

.expertise-section h2 {
   text-align: center;

	    font-size: 2.5rem;

	    margin-bottom :    3rem;

	  color: #333;
}

.expertise-grid {
   display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

	          gap: 3rem;
}

.expertise-item {

   text-align  :    center;
   padding: 2rem;
  border-radius: 15px;
  transition: transform 0.3s ease;

}

.expertise-item:hover {
  transform: translateY(-5px);
}

.expertise-img {
       width: 100%;
  height: 250px;
   object-fit: cover;
    border-radius: 10px;
         margin-bottom: 1.5rem;
}

.expertise-item h3 {
  font-size: 1.5rem;
   margin-bottom: 1rem;
  color: #333;
}

.expertise-item p {
    color  :      #666;
  line-height: 1.6; 
	
}

.achievements-section {
  background: linear-gradient(45deg, #667eea, #764ba2);
               padding :    4rem 0;
   margin: 0 2rem;
   border-radius: 25px;
   margin-bottom: 4rem;
}

.achievements-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
   color:       white;
}

.achievements-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement-card {
    text-align: center;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
          padding: 2rem;
    border-radius: 15px;
   color: white;
}

.achievement-card h3 {
    font-size: 3rem;
  margin-bottom:0.5rem;
   font-weight: 700;
}

.achievement-card p {
    opacity: 0.9;
  line-height: 1.5;
}

.commitment-section {
      background: white;
    padding: 4rem 0;
   margin: 0 2rem;
  border-radius: 25px;
   margin-bottom: 4rem;
	text-align: center;}

.commitment-content h2 {
    font-size: 2.5rem;
	  margin-bottom: 2rem;
	   color: #333;
}

.commitment-content p {
   font-size: 1.1rem;
    line-height     : 1.7;
  color: #555;
         max-width: 800px;
   margin: 0 auto 1.5rem;
}

.thankyou-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   min-height: 100vh;
  display: flex;
  align-items: center;
    padding: 120px 0 60px;
}

.thankyou-content {
   text-align: center;
                    color: white;
  max-width: 800px;
        margin: 0 auto; 
	
} 

.success-icon   {
  margin-bottom: 2rem;
}

.checkmark {
   width: 80px;
   height: 80px;
    border-radius: 50%;
    display     : block;
  stroke-width: 2;
    stroke: white;
   stroke-miterlimit: 10;
	margin: 0 auto;
  box-shadow :inset 0px 0px 0px white;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position: relative;
}

.checkmark-circle {
        stroke-dasharray: 166;
   stroke-dashoffset: 166;
    stroke-width: 2;
  stroke-miterlimit: 10;
  stroke  :  white;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
	 width: 80px;
  height: 80px;
    border-radius: 50%;
   position     :     absolute;
   top: 0;
    left    :   0;
    border  :        2px solid white;
}

.checkmark-stem     {
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;

	   stroke-dasharray: 30;

	   stroke-dashoffset    :       30;

	  position  :  absolute;

	  top: 45px;

		left: 28px;

	  width: 15px;

	    height: 2px;

	  background: white;

	  transform: rotate(45deg);
} 

.checkmark-kick {
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  stroke-dasharray: 30;
   stroke-dashoffset: 30;
   position: absolute;
    top : 35px;
  left     :        40px;
    width: 25px;
  height: 2px;
    background:    white;
  transform: rotate(-45deg);
}@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px white;
  }
}.thankyou-content h1 {
   font-size: 3rem;
  margin-bottom: 1rem;
   font-weight: 700;


}

.thankyou-subtitle {
   font-size: 1.3rem;
   opacity: 0.9;
    margin-bottom: 3rem;
}

.thankyou-details   {

  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  margin-bottom: 3rem;


}

.thankyou-details h2 
 {
    font-size: 2rem;
  margin-bottom: 2rem;
}

.next-steps
	{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;

}

.step-card {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
    border-radius  : 15px;
   text-align  :left;
}

.step-card .step-number
{
   background: white;
   color: #667eea;
  width: 40px;
    height    :  40px;
    border-radius: 50%;
       display: flex;
  align-items: center;
	justify-content: center;
    font-weight: bold;
	 margin-bottom :1rem;}

.step-info h3 {
    font-size: 1.2rem;
    margin-bottom     :        0.5rem;
	}

.step-info p   {
      opacity: 0.9;
    line-height: 1.5;
   font-size: 0.95rem;
     }

.contact-reminder {
  background: rgba(255,255,255,0.1);

  backdrop-filter: blur(10px);

  padding  :    2rem;

          border-radius: 15px;

   margin-bottom    :      3rem;
} 

.contact-reminder h3 {
  font-size: 1.5rem;
    margin-bottom: 1rem;
}

.phone-number   {
  background: white;
  color: #667eea;
  padding: 1rem 2rem;
   border-radius: 25px;
    display  :  inline-block;
    margin: 1rem 0;
   font-size     :1.2rem;


}



.office-hours{
  opacity: 0.8;
    font-size: 0.9rem; 
	
}  

.additional-resources
	{
     background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
	padding: 3rem;
    border-radius: 20px;
  margin-bottom: 3rem;}

.additional-resources h3 {
   font-size: 1.8rem;
   margin-bottom: 1rem;
}



.additional-resources p {

	   margin-bottom: 2rem;
  opacity: 0.9;
	}

.resource-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;

}

.resource-card {
  background: rgba(255,255,255,0.1);
   padding: 2rem;
   border-radius: 15px;
   text-align:        left;
}

.resource-img


{
   width: 100%;
        height: 150px;
  object-fit   :    cover;
   border-radius: 10px;
   margin-bottom     :     1rem;




}

.resource-card h4


{
  font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.resource-card p {
	opacity: 0.9;
  line-height: 1.5;
   font-size: 0.95rem;
 margin: 0;
}

.action-buttons {
   display: flex; 
      gap: 1.5rem; 
    justify-content: center; 
                    flex-wrap :      wrap;
}

.testimonial-preview {
   background: white;
    padding: 4rem 0;
	margin: 0 2rem;
   border-radius: 25px;
   margin-bottom: 4rem;
}

.testimonial-preview h2 {
        text-align: center;
        font-size: 2.5rem;
	 margin-bottom:  3rem;
    color: #333;
}

.testimonial-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
          gap: 2rem;
}

.testimonial-card {
       background: #f8f9fa;
  padding: 2rem;
   border-radius: 15px;
                    border-left: 4px solid #667eea;
     }

.testimonial-card p {

    font-style: italic;
  margin-bottom: 1.5rem;
	color: #555;
    line-height: 1.6;
    font-size: 1.05rem;

}

.testimonial-author strong {
    color: #333;
        display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
   color:        #667eea;
    font-size: 0.9rem;
}@media (max-width: 768px) {
  .mission-grid,
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    padding-left: 60px;
  }
  
  .timeline-year {
    position: absolute;
    left: 0;
    min-width: 60px;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
  
  .timeline-content {
    padding: 0;
  }
  
  .thankyou-content h1 {
    font-size: 2.2rem;
  }
  
  .next-steps {
    grid-template-columns: 1fr;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .about-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .about-hero-content h1 {
    font-size: 1.8rem;
  }
  
  .thankyou-content h1 {
    font-size: 1.8rem;
  }
  
  .checkmark {
    width: 60px;
    height: 60px;
  }
  
  .checkmark-circle {
    width: 60px;
    height: 60px;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
  }
  
  .resource-cards {
    grid-template-columns: 1fr;
  }
}.pol {
   margin: 7% 15%;
}