* {
    margin: 0;
    padding: 0;
  box-sizing :    border-box;


}

body {

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height    :     1.6;
      color: #333;
}

.main-navbar {
       background: #2c5530;
    padding: 1rem 0;
  position: fixed;
   width: 100%;
   top: 0;
    z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);}

.nav-container {
        max-width     :    1200px;
	 margin: 0 auto;
  display: flex;
  justify-content  :        space-between;
    align-items     :  center;
          padding: 0 20px;
}

.logo-section .nav-logo {
  height: 45px;
   width: auto;
}

.nav-menu {
    display: flex;

	    list-style: none;

	  gap: 2rem;
}



.nav-menu a {
       color    :    white;
    text-decoration: none;
	font-weight: 500;
  transition: color 0.3s ease;
	}

.nav-menu a:hover {
   color: #7ed321;
}

.burger-menu   {
	 gap: 4px;

    cursor: pointer;

  display: none;

    flex-direction    :  column;
}

.burger-menu span {
  background   :  white;
               height: 3px;
    width: 25px;
   border-radius    : 2px;
  transition  :      0.3s;
}

main {
   margin-top: 80px;
}

.hero-section    {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
  padding: 60px 0;
  display: flex;
   align-items: center;
  min-height: 70vh;
}

.hero-section .container {
    max-width    :      1200px;
   margin: 0 auto;
  padding: 0 20px;
	 display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center; 

}

.hero-content h1 {
	 font-size: 2.8rem;
  color: #2c5530;
   margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.2rem;
  color: #666;
	margin-bottom: 2rem;
}

.hero-buttons {
       display: flex;
	 gap: 1rem;
        margin-top: 2rem;
}

.primary-btn, .secondary-btn {
      padding: 12px 30px;
   text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
 display:        inline-block;
}

.primary-btn {
   background: #7ed321;
  color: white;
}

.primary-btn:hover {
    background: #6bb01e;
  transform: translateY(-2px); 

}

.secondary-btn {
    background: transparent;
  color: #2c5530;
  border: 2px solid #2c5530;
}

.secondary-btn:hover {


    background: #2c5530; 
  color: white;
     }

.hero-image img {
   width    :     100%;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(44,85,48,0.2);
}

.services-section {
  padding   :   80px 0;
   background: white;
}

.container

{
	max-width: 1200px;
	margin: 0 auto;
          padding: 0 20px;
}

.services-section h2 {
        text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
   margin-bottom: 3rem;
	
}

.services-grid {

	     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	}

.service-item {
   background: #f9fffe;
    padding     :     2rem;
  border-radius: 12px;
	text-align: center;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  border     :      1px solid #e0f2e0;
}

.service-item:hover {
  transform: translateY(-5px);

	  box-shadow: 0 15px 35px rgba(44,85,48,0.15);
}

.service-item img     {
  width: 100%;
    height: 200px;
   object-fit: cover;
    border-radius: 8px;
   margin-bottom: 1.5rem;
}

.service-item h3 {

  font-size: 1.5rem;
   color: #2c5530;
    margin-bottom: 1rem;
}

.service-item p {
		color: #666;
   line-height: 1.8;
}

.mentoring-section {
	 padding: 80px 0;
    background:       #f8fffe;
}

.mentoring-content {
   display   :       grid;
      grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;


}

.text-area h2 {
         font-size: 2.3rem;
    color: #2c5530;
         margin-bottom: 1.5rem;
	

}

.text-area p     {

	margin-bottom: 2rem;
   line-height: 1.8;
    color: #666;
          font-size: 1.1rem;}

.benefits-list {
   				 list-style: none;
	margin: 2rem 0; 
	
     }

.benefits-list li {
    padding: 8px 0;
    position: relative;
   padding-left: 25px;
   color: #555;
}

.benefits-list li:before {
  content: '✓';
  left: 0;
  position     :        absolute;
   color: #7ed321;
   font-size    :       1.2rem;
   font-weight: bold;
}

.mentoring-img img {
   width: 100%;

	  border-radius: 12px;

	  box-shadow: 0 8px 25px rgba(44,85,48,0.15);
}

.cta-section {
  background: linear-gradient(135deg, #2c5530 0%, #1e3d22 100%);
    padding: 60px 0;
   text-align: center;
   color: white;
}

.cta-content h2 {
   font-size: 2.2rem;
     margin-bottom: 1rem;
}

.cta-content p	{
	 font-size: 1.1rem;
	margin-bottom: 2rem;
   max-width:     600px;
   margin-left: auto;
   margin-right     :   auto;
        line-height  :     1.7;
}

.cta-button {

	   background: #7ed321;
   color: white;
    padding   : 15px 35px;
  text-decoration: none;
	border-radius: 8px;
   font-size: 1.1rem;
   font-weight: 600;
          display: inline-block;
  transition:  all 0.3s ease;

}

.cta-button:hover {
  background: #6bb01e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(126,211,33,0.3);


}

.contact-section {
    padding: 80px 0;
   background: white;
}

.contact-section h2 {
    margin-bottom: 3rem;
  color     : #2c5530;
   font-size: 2.5rem;
   text-align  :        center;
}

.contact-wrapper {
	   display: grid; 
	    grid-template-columns: 1fr 2fr; 
	  gap: 3rem;


}

.contact-info h3 {
	color: #2c5530;
    margin-bottom: 2rem;
  font-size: 1.5rem;
}

.info-item {


               margin-bottom: 1.5rem;}

.info-item strong {
   color: #2c5530;
	 display: block;
   margin-bottom    :  0.5rem;
}

.info-item p	{
   line-height: 1.6;
  color: #666; 

}

.contact-form {
  border-radius: 12px;
    border: 1px solid #e0f2e0;
  background: #f9fffe;
  padding: 2rem;
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
	  display:        block;
   margin-bottom: 0.5rem;
    color: #2c5530;
    font-weight: 500;
     }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
   padding : 12px;
   border: 2px solid #e0f2e0;
	 border-radius: 6px;
    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    : #7ed321;}

.submit-btn {
   background: #2c5530;
    color: white;
   padding: 12px 30px;
    border: none;
    border-radius  :       6px;
					font-size: 1rem;
    font-weight: 600;
  cursor :     pointer;
   transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
               background  :  #1e3d22;
}

.site-footer {
  background: #1a2e1d;
          color   :      white;
    padding: 40px 0 20px; 

}

.footer-container {
   max-width: 1200px;
   margin: 0 auto;
  padding  :       0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
       color: #7ed321;
   margin-bottom: 1rem;
    font-size  :  1.2rem;
	}

.footer-logo {
      height: 40px;
     width: auto;
	margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}



.footer-section ul {
   list-style: none;

}

.footer-section ul li
	{
   margin-bottom: 0.5rem;
}

.footer-section ul li a	{
                    color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
} 

.footer-section ul li a:hover {
  color: #7ed321;
}

.footer-section p {
   color:       #ccc;
    line-height: 1.6;
}

.footer-bottom {
               border-top: 1px solid #333;
                    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
		 color: #999;
}@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #2c5530;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
  .nav-menu.active{
        left: 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
  .hero-buttons{
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons a {
        width: 200px;
        text-align: center;
    }
    
    .mentoring-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .services-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
}.about-hero {
	  background: linear-gradient(135deg, #2c5530 0%, #1e3d22 100%);
   color     : white;
  padding: 120px 0 80px;
   text-align :       center;}

.about-hero-content h1 {
    font-size: 3rem;
   margin-bottom: 1.5rem;
   font-weight: 700;
}

.about-intro {
   font-size  :   1.3rem;
   max-width   :      800px;
   margin: 0 auto;
    line-height :1.7;
    opacity: 0.9;
}

.about-story {
   padding :  80px 0;
  background: white;


}

.story-content {
        display     :    grid;
  grid-template-columns: 2fr 1fr;
    gap: 4rem;
   align-items: center;
}

.story-text h2 {
  font-size: 2.5rem;
       color: #2c5530;
  margin-bottom: 2rem; 
	
}

.story-text p {
   font-size: 1.1rem;
  line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
	
}

.story-image img {
  width: 100%;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(44,85,48,0.15);
}

.mission-values {
   padding   :      80px 0;
   background :   #f8fffe;
}

.mission-values h2 {
  text-align: center;
               font-size: 2.5rem;
    color: #2c5530;
  margin-bottom: 3rem;


}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap:       2rem; 
	
}


.value-item
{
	 background   :  white;
     padding : 2.5rem 2rem;
   border-radius     :        12px;
   text-align: center;
  border-left: 4px solid #7ed321;
   transition: transform 0.3s ease;
}

.value-item:hover {

	  transform: translateY(-5px);
	}

.value-item h3 {
      font-size: 1.4rem; 
	  color :      #2c5530; 
	   margin-bottom: 1rem;
	
}

.value-item p {
    color   :        #666;
  line-height: 1.7;
}

.expertise-section {
	 padding: 80px 0; 
   background   :white;
}

.expertise-content {
   display: grid;
    grid-template-columns: 1fr 1fr;
	 gap: 4rem;
   align-items   :    center;
}

.expertise-text h2 {
    font-size: 2.3rem;
	color: #2c5530;
  margin-bottom: 1.5rem;
}

.expertise-text p 
 {
  font-size: 1.1rem;
   color: #666;
    line-height: 1.8;
  margin-bottom :      2rem;

}

.expertise-points    {
  flex-direction:   column;
  display: flex;
  gap: 1.5rem;
}

.point h4 {
   font-size: 1.2rem;
   color: #2c5530;
    margin-bottom   :        0.5rem;
}

.point p {
    color:      #666;
	font-size: 1rem;
  line-height: 1.6;
	
}

.expertise-image img {
  width :     100%;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(44,85,48,0.15);
}

.approach-section {
   padding: 80px 0;
    background: #f8fffe;
}

.approach-section h2 {
   text-align: center;
    font-size: 2.5rem;
    color  :    #2c5530;
    margin-bottom   :  3rem;
}

.approach-steps {
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;

}

.step {
  background: white;
    -webkit-border-radius: 12px;
   padding: 2rem;
   border-radius: 12px;
   text-align: center;
   position: relative;
    border-top: 3px solid #7ed321;
}

.step-number {
  background: #7ed321;
    color: white;
   -moz-border-radius    :50%;
    width: 50px;
    height: 50px;
  border-radius: 50%;
  display: flex;
                    align-items: center;
	justify-content: center;
   font-size: 1.5rem;
  font-weight: bold;
    margin: 0 auto 1rem;
}



.step h3 {
   font-size: 1.3rem;
    color   :     #2c5530;
   margin-bottom: 1rem;
}

.step p {
   color :#666;
    line-height: 1.7;
               font-size: 0.95rem;
}

.why-choose-us {
   background: white;
  padding     : 80px 0;
}

.why-content {
   display: grid;
 grid-template-columns: 1fr 1fr;
    gap: 4rem;
        align-items: center;
}

.why-text h2 {
        font-size: 2.3rem;
     color: #2c5530;
  margin-bottom: 1.5rem;
}

.why-text p {


   color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
    margin-bottom    :        2rem; 
	
	}  

.why-list {
    list-style:    none;
    margin: 2rem 0;
}

.why-list li {
		padding: 8px 0;
   position: relative;
   padding-left    :      25px;
   color: #555;
    line-height  :     1.6;
}

.why-list li:before		{
  content: '→';
   position: absolute;
	 left: 0;
   color: #7ed321;
		font-weight: bold;
  font-size: 1.2rem;
}

.why-image img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(44,85,48,0.15);
}

.thankyou-hero {

	  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
    padding: 120px 0;
        text-align: center;
	 min-height :        80vh;
    display   :     flex;
    align-items: center;

}

.thankyou-content {
   max-width: 800px;
    margin: 0 auto; 
	
}

.success-icon  
  {
		margin-bottom: 2rem;
}

.checkmark {
   width: 80px;
 height    :80px;
   background: #7ed321;
   color: white;
  border-radius: 50%;
                    display: flex;
 align-items: center;
  justify-content: center;
   font-size:  3rem;
  font-weight: bold;
    margin: 0 auto;
  animation: scaleIn 0.5s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}.thankyou-content h1 {
   font-size: 2.8rem;
  color: #2c5530;
   margin-bottom: 1.5rem;
}

.thankyou-message


{
   font-size: 1.2rem;
	color: #666;
    line-height: 1.7;
   margin-bottom: 3rem;
}

.next-steps {
   background: white;
  padding: 3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(44,85,48,0.1);
    margin: 3rem 0;
   text-align: left;
}

.next-steps h2     {
   text-align: center;
    font-size:        2rem;
    color: #2c5530;
	 margin-bottom: 2rem;
}

.steps-list {
   display  :   flex;

	   flex-direction: column;

	    gap   :        2rem;

}

.step-item {
    display: flex;
	align-items :   flex-start;
  gap: 1.5rem;
}  

.step-icon {
    background: #7ed321;
         color: white;
  width: 40px;
	 height: 40px;
    border-radius: 50%;
  display: flex;
      align-items    :        center;
	 justify-content: center;
    font-weight: bold;
   flex-shrink  :0;
}

.step-text h3 {
     font-size   :      1.2rem;
  color     :    #2c5530;
        margin-bottom: 0.5rem;
	}

.step-text p {
    color  :      #666;
   line-height: 1.6;
}

.additional-info {

	          margin: 3rem 0;
     }

.additional-info h2 {
    font-size    :  1.8rem;
    color: #2c5530;
    margin-bottom:1rem;
}  

.additional-info p {
  line-height: 1.7;
	    font-size: 1.1rem;
		color: #666;
	    margin-bottom: 2rem;
}



.thankyou-buttons

{
    display: flex;
    gap   :1rem;
	justify-content: center;
  margin :        2rem 0;
}

.thankyou-buttons a {
   padding: 12px 25px;
  text-decoration: none;
  border-radius: 8px;
    font-weight: 600;
                    transition: all 0.3s ease;
	display: inline-block;
}

.thankyou-buttons .primary-btn {
   color: white;
	background: #7ed321;
}

.thankyou-buttons .secondary-btn 
 {
   background: transparent;
   color: #2c5530;
    border: 2px solid #2c5530;
}

.contact-reminder {
  background: #2c5530;
  color: white;
   padding: 2rem;
   border-radius: 12px;
    margin: 3rem 0;
}

.contact-reminder h3     {
  font-size: 1.4rem;
  margin-bottom: 1rem;
    color: #7ed321;
} 

.contact-reminder p {
   line-height: 1.6;
	 margin-bottom: 1rem;
}

.office-info {
  opacity: 0.9;
   font-size: 0.95rem;
}

.testimonial-preview {
    padding    :    60px 0;
	  background: #f8fffe;
	   text-align: center;
}

.testimonial-preview h2 {
   font-size: 2rem;
	color: #2c5530;
   margin-bottom: 2rem;
}

.testimonial-item {
      max-width: 700px;
    margin: 0 auto;
   background: white;
    padding : 2.5rem;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(44,85,48,0.1);}

.testimonial-item p  {
        font-size: 1.1rem;
  font-style: italic;
    color: #555;
   line-height     :     1.7;
  margin-bottom: 1.5rem;

}


.testimonial-author {
    font-weight: 600;
    color: #2c5530;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-intro {
        font-size: 1.1rem;
    }

    .story-content,
    .expertise-content,
    .why-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .approach-steps {
        grid-template-columns: 1fr;
    }

    .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .steps-list {
        gap: 1.5rem;
    }

    .thankyou-buttons {
        flex-direction: column;
        align-items: center;
    }

    .thankyou-buttons a {
        width: 200px;
        text-align: center;
    }
    
    .next-steps {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .story-text h2,
    .mission-values h2,
    .expertise-text h2,
    .approach-section h2,
    .why-text h2 {
        font-size: 2rem;
    }

    .checkmark {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }
}.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;
    }
}