* {
	margin: 0;
			padding :       0;
   box-sizing: border-box;
}

body {


  font-family: 'Arial', sans-serif;
   line-height: 1.6;
   color: #333;
	}

.main-header {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    position: fixed;
   top: 0;
   width: 100%;
               z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navigation-wrapper  
  {
   display: flex;
   justify-content: space-between;
   align-items: center;
    padding   :     1rem 5%;
   max-width: 1200px;
   margin: 0 auto;
}

.company-logo {
   height: 45px;
    width: auto;
}

.nav-links {
  display: flex; 
	  gap: 2rem;
	}

.nav-links a {
    font-weight: 500;
    color    :      #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover

{
          color: #f39c12;
}

.mobile-toggle {
   display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-toggle span {
         width: 25px;
  height: 3px;
   background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-section {
  display: flex;
   align-items: center;
   min-height: 100vh;
    padding: 120px 5% 80px;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}  

.hero-content		{
	   flex   : 1;
    max-width: 600px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #2c3e50;
   margin-bottom: 1rem;
   font-weight: 700;
}

.hero-subtitle {


    font-size: 1.3rem; 
	   color     :#7f8c8d; 
	   margin-bottom: 1.5rem;

}

.hero-text p		{
   font-size: 1.1rem;
    margin-bottom:        2rem;
    color: #555;
}

.hero-actions {
	display: flex;
    gap    :        1rem;
  flex-wrap   :      wrap;
}

.primary-btn, .secondary-btn   {

   padding: 15px 30px;
  text-decoration: none;
               border-radius: 8px;
    font-weight: 600;
  transition: all 0.3s ease;

}

.primary-btn {
    background: #e74c3c;
               color: #fff;
}

.primary-btn:hover    {
  background: #c0392b;
  transform: translateY(-2px);
}

.secondary-btn {
   background: transparent;
  color: #2c3e50;
   border: 2px solid #2c3e50;
}

.secondary-btn:hover {
 background: #2c3e50;
   color: #fff;
}

.hero-image   {
  flex: 1;
  text-align: center;
}

.hero-image img  {
  max-width: 100%;
    height: auto;
     border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2); 
	
}

.services-section {
  padding: 80px 5%;

	  background: #fff;
}

.container

{
    max-width: 1200px;
        margin: 0 auto;
}

.services-section h2 {
   text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
   background: #f8f9fa;
  border-radius: 12px;
   padding: 2rem;
  text-align: center;
    transition:    transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
    width   :      100%;
  height: 200px;
    object-fit: cover;
  border-radius: 8px;
       margin-bottom: 1.5rem;
}



.service-card h3 {
   font-size: 1.5rem;
   color:#2c3e50;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
    line-height: 1.6;
}

.corporate-training-section

{
   	 padding: 80px 5%;

	  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);

	   color: #fff;
	}

.content-wrapper {
   display: flex;
  align-items: center;
  gap: 3rem;
}

.text-content {
    flex: 1;
}

.text-content h2 {
  font-size: 2.5rem;
   margin-bottom: 1.5rem; 
	
}

.text-content p
{
  font-size: 1.1rem;
   margin-bottom: 2rem;
	line-height: 1.8;
}

.benefits-list {
    margin-bottom: 2rem; 
   list-style: none;
}

.benefits-list li {


   padding: 0.5rem 0;
  position:    relative;
   padding-left: 1.5rem;
}

.benefits-list li:before {
  content: "✓";
    position: absolute;
  left: 0;
   color: #e74c3c;
  font-weight: bold;
}

.cta-button {
   display: inline-block;
    padding: 15px 30px;
	 background: #e74c3c;
    color: #fff;
   text-decoration: none;
    border-radius: 8px;
   font-weight: 600;
   transition: all 0.3s ease;
}

.cta-button:hover {
    background: #c0392b;
  transform: translateY(-2px);
}

.image-content {
  flex    :     1;
}

.image-content img
{
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.cta-section {


         padding:        80px 5%;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
   text-align: center;
  color: #fff;

}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content p 
 {
 font-size: 1.2rem;
	margin-bottom: 2rem;
 max-width :        800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-primary-btn

{
    display: inline-block;
  padding: 18px 40px;
   background: #2c3e50;
    color: #fff;
   text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
	font-size: 1.1rem;
   transition  : all 0.3s ease;
}

.cta-primary-btn:hover 
 {
  background: #34495e;
  transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
}

.contact-section {
   background: #f8f9fa;
  padding: 80px 5%;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.8rem;
   color: #2c3e50;
    margin-bottom: 3rem;
}

.contact-wrapper {
	 display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.contact-form {
   background: #fff;
    padding: 2.5rem;
        border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	}

.form-group {


    margin-bottom: 1.5rem;


}

.form-group label {
       display: block;
  margin-bottom: 0.5rem;
    font-weight: 600;
  color    :        #2c3e50;

}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
  padding: 12px;
   border: 2px solid #ddd;
    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: #3498db;
}

.submit-btn {
  width: 100%;
  padding: 15px;
    background: #e74c3c;
  color: #fff;
   border    :   none;
   border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
  cursor: pointer;
    transition: background 0.3s ease;}

.submit-btn:hover {
   background: #c0392b;
}

.contact-info {
   background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: fit-content;
}

.contact-info h3 {
    color    :     #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-item {
   margin-bottom: 1.5rem;
}

.contact-item strong {
   color: #e74c3c;
   display: block;
	 margin-bottom: 0.5rem;
}

.site-footer {
               background: #2c3e50;
    color: #fff;
  padding: 3rem 5% 1rem;
}

.footer-content {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
    color: #f39c12;
  margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li		{
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
   color: #bdc3c7;
    text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #f39c12;
}

.footer-bottom {
   text-align: center; 
	  padding-top: 2rem; 
	   margin-top: 2rem; 
	  border-top  :     1px solid #34495e; 
	  color: #95a5a6;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #2c3e50;
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 100px 5% 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}.page-hero {
   padding: 120px 5% 60px;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #fff;
  text-align: center;
} 

.page-hero h1 {
   font-size: 3.2rem;
   margin-bottom: 1rem;
  font-weight: 700;
}

.hero-description {
	  font-size: 1.3rem;
                    color: #bdc3c7;
     max-width: 600px;
  margin: 0 auto;
}

.company-story {
    padding: 80px 5%;
    background: #fff;
}

.story-content {
  display: flex;
   align-items: center;
    gap: 3rem;
}

.story-text {
     flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom  : 2rem;
   font-weight: 600;
}

.story-text p

{
  font-size: 1.1rem;
   line-height:     1.8;
  margin-bottom: 1.5rem;
	color: #555;
}

.story-image


{
   flex: 1;
}

.story-image img {
  width: 100%;
    height :   auto;
   border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.mission-vision {
   padding: 80px 5%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-grid {


   display: grid;
  grid-template-columns :     1fr 1fr;
    gap: 3rem;
     } 

.mission-card, .vision-card {
    background: #fff;
  padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.mission-card h3, .vision-card h3 {

  font-size: 1.8rem;
   color: #e74c3c;
    margin-bottom: 1.5rem;
               font-weight  :  600;}

.mission-card p, .vision-card p {
   font-size: 1.1rem;
    line-height: 1.7;
   color: #555;
}

.expertise-section {
    padding: 80px 5%;
   background: #fff;
}

.expertise-section h2 {
       text-align: center;
   font-size: 2.8rem;
                    color :     #2c3e50;
  margin-bottom: 3rem; 
	
}

.expertise-grid   {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem;
	}

.expertise-item {
    text-align: center;
	 padding: 1.5rem;


}

.expertise-item img {
   -moz-border-radius :    10px;
    width: 100%;
   height: 220px;
    object-fit: cover;
	 border-radius: 10px;
    margin-bottom: 1.5rem;
   transition: transform 0.3s ease;
}

.expertise-item img:hover {
  transform: scale(1.05);
}

.expertise-item h4   {
 font-size  :   1.4rem;
   color: #2c3e50;
  margin-bottom: 1rem;
	font-weight: 600;
	
}

.expertise-item p {
  color: #666;
	line-height: 1.6;
}

.team-approach {

	       padding: 80px 5%;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);

}

.approach-content {
   display: flex;
  align-items: center;
          gap: 3rem;
}

.approach-image {
	flex: 1;
}

.approach-image img {
   width: 100%;
   height: auto;
	 border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
   font-size: 2.5rem;
}

.approach-text > p {
    font-size: 1.1rem;
	 line-height: 1.8;
   margin-bottom     :   2rem;
       color:  #555;
}


.approach-features {
		 display: flex; 
	   flex-direction: column; 
	  gap: 1.5rem;
     }

.feature-item h5 {
	          margin-bottom: 0.5rem;
  font-weight: 600;
  color  :    #e74c3c;
    font-size: 1.2rem;
	}

.feature-item p

{
  color: #666;
    line-height: 1.6; 
	
}

.values-section {


  padding: 80px 5%;
  background: #fff;

}

.values-section h2 {
  font-size: 2.8rem;
                    margin-bottom: 3rem;
   text-align  :   center;
  color: #2c3e50;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}  

.value-card {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
         padding: 2rem;
  border-radius: 12px;
   text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {


  transform: translateY(-8px);

}

.value-card h4 {
  font-size   :       1.3rem;
    margin-bottom: 1rem;
   font-weight:        600;
	
}

.value-card p {

  line-height: 1.6;
   opacity: 0.9; 

     }

.why-choose-us
{
   padding: 80px 5%;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color  :       #fff;
}

.why-choose-us h2 {
	 text-align   :center;
		font-size: 2.8rem;
	        margin-bottom: 3rem;
}

.reasons-list {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}


.reason-item {
  background: rgba(255,255,255,0.1);
   padding: 2rem;
   border-radius: 10px;
  backdrop-filter: blur(10px);
}

.reason-item h5 {
  color:      #f39c12;
	font-size: 1.3rem;
          margin-bottom: 1rem;
  font-weight: 600;
}


.reason-item p {

  line-height: 1.7;
  opacity  :      0.9;


}

.thankyou-hero {
       padding: 120px 5% 80px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
   color: #fff;
	text-align: center;

}

.thankyou-content {


   max-width: 600px;
    margin: 0 auto;}

.success-icon {
   margin-bottom: 2rem;
}

.checkmark-circle {


    width: 100px;
	 height: 100px;
  background: rgba(255,255,255,0.2);
    border-radius    : 50%;
   margin: 0 auto;
	 display   : flex;
  align-items: center;
   justify-content: center;
  backdrop-filter: blur(10px);}

.checkmark {
	 width   :  30px;
  height: 15px;
    border-left: 4px solid #fff;
  border-bottom    :       4px solid #fff;
  transform: rotate(-45deg);
}

.thankyou-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
   font-weight: 700;
}

.thankyou-subtitle 
 {
   opacity: 0.9;
   font-size: 1.3rem;
}

.confirmation-details {
    padding: 80px 5%;
    background: #f8f9fa;
}

.details-card {
   max-width: 800px;
  margin: 0 auto;
   background: #fff;
    padding    :       3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.details-card h2 {
    text-align: center;
               font-size:    2.5rem;
	 color: #2c3e50;
  margin-bottom: 3rem;
}

.steps-timeline    {

   display: flex;
         flex-direction: column;
      gap :     2rem;
	}

.timeline-step {
    display: flex;
  align-items: flex-start;
    gap: 1.5rem;
  padding: 1.5rem;
  border-radius  :  8px;
    background: #f8f9fa;
  border-left: 4px solid #e9ecef;
}

.timeline-step.completed {
    background: #d4edda;
	border-left-color: #27ae60;
}

.step-number {
  width: 40px;
	height: 40px;
	 background    :#e9ecef;
    color: #6c757d;
   border-radius: 50%;
	 display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink    :   0;
}

.timeline-step.completed .step-number    {
   background     :  #27ae60;
               color: #fff;
}

.step-content h4 {
	color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-content p {
    color: #666;
  line-height: 1.6;
}

.additional-info {
  padding: 80px 5%;
    background: #fff; 

}

.info-grid   {
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding   :    2rem;
   border-radius   :12px;
   border-left: 4px solid #3498db;
}

.info-card h3 {
       color: #2c3e50;
   margin-bottom: 1rem;
   font-weight: 600;
     }

.info-card p
	{
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}



.contact-detail {
  background: rgba(52, 152, 219, 0.1);
   padding: 1rem;
  border-radius    :6px;
  margin-top: 1rem;
}

.contact-detail strong {
   	color:       #3498db;


}

.info-link {
  color    :        #e74c3c;
  text-decoration  : none;
    -moz-transition: color 0.3s ease;
	font-weight: 600;
   -o-transition: color 0.3s ease;
   transition: color 0.3s ease;
}

.info-link:hover {
               color: #c0392b;
}

.services-preview {
    padding: 80px 5%;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.services-preview h2 {
    text-align: center;
    font-size: 2.8rem;
   color: #2c3e50;
   margin-bottom: 3rem;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.preview-item {
   background: #fff;
   border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.preview-item:hover {
  transform: translateY(-5px);

}

.preview-item img {
   width: 100%;
  height: 200px;
  object-fit    : cover;
}

.preview-item h4 {
   color:    #2c3e50;
    margin: 1.5rem;
    font-weight: 600;
	}

.preview-item p {
  color   :  #666; 
	  margin: 0 1.5rem 1.5rem; 
	    line-height: 1.6;
}

.back-to-site {
  padding: 80px 5%;

  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);

    color: #fff;

  text-align: center;
}

.back-content h3 {
    font-size  :        2.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.back-content p {
    font-size: 1.2rem;
  margin-bottom  :      2rem;
   opacity: 0.9;
}

.back-actions {
   display: flex;
    gap  :  1rem;
 justify-content: center;
    flex-wrap: wrap;
}

.primary-action-btn, .secondary-action-btn {
   padding :       15px 30px;
    text-decoration:        none;
                    border-radius: 8px;
	font-weight: 600;
   transition   :      all 0.3s ease; 
	
}

.primary-action-btn {

	  background: #2c3e50;
    color: #fff;


}

.primary-action-btn:hover {
    background: #34495e;
  transform: translateY(-2px);
}

.secondary-action-btn {
         background: transparent;
  color: #fff;
    border: 2px solid #fff;
}

.secondary-action-btn:hover {
  background: #fff;
    color: #f39c12;
}@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-content {
        flex-direction: column;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-content {
        flex-direction: column-reverse;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-list {
        grid-template-columns: 1fr;
    }
    
    .steps-timeline {
        gap: 1.5rem;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .back-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thankyou-hero h1 {
        font-size: 2.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;
    }
}