* {
    padding  :       0;
   margin: 0;
   box-sizing: border-box;
}


body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
   line-height: 1.6;
   color: #333;
   overflow-x    :   hidden;
}

.main-navigation {
  position: fixed;
  top:       0;
    width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
   z-index: 1000;
    padding: 15px 0;
   border-bottom: 1px solid #e0e0e0;
}

.nav-wrapper {
    max-width  :    1200px;
    margin: 0 auto;
  display: flex;
          justify-content: space-between;
  align-items: center;
    padding: 0 20px;
}

.brand-logo .logo-img {
   height: 45px;
  width: auto;
}

.nav-links {

	   gap: 35px;
    display: flex;


}

.nav-item {
    text-decoration: none;
  color   :       #333;
      -moz-transition: color 0.3s ease;
   font-weight: 500;
  font-size: 16px;
   transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
               -o-transition: color 0.3s ease;
               position: relative;
}

.nav-item:hover, .nav-item.active {
     color: #2563eb;


}

.nav-item.active::after {
  content: '';
    position: absolute;
	bottom: -8px;
    left: 0;
	width: 100%;
   height: 2px;
  background : #2563eb;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
   cursor: pointer;
    gap: 4px;
}

.mobile-toggle span {
  width:    25px;
   height: 3px;
	background: #333;
   transition: 0.3s;
}

.hero-section {
   padding: 120px 20px 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   min-height: 90vh;
 display   :      flex;
  align-items: center;
}

.hero-content {
 max-width     :1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 60px;
  align-items: center;
	
}

.hero-text h1 {
    font-weight: 700;
	 margin-bottom: 25px;
    font-size: 3.2rem;
  line-height: 1.2;
	
}

.hero-description {
   font-size: 1.2rem;
  margin-bottom: 35px;
  opacity  : 0.9;
   line-height: 1.7;

}

.hero-buttons {
    display: flex;
    gap: 20px;
  flex-wrap: wrap;

}

.primary-btn, .secondary-btn {
  padding    :   15px 30px;
    text-decoration: none;
   border-radius: 8px;
   font-weight: 600;
    transition: all 0.3s ease;
   display: inline-block;
}

.primary-btn {
   background: #ffffff;
   color: #2563eb;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.secondary-btn


{
  background: transparent;
   color:     white;
   border:     2px solid white;


}

.secondary-btn:hover {
  background   :   white;
   color: #2563eb;
}

.hero-image img  
  {
  width: 100%;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
	
}

.features-overview    {
   padding: 100px 20px;
	background: #f8fafc;
}

.container {
    max-width:        1200px;
   margin: 0 auto;
}

.features-overview h2 {
   text-align: center;
  font-size    :   2.5rem;
   margin-bottom: 60px;
  color   :   #1a202c;
}

.features-grid {
  display :grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
}

.feature-card {
    background: white; 
	   padding: 35px; 
	    border-radius    :       12px; 
	  box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
	  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img		{
  width: 100%;
   height: 220px;
  object-fit: cover;
	border-radius: 8px;
     margin-bottom   :    25px;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
    color: #2d3748;
}

.feature-card p {
  color: #4a5568;
   line-height: 1.6;
}

.cta-section {
  padding: 100px 20px;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
   display: flex;
  align-items: center;
   max-width: 1200px;
      margin    :       0 auto;
  border-radius: 20px;
	margin-top: -50px;
    position: relative;
  z-index: 10;
}

.cta-content {
   flex: 1;
  padding-right: 40px;
}

.cta-content h2 {
  font-size: 2.3rem;
   margin-bottom: 20px; 
	
}

.cta-content p {
  font-size  :       1.1rem;
    margin-bottom: 30px;
  opacity: 0.95;
}

.cta-button {
    background: white;
    color: #ee5a24;
     padding: 18px 35px;
  text-decoration: none;
    border-radius: 8px;
   font-weight: 600;
   transition: all 0.3s ease;
         display: inline-block;
}

.cta-button:hover {


  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.cta-image {

	   flex: 1;

}

.cta-image img {
    width :    100%;
    border-radius: 12px;
}

.programs-section {
  padding: 120px 20px 100px;
}

.programs-section h2 {
  text-align: center;
   font-size: 2.5rem;
   margin-bottom: 70px;
    color: #1a202c;
}

.programs-list {
    display: flex;
  flex-direction: column;
					gap: 50px;
}

.program-item {
  background: #ffffff;
   padding: 45px;
   border-radius :  15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid #3b82f6;
}

.program-content h3 {
      font-size :  1.6rem;
    margin-bottom: 20px;
   color: #2d3748;
}

.program-content p {
	color: #4a5568;
  margin-bottom: 25px;
                    line-height: 1.7;
}

.program-content ul {
	 list-style: none;
    padding: 0;
}

.program-content li {
  padding: 8px 0; 
   color: #2d3748; 
  position    : relative; 
         padding-left: 25px;
}


.program-content li::before {
  content: '✓';
   position: absolute;
    left: 0;
   color    :    #3b82f6;
   font-weight: bold;
}


.contact-section {
   padding: 100px 20px;
  background: linear-gradient(135deg, #1e3a8a, #3730a3);
   color: white;
}

.contact-wrapper {
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {

    font-size: 2.3rem;

  margin-bottom: 25px;


}

.contact-info p {
    opacity: 0.9;
    margin-bottom: 35px;
    font-size  :      1.1rem;
}

.contact-details {
    display: flex;
  flex-direction: column;
	gap: 15px;
	
}

.contact-item
	{

	   font-size   :1rem;

}

.contact-form     {
  background: rgba(255,255,255,0.1);
   padding:      40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns:        1fr 1fr;
   gap: 20px;
   margin-bottom: 20px;
}

.form-group {
   margin-bottom: 25px;
}

.form-group label {
   display: block;
      margin-bottom: 8px;
    font-weight:500; 

}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
   padding   :15px;
  border: none;
   border-radius: 8px;
  background: rgba(255,255,255,0.9);
   font-size: 16px;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {


  outline: none;
   background :       white;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.3);}

.submit-btn {
   font-size: 16px;
  font-weight: 600;
   background: #ef4444;
        padding: 18px 40px;
   transition: all 0.3s ease;
   cursor: pointer;
   border: none;
    border-radius: 8px;
	color: white;
   width: 100%;
}

.submit-btn:hover {
  -moz-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  background: #dc2626;
}

.main-footer
	{
  background: #1a202c;
	color     :      white;
    padding: 60px 20px 20px;}

.footer-content {
  max-width: 1200px;
                    margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
   margin-bottom: 40px;
}

.footer-brand


{
    margin-bottom: 20px;
}

.footer-logo {
  height: 40px;
    width: auto;
  filter: brightness(0) invert(1); 
	
}

.footer-description {
   color: #a0aec0;
   line-height: 1.6;
}

.footer-section h4 {
   margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
	 margin-bottom: 10px;
}

.footer-links a {
  color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {

 color: white;


}

.contact-info p {
   color: #a0aec0;
   margin-bottom: 5px;
}

.footer-bottom {
  padding-top: 20px;
   border-top: 1px solid #2d3748;
    color: #a0aec0;
   text-align   :      center;
}@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 80px; left: -100%;
        width: 100%; background: white;
        flex-direction: column; padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px; text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        flex-direction: column; text-align: center;
        padding: 60px 20px;
    }
    
    .cta-content {
        padding-right: 0; margin-bottom: 30px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}.about-hero {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%); 
  color: white; 
    padding: 140px 20px 100px; 
        text-align: center;
}

.about-hero-content h1   {
    font-size: 3.5rem;
   margin-bottom :       25px;
  font-weight: 700;


}

.about-hero-subtitle {
   font-size: 1.3rem;
  max-width: 800px;
    margin: 0 auto;
  opacity: 0.9;
      line-height: 1.6;
}

.mission-section {
  padding :   100px 20px;
    background: #f8fafc;
}

.mission-content
{
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap   :       60px;
  align-items: center;
}

.mission-text h2  
  {
	 font-size: 2.3rem;
  margin-bottom: 30px;
    color: #1a202c;
}

.mission-text p {
    font-size: 1.1rem;
  line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;

}


.mission-image img {
    width: 100%;
	border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.story-section {
  padding: 100px 20px;
}

.story-section h2 {

	    text-align: center;
   font-size    :     2.5rem;
   margin-bottom: 70px;
   color: #1a202c;
}

.story-timeline {
    margin: 0 auto;
    position: relative;
	max-width  : 900px;}

.story-timeline::before {
  content: '';

	  position  :      absolute;

	   left: 50%;

	   top: 0;

	    bottom: 0;

	   width: 2px;

	  background: #e2e8f0;

	  transform: translateX(-50%);
}

.timeline-item
	{
    display: flex;
  margin-bottom: 60px;
   position: relative;
}

.timeline-item:nth-child(odd) {
	flex-direction     :      row;
}

.timeline-item:nth-child(even)		{
   flex-direction: row-reverse; 
	
}

.timeline-year {
  background: #3b82f6;
  color: white;
   padding: 15px 25px;
  border-radius: 25px;
  font-weight  :      700;
   font-size: 1.1rem;
   position: absolute;
    left: 50%;
  transform: translateX(-50%);
   z-index: 2;
}

.timeline-content {
   flex: 1;
  padding: 30px;
   background: white;
    border-radius :   12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  margin-top: 40px;
}

.timeline-item:nth-child(odd) .timeline-content {

	    margin-right: 60px;

}  

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 60px;
}

.timeline-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
   color: #2d3748;
}

.timeline-content p {
   color: #4a5568;
  line-height: 1.6;
}

.expertise-section {
    background: #f8fafc;
     padding: 100px 20px;
}

.expertise-section h2 {
	   text-align: center;
       font-size: 2.5rem;
  margin-bottom: 60px;
  color: #1a202c;
	}

.expertise-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
}

.expertise-card {
    background    :     white;
   padding: 35px;
   border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
}



.expertise-card img {

  width: 100%;
    height: 200px;
   object-fit: cover;
    border-radius: 10px;
   margin-bottom: 25px; 



}

.expertise-card h3 {
    font-size: 1.4rem;
    margin-bottom   :     18px;
      color: #2d3748;
}

.expertise-card p {
  line-height: 1.6;
  color: #4a5568;
}

.values-section {
    padding: 100px 20px;
}

.values-section h2 {
   text-align: center;
       font-size: 2.5rem;
       margin-bottom: 60px;
     color: #1a202c;
}  

.values-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}

.value-item    {
    margin-bottom  :        40px;
}

.value-item h3 {
   font-size: 1.4rem;
   margin-bottom: 15px;
   color: #2d3748;
}

.value-item p {

               color: #4a5568;
   line-height: 1.6;
}

.values-image img {
     width  :   100%;
         border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.stats-section {
	 padding: 100px 20px; 
  background: linear-gradient(135deg, #1e3a8a, #3730a3); 
  color    :       white;
}

.stats-section h2 {
  margin-bottom: 60px;
    font-size: 2.5rem;
    text-align: center;
}

.stats-grid {
    display  :  grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 40px;
  text-align: center;}

.stat-item {
    padding: 30px;
}

.stat-number {
   font-size: 3rem;
    font-weight: 700;
  margin-bottom: 10px;
  color: #60a5fa;
}

.stat-label {
	 font-size: 1.1rem;
   opacity: 0.9;
}

.thankyou-main {


   min-height: 100vh;
    padding: 120px 20px 60px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);


}

.thankyou-container {
    margin: 0 auto;
  max-width: 1000px;
}

.thankyou-content {
     text-align   :  center;
}

.success-icon {
   margin-bottom: 40px;
	
}

.checkmark {


  width: 80px;
    height: 80px;
  border-radius: 50%;
    position: relative;
	margin:0 auto;
  background :    #10b981;
	}

.checkmark-circle {
   height: 80px;
   position: absolute;
    border-radius: 50%;
   animation-fill-mode: both;
   animation: checkmark-fill 0.4s ease-in-out 0.4s;
  width: 80px;
    background: #10b981;
}

.checkmark-stem {
	   position: absolute;
   width: 5px;
    height   : 20px;
    background: white;
    left: 38px;
    top: 42px;
  transform: rotate(45deg);
   animation: checkmark-stem 0.2s ease-in-out 0.6s both;
	}

.checkmark-kick {

   position: absolute;
  width: 12px;
    height: 5px;
    background: white;
    left: 30px;
    top: 54px;
  transform: rotate(-45deg);
	animation  :checkmark-kick 0.2s ease-in-out 0.8s both;
	}@keyframes checkmark-fill {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkmark-stem {
    0% { height: 0; }
    100% { height: 20px; }
}

@keyframes checkmark-kick {
    0% { width: 0; }
    100% { width: 12px; }
}.thankyou-content h1 {
   font-size: 2.8rem;
  margin-bottom: 25px;
                    color: #1a202c;
   font-weight: 700;
}

.thankyou-message {
   font-size    : 1.2rem;
	 color: #4a5568;
    margin-bottom: 60px;
   line-height: 1.7;
    max-width: 700px;
   margin-left :     auto;
  margin-right: auto;
}

.next-steps {
    margin-bottom: 80px; 

}

.next-steps h2 {
   font-size: 2.2rem;
	   margin-bottom: 40px;
	    color: #1a202c;


}  

.steps-grid {
            display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap: 30px;
   margin-top: 40px;
}

.step-item {
	 background: white;
  padding: 35px;
  border-radius  :   15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  position    :     relative;
}

.step-number {
   background: #3b82f6;
	 color: white;
  width: 50px;
  height: 50px;
      border-radius: 50%;
   display: flex;
   align-items: center;
  justify-content: center;
   font-size: 1.3rem;
               font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {

	    font-size: 1.3rem;
   margin-bottom: 15px;
   color: #2d3748;


}

.step-item p {
    color: #4a5568; 
	  line-height: 1.6;
}  

.additional-info {
   margin-bottom :     60px;
}

.additional-info h2 {


    font-size: 2.2rem;
  margin-bottom: 40px;
   color: #1a202c;

}

.resources-grid {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
     }

.resource-card	{
               background: white;
    padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   text-align: left;
}

.resource-card img {


  width: 100%;
  height     : 180px;
   object-fit: cover;
   border-radius: 10px;
               margin-bottom: 20px;


}

.resource-card h3 {
   font-size: 1.3rem;
  margin-bottom: 15px;
  color     :    #2d3748;
}

.resource-card p {
   color: #4a5568;
    line-height:        1.6;
}

.contact-reminder	{
   background    :    white;

	   padding: 40px;

	  border-radius: 15px;

	  box-shadow: 0 8px 25px rgba(0,0,0,0.08);

	  margin-bottom: 50px;
}

.contact-reminder h3 {
	 font-size :      1.5rem;
  margin-bottom: 15px;
   color: #2d3748;
}

.contact-reminder p {

	   color: #4a5568;
       margin-bottom: 25px;
}

.contact-reminder .contact-info {
   display: flex; 
    gap: 40px; 
   justify-content: center; 
  flex-wrap: wrap;
}

.contact-reminder .contact-item {
	   color   :#2d3748;
                    font-size: 1rem;
}

.return-navigation {


       display: flex;
   gap: 20px;
    justify-content: center;
  flex-wrap: wrap;
	} 

.return-btn {
    padding   :   15px 30px;
 text-decoration: none;
  border-radius: 8px;
  font-weight    :  600;
    transition: all 0.3s ease;
}



.return-btn.primary {
	background: #3b82f6;
    color: white;
}

.return-btn.primary:hover {
  background    :#2563eb;
  transform: translateY(-2px);
}

.return-btn.secondary {
  background: transparent;
    color: #3b82f6;
		 border: 2px solid #3b82f6;
}

.return-btn.secondary:hover {
   background: #3b82f6;
   color: white;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .mission-content, .values-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-timeline::before {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px; transform: none;
    }
    
    .timeline-item {
        flex-direction: column !important;
    }
    
    .timeline-content {
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .steps-grid, .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-reminder .contact-info {
        flex-direction: column; gap: 15px;
    }
    
    .return-navigation {
        flex-direction: column;
    }
}