*    {
   margin: 0;
  padding: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
	 line-height: 1.6;
   color: #333;
  background-color: #fafafa;
}

.container {
    max-width: 1200px; 
  padding: 0 20px; 
	margin: 0 auto;
}

.primary-nav {

	  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 1rem 0;
  position: fixed;
    top     :0;
  width: 100%;
 z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	}

.nav-wrapper {
    max-width: 1200px;
	 margin     :0 auto;
  display: flex;
    justify-content: space-between;
 align-items: center;
	 padding: 0 20px;
	
}

.company-logo {
 height: 45px;
    width: auto;
}


.nav-links {
	    display: flex;
    gap: 2rem;
  list-style     :     none;
}

.nav-links a{
  color: white;
   text-decoration: none;
    font-weight: 500;
  transition: color 0.3s ease;


	}

.nav-links a:hover {

  color: #ffd700;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
   height: 3px;
	margin: 3px 0;
  transition: 0.3s;
	background:white;
	width: 25px;
}

.hero-section {
     margin-top: 80px;
	padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    display: flex;
	 align-items: center;
         min-height     :        600px;

}

.hero-content {
   max-width: 1200px;
  margin: 0 auto;
	 padding: 0 20px;
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items    :      center;
}

.hero-content h1 {
	font-size: 3.2rem;
    margin-bottom: 1.5rem;
  font-weight: 700;
   line-height: 1.2;
} 

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
	opacity: 0.9;
}

.cta-buttons {

	   display: flex; 
	   gap: 1rem; 
	   flex-wrap: wrap;}

.btn-primary, .btn-secondary {
  padding: 12px 24px;
   display: inline-block;
    font-weight     :   600;
    text-decoration: none;
   border-radius: 8px;
  transition   :all 0.3s ease;
}

.btn-primary {
    background-color: #ff6b35;
   color: white;
    border: 2px solid #ff6b35;
}

.btn-primary:hover {
    background-color: #e55a2b;
  transform: translateY(-2px);
}

.btn-secondary		{
   background-color: transparent;
  color     :     white;
    border: 2px solid white;
}

.btn-secondary:hover	{
   background-color: white;
    color: #667eea;
}

.hero-image img {
   width: 100%;
                    height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.intro-section {
   padding: 80px 0;
   background-color: white;
}

.intro-grid{
                    display     :    grid;
  grid-template-columns: 1fr 1fr;
  gap     :    4rem;
  align-items: center;
	

}

.intro-text h2 {
    font-size: 2.5rem;
   margin-bottom: 1.5rem;
   color: #2c3e50;
}

.intro-text p {
	font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color   :      #555;
}

.intro-visual img {
   width: 100%;
      height: auto;
       border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.services-section {
   padding: 80px 0;
    background-color: #f8f9fa;
}

.services-section h2
{
   text-align: center;
               font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap   :  2rem;
}

.service-card {
  background: white;
	 border-radius  :      12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
	
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card img {
	 width: 100%;

	  -webkit-border-radius: 8px;

	    -moz-border-radius: 8px;

	    height: 200px;

	  object-fit: cover;

	  border-radius: 8px;

	   margin-bottom: 1.5rem;
	
}

.service-card h3 {
   font-size: 1.5rem;
  margin-bottom: 1rem;
   color: #2c3e50;
}

.service-card p{
    color: #666;
  line-height: 1.6;
}



.benefits-section {
   padding: 80px 0;
   background-color: white; 

}

.benefits-section h2 {
    text-align: center;
    color: #2c3e50;
                    margin-bottom: 3rem;
    font-size: 2.8rem;
} 

.benefits-grid {


     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-item h3 {
   font-size:        1.3rem;
  margin-bottom: 1rem;
}

.benefit-item p  {
  font-size: 0.95rem;
    opacity: 0.9;
}

.cta-section {
     padding: 80px 0;
     background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
     color: white;
     text-align: center;
	}

.cta-content h2 {
	margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.cta-content p  
  {
  font-size: 1.2rem;
  margin-bottom: 2rem;
   opacity: 0.9;
}

.btn-cta {
   background-color  :      white;
   color     :  #ff6b35;
   padding: 15px 30px;
    border-radius: 8px;
   text-decoration     :        none;
  font-weight: 700;
    font-size:  1.1rem;
  transition: all 0.3s ease;
     display   :      inline-block;

}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.contact-section {
	 padding   : 80px 0;
  background-color: #f8f9fa;
}

.contact-section h2  {
    text-align: center;
   font-size: 2.8rem;
   margin-bottom: 3rem;
    color   :       #2c3e50;
}

.contact-wrapper {
   display: grid;
         grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
   font-size: 1.8rem;
   margin-bottom: 2rem;
  color: #2c3e50;
}

.contact-item {

  margin-bottom   : 2rem;
	}

.contact-item strong 
 {
   color: #2c3e50;
    font-size: 1.1rem;
}

.contact-item p {
  color: #666;
    margin-top: 0.5rem;
}

.contact-form
{
       background: white;
  padding: 2.5rem;
	 border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);


}

.form-group {
   margin-bottom: 1.5rem;
}


.form-group label {
  display: block;
   margin-bottom: 0.5rem;
  color: #2c3e50;
   font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
  border: 2px solid #e1e5e9;
   border-radius: 6px;
  transition: border-color 0.3s ease;
  padding   :   12px;
	 font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline   :    none;
  border-color     : #667eea;
}

.btn-submit {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 15px 30px;
   border: none;
  border-radius: 8px;
  font-size: 1.1rem;
   font-weight: 600;
  cursor: pointer;
    transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
} 

.main-footer {
   background-color    :  #2c3e50; 
	    color: white; 
	   padding: 40px 0 20px;


}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
   margin-bottom: 2rem;
}

.footer-logo {
	height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
    margin-bottom: 1rem;
      font-size: 1.2rem;

}

.footer-section ul {
   list-style: none;
}

.footer-section ul li  
  {

	   margin-bottom: 0.5rem;
	}

.footer-section a {
  color:#bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
   color: white;
}

.footer-section p {
  color    :       #bdc3c7;
	line-height: 1.6;
}

.footer-bottom {
   border-top: 1px solid #34495e;
  padding-top    :   1rem;
   text-align: center;
    color: #bdc3c7;
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .services-section h2,
    .benefits-section h2,
    .contact-section h2 {
        font-size: 2.2rem;
    }
}.about-hero	{
     margin-top: 80px;
    padding: 100px 0 60px;
     background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
                       color: white;
      text-align: center;
     }

.about-hero-content h1		{
   font-size: 3rem;
       margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-hero-content p {


   font-size  : 1.3rem;
  opacity: 0.9;
    max-width: 600px;
   margin: 0 auto;



}

.story-section {
    padding: 80px 0;
   background-color:        white;
}

.story-grid {
       display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;}

.story-content h2 {
  font-size:      2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-content p {
	    font-size: 1.1rem;
  margin-bottom:       1.5rem;
   color: #555;
    line-height   :     1.7;
     }

.story-image img {
   width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.expertise-section {
        padding: 80px 0;
  background-color: #f8f9fa; 

}

.expertise-section h2     {
	text-align: center;
    font-size: 2.8rem;
       margin-bottom: 3rem;
  color: #2c3e50;
}

.expertise-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background: white;
 padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
}

.expertise-card h3 {
   font-size: 1.4rem;
    margin-bottom: 1rem;
   color: #2c3e50;
}

.expertise-card p {
	color: #666;
	line-height: 1.6;
}

.approach-section {
  padding: 80px 0;
  background-color: white;
}

.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
		align-items: start;
}

.approach-text h2 {
   font-size: 2.5rem;
   margin-bottom: 1.5rem;
  color: #2c3e50;
	}

.approach-text > p {
	   font-size: 1.1rem;
  margin-bottom: 2rem;
    color: #555;


}

.process-steps {
   margin-top: 2rem;
}

.step-item {
	 margin-bottom: 1.5rem;

   padding-left: 2rem;

   border-left :  3px solid #667eea;

}

.step-item h4 {


  font-size: 1.2rem;
    margin-bottom  : 0.5rem;
   color   :     #2c3e50;}

.step-item p {
   color   :  #666;
    font-size: 0.95rem;
}

.approach-visual img {
  width: 100%;
   height :      auto;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.results-section {

	  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
  text-align    :    center;


}

.results-section h2  {


 font-size: 2.8rem;
   margin-bottom: 3rem;


}

.results-stats


{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap :      2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
   font-size  :3rem;
    font-weight: 700;
   margin-bottom: 0.5rem;
    color: #ffd700;
}

.stat-label {
 font-size: 1.1rem;
   opacity: 0.9;
}

.training-showcase {
	padding: 80px 0;
  background-color: #f8f9fa;
}

.training-grid {
    display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.training-image img {
   width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.training-content h2 {
    font-size: 2.5rem;
  margin-bottom: 1.5rem;
    color: #2c3e50;
}

.training-content p {
  font-size: 1.1rem;
   margin-bottom: 1.5rem;
    color: #555;
  line-height: 1.7; 
	
}

.corporate-section {
   padding: 80px 0;
   background-color: white;
}

.corporate-content {
  display:   grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
}

.corporate-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.corporate-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
    line-height: 1.7;
}

.corporate-image img {
    width: 100%;
  height    :  auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.workshop-highlight {
 padding   :      80px 0;
      background-color: #f8f9fa;
}

.workshop-content h2 {
  text-align: center;
   font-size: 2.8rem;
  margin-bottom: 3rem;
     color     :  #2c3e50;
}

.workshop-details {
  display: grid;

   grid-template-columns: 1fr 1fr;

  gap: 4rem;

 align-items: center;
}

.workshop-text p {
    font-size: 1.1rem;
               margin-bottom :1.5rem;
    color: #555;
    line-height    :      1.7;
}

.workshop-image img {
  width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.values-section {
          padding: 80px 0;
  background-color: white;
}

.values-section h2 {
    text-align:  center;
	font-size: 2.8rem;
   margin-bottom   :     3rem;
  color: #2c3e50;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.value-card {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        text-align  :        center;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.value-card p {
  opacity  :        0.9;
			line-height: 1.6;
}

.thankyou-hero {
    margin-top: 80px;
    padding: 100px 0;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color   :      white;
    text-align: center;
	
}

.thankyou-content {
   max-width: 600px;
   margin: 0 auto;
}

.success-icon{
		margin-bottom: 2rem;
}

.checkmark-circle {
    width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
  margin: 0 auto;
    display    :   flex;
  align-items: center;
    justify-content    :        center;
                    position   :     relative;
}

.checkmark {
  width: 25px;
  height: 15px;
  border-left: 3px solid white;
   border-bottom: 3px solid white;
  transform: rotate(-45deg); 

}

.thankyou-content h1 {
    font-size: 3rem;
  margin-bottom: 1.5rem;
   font-weight: 700;
}

.lead-text {
	font-size: 1.2rem;
    opacity: 0.9;
  line-height: 1.6;
}

.next-steps-section {
    padding: 80px 0;
   background-color     :    white;
}

.next-steps-section h2 {
  text-align: center;
               font-size: 2.8rem;
        margin-bottom: 3rem;
  color: #2c3e50;
}

.steps-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
  background: #f8f9fa;
  padding: 2.5rem;
    border-radius :  12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number {
  width   :50px;
    height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   border-radius: 50%;
   display: flex;
   align-items:   center;
  justify-content: center;
  font-size: 1.5rem;
    font-weight: 700;
  margin: 0 auto 1.5rem;
}  

.step-card h3 {
  font-size: 1.3rem;
   margin-bottom: 1rem;
    color: #2c3e50;
}

.step-card p {
    line-height: 1.6;
  color: #666;


}

.testimonial-section {
  padding: 80px 0;
   background-color: #f8f9fa;
}

.testimonial-content h2 {
   text-align: center;
   font-size:   2.8rem;
   margin-bottom: 3rem;
       color: #2c3e50;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.testimonial-card  
  {
   background: white;
    padding :2.5rem;
  border-radius   :    12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.testimonial-card p {

    font-size: 1.1rem;
   color: #555;
   line-height     :     1.6;
  margin-bottom: 1.5rem;
  font-style     :  italic;


}

.testimonial-author strong {
	color: #2c3e50;
  font-size: 1.1rem;
} 

.testimonial-author span


{
    color: #666;
  font-size:   0.9rem;
    display: block;
  margin-top: 0.3rem;
}

.resources-section {
	padding: 80px 0;
  background-color: white;
}

.resources-section h2 {
    text-align: center;
         font-size: 2.8rem;
	margin-bottom: 3rem;
  color: #2c3e50;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.resource-item {
   padding: 2rem;
	border-left     :    4px solid #667eea;
    background-color: #f8f9fa;
   border-radius: 0 8px 8px 0;
}

.resource-item h3  
  {
  font-size: 1.3rem;
    margin-bottom: 1rem;
   color: #2c3e50;
}

.resource-item p {
    color: #666;
   line-height    :      1.6;
}

.additional-info {

      padding: 80px 0;
   background-color: #f8f9fa;

}

.info-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
       gap: 4rem;
   align-items: center;
}  

.info-text h2 {

	  font-size: 2.5rem;
   margin-bottom: 1.5rem;
  color: #2c3e50;
	}

.info-text p {

    font-size: 1.1rem;
  margin-bottom: 1.5rem;
    color: #555;
  line-height  :       1.7;

}

.contact-info-small 
 {


   margin-top: 2rem;
    padding :        1.5rem;
  background-color: white;
         border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);

}

.contact-info-small p {
    margin-bottom: 0.5rem;
    font-size     :        1rem;


}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.return-links {
          padding: 60px 0;
	background-color   :     white;
   text-align: center;
}

.links-content h3 {
  font-size: 1.8rem;
    margin-bottom: 2rem;
  color: #2c3e50;
}

.link-buttons {
   flex-wrap: wrap;
  justify-content: center;
   gap: 1rem;
    display   :flex;
}@media (max-width: 768px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .story-grid,
    .approach-content,
    .training-grid,
    .corporate-content,
    .workshop-details,
    .info-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .results-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expertise-grid,
    .values-grid,
    .steps-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .link-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}.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;
    }
}