* {
   margin: 0;
   padding: 0;
  box-sizing: border-box;
}

body {


  font-family: 'Arial', sans-serif;
   line-height: 1.6;
  color: #2c3e50;
    background-color: #ffffff;}

.content-container {
    max-width: 1200px;
	margin: 0 auto;
	 padding: 0 20px;
}

.primary-navigation {
   position: fixed;
        top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
   transition: all 0.3s ease;
   border-bottom   :  1px solid #e8e8e8;
}

.primary-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
  max-width: 1200px;
  margin   : 0 auto;
  display: flex;
  justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	
}

.company-logo {
    height: 45px;
    width: auto;
}

.nav-links {
  display: flex;
   list-style: none;
  gap: 40px;
}

.nav-links a {
    text-decoration :      none;
    color  :      #2c3e50;
  font-weight :      500;
	transition  :       color 0.3s ease;
}

.nav-links a:hover {


    color  :    #3498db;


	}

.mobile-menu-trigger {
   display: none;
  flex-direction: column;
   cursor: pointer;
         gap: 4px;
}

.mobile-menu-trigger span {
        width: 25px;
	 height: 3px;
  background  :  #2c3e50;
    transition    :     all 0.3s ease;
}

.hero-section {
	  padding   : 120px 20px 80px;
   display: flex;
	align-items  :     center;
	 min-height: 80vh;
  max-width: 1200px;
  margin: 0 auto;
    gap   :    60px;
     }

.hero-content {
  flex: 1; 

}

.hero-content h1 {
   font-size :       3.2rem;
   color: #2c3e50;
   margin-bottom : 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
   font-size:1.2rem;
   color: #5a6c7d;
   margin-bottom: 30px;
  line-height    :   1.7;}

.action-buttons {
  display: flex;
   gap: 20px;
}

.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  :      #3498db;
   color: white;
}

.primary-btn:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.secondary-btn {
   background: transparent;
  color: #3498db;
	border: 2px solid #3498db;
}

.secondary-btn:hover  {
  background: #3498db;
  color: white;
}

.hero-visual


{


    flex  :   1;
	}

.hero-visual img {
  width: 100%;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}



.expertise-showcase {
       padding: 80px 20px;
  background: #f8f9fa;


}

.expertise-showcase h2 {
	text-align: center;
    font-size :    2.5rem;
  margin-bottom: 50px;
   color :       #2c3e50;
}

.expertise-grid {
      display:grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
}  

.expertise-card {
   background: white;
    border-radius: 12px;
 overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
}

.expertise-card img{
      width: 100%;
  height: 220px;
   object-fit: cover;
}

.expertise-card h3  {
	 padding: 25px 25px 15px;
   font-size    :        1.4rem;
		color: #2c3e50;
}

.expertise-card p {
   padding: 0 25px 25px;
  color: #5a6c7d;
   line-height: 1.6;
}

.services-overview {
   padding: 80px 20px;
}

.services-overview h2 {
	text-align: center;
    font-size: 2.5rem;
  margin-bottom: 50px;
    color:  #2c3e50;
}

.services-list {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-item     {
   padding: 30px;
    border-left   : 4px solid #3498db;
        background: #f8f9fa;
   border-radius: 0 8px 8px 0;
}

.service-item h4 {

	   font-size: 1.3rem;
    color  :     #2c3e50;
  margin-bottom  :15px;

}

.service-item p {
  color: #5a6c7d;
  line-height: 1.6;
}

.training-programs {
     padding: 80px 20px;
	   background: #f8f9fa;

}

.program-content {
    display: flex;
   align-items: center;
               gap: 60px;
    max-width: 1200px;
    margin    :      0 auto;
}

.program-content > div:first-child {
   flex   :       1;
	


}

.program-visual {
  flex    :      1;
}

.training-programs h2 {
   font-size:   2.3rem;
	color: #2c3e50;
   margin-bottom     :  25px;
}  

.training-programs p {
    font-size: 1.1rem;
	   color: #5a6c7d;
	                    margin-bottom: 30px;
	   line-height: 1.7;
}

.benefits-list  {
  list-style     :     none;
}

.benefits-list li {
	padding: 10px 0;
   color: #2c3e50;
  position: relative;
   padding-left: 25px;
}

.benefits-list li:before {
  content: "✓";
  position   :      absolute;
   left: 0;
    color: #27ae60;
    font-weight: bold;
}

.program-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
  text-align: center;
}

.cta-section h2 {
   font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
   font-size: 1.2rem;
  margin-bottom: 30px;
   opacity: 0.9;
}

.cta-button {
          background :       white;
   color: #3498db;
   padding: 18px 40px;
   text-decoration: none;
  border-radius: 8px;
    font-weight: 600;
   display: inline-block;
  transition: all 0.3s ease;
}



.cta-button:hover   {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-section {
    padding: 80px 20px;
  background: #f8f9fa;
}

.contact-section h2 {
   text-align: center;
    font-size: 2.5rem;
	margin-bottom: 50px;
                    color: #2c3e50;
}

.contact-wrapper {
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
  max-width: 1000px;
   margin: 0 auto;
}

.contact-info h3 {
  font-size  :    1.5rem;
   color   :        #2c3e50;
  margin-bottom: 30px;
}

.contact-item {
	margin-bottom: 25px;
}

.contact-item strong {
   color: #2c3e50;
    display: block;
  margin-bottom   : 5px;
}

.contact-item p {
  color     :     #5a6c7d;
}

.contact-form {
   background: white;
   padding: 40px;
   border-radius:        12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;


}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%; 
	   padding: 15px; 
	    border: 2px solid #e8e8e8; 
	    border-radius: 8px; 
	   font-size: 16px; 
	  transition :       border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #3498db;
  outline: none;
}

.submit-btn {
  background: #3498db; 
  color: white; 
    padding: 15px 30px; 
    border: none; 
    border-radius: 8px; 
    font-size: 16px; 
  font-weight: 600; 
  cursor: pointer; 
  transition: all 0.3s ease; 
    width: 100%;
}

.submit-btn:hover  {
    background: #2980b9;
}

.site-footer {
   background: #2c3e50; 
  color: white; 
   padding:50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 40px;

}

.footer-logo img		{
  height: 40px;
  margin-bottom: 20px;
}



.footer-section h4 {
     margin-bottom: 20px;
   color: #ecf0f1;

}

.footer-section ul {

   list-style: none;
	
     }

.footer-section ul li	{
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	   color: #3498db; 
	}

.company-info p {
     color: #bdc3c7;
    margin-bottom: 10px; 
	
}

.footer-bottom {
   text-align: center;
  margin-top     :        40px;
    padding-top: 20px;
   border-top: 1px solid #34495e;
  color: #bdc3c7;}@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-trigger {
        display: flex;
    }
    
    .mobile-menu-trigger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-trigger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-trigger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .program-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .expertise-showcase h2,
    .services-overview h2,
    .training-programs h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 25px;
    }
}.expertise-card,
.service-item,
.cta-section
{
    opacity: 0;
  transform: translateY(30px);
   transition     : all 0.6s ease;
}

.expertise-card.visible,
.service-item.visible,
.cta-section.visible {
  opacity: 1;
	  transform: translateY(0);
}

.nav-links a.active {
    color: #3498db;
    font-weight: 600;
}

.about-hero {
         padding: 120px 20px 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
   max-width: 1200px;
   margin: 0 auto;
}

.about-hero-content > div:first-child {
    flex: 1.2;
}

.about-hero-image {
   flex: 1;
}

.about-hero h1 {
          font-size: 2.8rem;
    color: #2c3e50;
	margin-bottom: 25px;
   line-height :     1.3;
}

.about-hero p {
  font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.about-hero-image img {
    width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.company-story {


   padding: 80px 20px;
	}

.company-story h2 {
    text-align: center;
  font-size: 2.5rem;
                    color: #2c3e50;
   margin-bottom: 60px;
}

.story-timeline	{
   max-width   :  800px;
    margin: 0 auto;
   position: relative;
}

.story-timeline::before {
  content: '';
    position: absolute;
    left: 50%;
    top     :  0;
   bottom: 0;
   width: 3px;
  background: #3498db;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;

	  align-items: center;

	   margin-bottom: 50px;

	   position: relative; 
	
}  

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
   flex-direction: row-reverse;
}

.timeline-year {
  background: #3498db;
   color: white;
   padding: 15px 20px;
  border-radius:    50px;
    font-weight: bold;
    font-size: 1.1rem;
  min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content   {
  flex :        1;
    padding: 0 40px;
}

.timeline-content h3 {
    font-size: 1.4rem;
   margin-bottom: 10px;
   color    : #2c3e50;

}

.timeline-content p {
  color: #5a6c7d;
  line-height: 1.6;
}

.expertise-areas {
    background: #f8f9fa;
   padding: 80px 20px;
}

.expertise-areas h2 {
    margin-bottom: 50px;
  font-size: 2.5rem;
	color   :      #2c3e50;
    text-align: center;
}

.expertise-showcase {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
  max-width  :  1200px;
  margin: 0 auto;
}

.expertise-column {
    background: white; 
	   border-radius:    12px; 
	  overflow: hidden; 
	  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); 
	   transition: transform 0.3s ease;
}

.expertise-column:hover {
  transform: translateY(-8px);
}

.expertise-column img {
   width:100%;
   height: 250px;
    object-fit: cover;
}

.expertise-column h3 {
  padding  :25px 25px 15px;
    font-size   : 1.4rem;
  color: #2c3e50;
}

.expertise-column p {
   padding: 0 25px 30px;
    color: #5a6c7d;
    line-height: 1.7;
	}

.values-section {
    padding :   80px 20px;
}

.values-section h2 {

    text-align: center;
    font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 50px;
     } 

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
} 

.value-item {

    text-align: center;

	    padding :      30px 20px;

	   border-radius   :        10px;

	   background: #f8f9fa;

	    border-top: 4px solid #3498db;

}

.value-item h4 {
					font-size: 1.3rem;
   color: #2c3e50;
                    margin-bottom: 15px;
}

.value-item p {
               color: #5a6c7d;
   line-height: 1.6;
}

.approach-methodology


{
          padding: 80px 20px;
    background: #f8f9fa;
}

.approach-methodology h2  {
   text-align: center;
    font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 50px;
}

.methodology-content {

		 display: flex;
  align-items: flex-start;
  gap    :        60px;
   max-width  :    1200px;
      margin :     0 auto;


}

.methodology-text {
   flex: 1.2;
}

.methodology-visual	{
  flex: 1;
}

.methodology-text h3 {
	 font-size: 1.8rem; 
  color  :    #2c3e50; 
  margin-bottom: 20px; 
	
}

.methodology-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
   line-height: 1.7;
   margin-bottom   :      25px;
}

.methodology-text h4 {
   font-size:       1.3rem;
	color: #2c3e50;
  margin-bottom: 15px;
  margin-top     :     30px;
}

.methodology-list {
   list-style: none;
  padding-left: 0;
}

.methodology-list li {
	 padding: 8px 0;
	color: #2c3e50;
  position: relative;
	padding-left: 25px;
}

.methodology-list li:before {
  content: "→";
  position: absolute;
   left: 0;
  color: #3498db;
     font-weight: bold;
}

.methodology-visual img {
   width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}



.success-metrics {
   padding: 80px 20px;
  background: linear-gradient(135deg, #3498db, #2980b9);
   color: white;
}

.success-metrics h2	{
    text-align: center;
	 font-size     :    2.5rem;
    margin-bottom: 50px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
       gap: 40px;
  max-width: 1000px;
   margin: 0 auto;
}

.metric-item {
  text-align :      center;
}

.metric-number {
    font-size: 3rem;
    margin-bottom: 10px;
  font-weight: bold;
}

.metric-label
	{
	font-size: 1.2rem;

  font-weight: 600;

  margin-bottom: 10px;


}

.metric-item p


{
	 opacity     :   0.9;
   font-size: 0.95rem;
}

.thankyou-hero {
      padding: 120px 20px 60px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
   color: white;
   text-align: center;
     }

.thankyou-content {

	   max-width    :        800px;
   margin: 0 auto;}

.success-icon


{
   margin-bottom: 30px;
}

.checkmark-circle {
  width: 80px;
   height: 80px;
        border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
    align-items     :        center;
  justify-content   :       center;
  margin: 0 auto;
   position: relative;
	
}

.checkmark {
  width: 30px;

	   height: 15px;

	   border-left: 3px solid white;

	   border-bottom: 3px solid white;

	  transform: rotate(-45deg);
}

.thankyou-hero h1 {

	    font-size: 3rem;
    margin-bottom: 20px;
	}

.lead-text {
   font-size: 1.3rem;

   margin-bottom: 40px;

  opacity   :        0.95;
}

.confirmation-details {
  background: rgba(255, 255, 255, 0.1);
	padding: 40px;
   border-radius: 12px;
   margin-top: 40px;
}

.confirmation-details h3 {
	    font-size: 1.6rem;
  margin-bottom: 30px;}

.next-steps {
    display: flex;
		flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
 align-items: flex-start;
  gap: 20px;
      text-align: left;
}

.step-number {
  background: rgba(255, 255, 255, 0.2);
	  width: 40px;
	  height: 40px;
	  border-radius: 50%;
	   display: flex;
	          align-items: center;
	    justify-content: center;
	   font-weight    :       bold;
	  flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 8px;
	font-size: 1.1rem;
}

.step-content p {
  opacity : 0.9;
        line-height  :     1.5;
}

.thankyou-visual {
          margin-top: 40px;
}

.thankyou-visual img {


    max-width     :     600px;
   width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
	}

.additional-resources {
  padding: 80px 20px;
	background    :   #f8f9fa;
}

.additional-resources h2    {
    text-align: center;
    font-size: 2.3rem;
    color :        #2c3e50;
  margin-bottom: 50px;
}

.resources-grid {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
    max-width: 1000px;
  margin: 0 auto;
}

.resource-card {
  background: white;
     border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.resource-card img {
	   width: 100%;
    height: 180px;
  object-fit :  cover;}


.resource-card h3 {
  padding  :     20px 20px 10px;
   color: #2c3e50;
  font-size: 1.2rem;
}

.resource-card p {
    padding: 0 20px 20px;
    color: #5a6c7d;
   line-height: 1.6;
}

.contact-reminder {
    padding   :  60px 20px;
}

.reminder-content {

	                    text-align: center;
  max-width: 700px;
  margin:   0 auto;

}

.reminder-content h2 {
   font-size: 2rem;
    color: #2c3e50;
   margin-bottom: 15px;
}

.reminder-content p   {
    font-size  :       1.1rem;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.contact-options {
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
   margin-top: 30px;}

.contact-option		{
    padding: 25px;
  background: #f8f9fa;
   border-radius: 8px;
  border-left: 4px solid #3498db;
}

.contact-option h4 {
  color: #2c3e50;
   margin-bottom    :10px;
	}

.contact-option p {
  color: #2c3e50;
   font-weight: 500;
				 margin-bottom: 5px;
}

.contact-option small {
   color: #5a6c7d;
}

.return-navigation {
      padding   :       50px 20px;
  text-align: center;
	}

.navigation-options {
  justify-content: center;
    gap: 20px;
     display: flex; 
	
}

.nav-button {
  padding  :     15px 30px;
   text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
  transition: all 0.3s ease;
   display: inline-block;
}

.nav-button.primary {
   background: #3498db;
  color: white;
}

.nav-button.primary:hover {
    background: #2980b9;
  transform: translateY(-2px); 
	
}

.nav-button.secondary {
   background :  transparent;
  color: #3498db;
    border: 2px solid #3498db;
}

.nav-button.secondary:hover {
  background: #3498db;
  color: white;
}@media (max-width: 768px) {
    .about-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .story-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 40px;
    }
    
    .timeline-year {
        margin-bottom: 15px;
    }
    
    .timeline-content {
        padding: 0;
    }
    
    .expertise-showcase {
        grid-template-columns: 1fr;
    }
    
    .methodology-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .thankyou-hero h1 {
        font-size: 2.5rem;
    }
    
    .next-steps {
        gap: 20px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .navigation-options {
        flex-direction: column;
        align-items: center;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-hero h1 {
        font-size: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .confirmation-details {
        padding: 25px;
    }
}.policy-section {
  padding: 120px 20px 80px;
   max-width: 800px;
       margin: 0 auto;
}

.policy-section h1 {
  font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom:      30px;
	 text-align: center;
}

.policy-section h2 {
  font-size: 1.8rem;
   color: #2c3e50;
   margin: 30px 0 15px; 

}  

.policy-section p {
  font-size  :        1.1rem;

   color: #5a6c7d;

    line-height: 1.7;

  margin-bottom: 20px;
}

.policy-section ul {


  list-style: none;
   padding-left:        20px;
  margin-bottom: 20px;}

.policy-section ul li {
   position     :      relative;
    padding-left: 25px;
  color: #5a6c7d;
	line-height: 1.7;
  margin-bottom: 10px;
}

.policy-section ul li:before {
  content: "•";

  position: absolute;

  left: 0;

  color: #3498db;

    font-size: 1.2rem;
}