* {
  margin:       0;
    padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  color: #333;
  background: #ffffff;
}

.content-wrapper {
    max-width: 1200px;
                    margin: 0 auto;
  padding: 0 20px;
}

.main-navigation {
   position: fixed;
      top: 0;
     width  :       100%;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
      z-index: 1000;
     border-bottom: 1px solid #e5e5e5;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
   justify-content: space-between;
   align-items: center;
      padding: 15px 20px;
}  

.brand-logo {
   height    :    45px;
	width: auto;
}

.nav-links
	{
   display: flex;
   list-style    :   none;
   gap :        30px;
}

.nav-links a {
   text-decoration: none;
 color: #333;
   font-weight :    500;
  transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
  -o-transition    :        color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;


}

.burger-toggle {
  flex-direction: column;
    cursor: pointer;
   display: none;
   gap: 4px;
}

.burger-toggle span {
    width: 25px;
   height: 3px;
   background  :     #333;
  transition: 0.3s;
}

.hero-banner {
	  margin-top: 80px;
   min-height: 600px;
    display: flex;
   align-items: center;
   padding: 60px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);



}

.hero-content {
  flex     :1;
   max-width: 600px;
}

.hero-content h1 {
    font-size:3.5rem;
   font-weight: bold;
    color: #1e293b;
  margin-bottom: 20px;
   line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
   color: #64748b;
  margin-bottom: 30px;
}

.cta-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: #2563eb;
	   color: white;
}

.primary-btn:hover {
	 background: #1d4ed8;
  transform: translateY(-2px);
}

.secondary-btn {
    background: transparent;
   color: #2563eb;
  border: 2px solid #2563eb;
}

.secondary-btn:hover {
   background: #2563eb;
    color: white;
}

.hero-visual {
        flex: 1;
        text-align: center;
}

.hero-visual img {
      max-width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.features-overview {
   padding: 80px 20px;
  background: white;
	}

.features-overview h2 {


    text-align :      center;
	font-size: 2.5rem;
   color: #1e293b;
  margin-bottom: 50px; 
	}

.features-grid {

		 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px; 
	


}

.feature-item     {
    text-align: center;
  padding: 30px;
    border-radius : 12px;
         transition: transform 0.3s ease;
 background: #f8fafc;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item img {
  width: 100%;
  max-width     :       300px;
   height: 200px;
    object-fit: cover;
   border-radius: 8px;
    margin-bottom: 20px;
}

.feature-item h3 {
      font-size: 1.5rem;
    margin-bottom: 15px;
   color: #1e293b;
}

.feature-item p {
	color    :    #64748b;
     line-height:1.6;
}

.training-programs {
    padding: 80px 20px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.program-content {
	  flex: 1;
  max-width     : 600px; 
	
	}

.training-programs .content-wrapper
{
  display: flex;
  align-items: center;
   gap: 60px;
}

.program-content h2 {
  font-size: 2.5rem;
    margin-bottom: 25px;
}

.program-content p {
    font-size: 1.1rem;
	margin-bottom: 30px;
  color: #cbd5e1; 

}

.program-benefits 
 {
    list-style: none;
    margin-bottom: 40px;
}

.program-benefits li {


  padding: 10px 0;
   padding-left: 25px;
 position: relative;
    color: #e2e8f0;
     }

.program-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
	color: #22c55e;
   font-weight: bold;
}

.program-cta {
   display: inline-block;
    -o-transition: all 0.3s ease;
    padding: 15px 30px;
   background: #22c55e;
    -moz-border-radius: 8px;
    color: white;
  -webkit-border-radius: 8px;
  text-decoration: none;
    border-radius: 8px;
  -webkit-transition: all 0.3s ease;
   font-weight: 600;
    transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
}

.program-cta:hover {
   background: #16a34a;
  transform: translateY(-2px);
}

.program-visual {


   flex: 1;
}

.program-visual img {
   width    :100%;
   height: auto;
    border-radius: 12px;
}

.cta-section {
    padding: 80px 20px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
   text-align: center;
      color: white;
}

.cta-container h2 {
   font-size: 2.5rem;
  margin-bottom :20px;
}

.cta-container p {
   font-size: 1.2rem;
    margin-bottom: 30px;
   color: #dbeafe;
}

.cta-button {


	display: inline-block;
  padding: 18px 40px;
  background: white;
	color: #2563eb;
   text-decoration: none;
			border-radius: 8px;
   font-weight: 700;
    font-size: 1.1rem;
   transition: all 0.3s ease;}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-section  {
    padding: 80px 20px;
                    background: #f8fafc;
}

.contact-container {
          max-width: 1200px;
    margin  :   0 auto;
    display: grid;
    grid-template-columns     :        1fr 1fr;
   gap    :        60px;
    align-items: start;
}

.contact-info h2 {
   font-size: 2.2rem;
    color: #1e293b;
   margin-bottom: 20px;
}

.contact-info p {
  color: #64748b;
    margin-bottom: 30px;
   font-size: 1.1rem;
}

.contact-details {
   display: flex;
    flex-direction: column;
  gap: 25px;
} 

.contact-item strong {
      color: #1e293b;
   display: block;
   margin-bottom: 8px; 
	
}

.contact-item p {
  margin: 0;
   	color: #64748b;
}

.contact-form {
    background: white;
    padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #1e293b;
  margin-bottom: 30px;
  font-size    : 1.5rem;
}

.form-group {
       margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
    padding:      15px;
   border: 2px solid #e2e8f0;
	border-radius: 8px;
   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:#2563eb;
}

.submit-btn {
  width    : 100%;
		 padding: 15px;
	background: #2563eb;
    color: white;
    border: none;
   border-radius: 8px;
       font-size: 1.1rem;
   font-weight: 600;
 cursor: pointer;
   transition: all 0.3s ease;
}

.submit-btn:hover {
   background: #1d4ed8;
  transform: translateY(-2px);
}

.site-footer {

    background :   #1e293b;

   color: white;

   padding: 50px 20px 20px;

}

.footer-content {
    max-width: 1200px;
  margin: 0 auto;
   display: grid;
               grid-template-columns     :     2fr 1fr 1fr;
  gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
   height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.footer-brand p {
  color: #94a3b8;
	 line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
     margin-bottom    :  20px;
   color :     #e2e8f0;
}

.footer-links ul {
         list-style: none;
}

.footer-links li  {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {

	    color: #94a3b8;
	margin-bottom: 10px;



}

.footer-bottom {
 text-align: center;
    padding-top: 20px;
	 border-top: 1px solid #334155;
    color    :  #94a3b8; 

}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .burger-toggle {
        display: flex;
    }

    .burger-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-banner {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-content {
        max-width: none;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .training-programs .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .features-overview h2,
    .cta-container h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
}.about-hero {
    margin-top: 80px;

	   height: 400px;

	  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);

	  display: flex;

	  align-items: center;

		position: relative;

	    overflow: hidden;
}


.hero-overlay {
    position: absolute;
     top: 0;
    left: 0;
  right: 0;
   bottom: 0;
  background: rgba(30, 41, 59, 0.8);
  display: flex;
  align-items: center;
    justify-content: center;
}

.hero-content-about {
    text-align: center;
    color: white;
   max-width: 800px;
                    padding   :     0 20px;
}

.hero-content-about h1 {
   font-size: 3rem;
   font-weight: bold;
   margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);


}

.hero-description    {
  font-size: 1.3rem;
               color: #e2e8f0;
    line-height: 1.6;
}

.company-story
	{
         padding: 80px 20px;

    background   :       white;
}

.company-story .content-wrapper {
    gap: 60px;
  grid-template-columns: 1fr 1fr;
	display: grid;
    align-items: center;
}

.story-content h2 {
   font-size: 2.5rem;
    color: #1e293b;
	margin-bottom: 30px;
	
}

.story-content p {
    font-size     :    1.1rem;
  color: #64748b;
    line-height :        1.7;
   margin-bottom: 20px;
}

.story-visual img {
  width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.team-expertise {
    padding: 80px 20px;
   background: #f8fafc;
}

.team-expertise h2 {
       color  :#1e293b;
    text-align: center;
         margin-bottom: 60px;
  font-size     :     2.5rem;
	}

.expertise-grid  
  {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.expertise-card {
  background: white;
  padding: 30px;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover   {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.expertise-card img {
    width: 100%;
   height: 200px;
  object-fit: cover;
  border-radius: 8px;
   margin-bottom   :20px; 
	
}

.expertise-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
   margin-bottom  :     15px;
}

.expertise-card p {
         color: #64748b;
   line-height: 1.6;
}

.methodology-approach {
   padding: 80px 20px;
   background: white;
}

.methodology-approach .content-wrapper {
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items: start;
}

.methodology-text h2


{
         font-size: 2.5rem;
         color: #1e293b;
    margin-bottom: 40px;
}

.approach-steps {
    display: flex;
	flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
   align-items: flex-start;
}

.step-number {
    width: 50px;
      height     :   50px;
    background: #2563eb;
   color: white;
    border-radius: 50%;
   display    :      flex;
    align-items: center;
	justify-content: center;
    font-weight: bold;
   font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.3rem;
    color: #1e293b;
   margin-bottom: 10px;
}

.step-content p {
      color: #64748b;
  line-height: 1.6;

}

.methodology-visual img {
   width: 100%;
      height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
     }

.values-mission {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.values-grid     {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
}

.value-card   {
    background: white;
     padding: 40px;
                       border-radius: 12px;
     box-shadow: 0 5px 20px rgba(0,0,0,0.08);
     text-align: center;
}

.value-card h3 {
   font-size :      1.5rem;

	    color: #1e293b;

	      margin-bottom: 20px;
}

.value-card p {
    color   :     #64748b;
    line-height: 1.6;
} 

.value-card ul {
	   list-style: none;
    text-align: left;

}

.value-card li {

   padding: 8px 0;
    color: #64748b;
                    position: relative;
  padding-left: 25px;}

.value-card li::before {
	  content: "•";
  color: #2563eb;
    position: absolute;
   left: 0;
   font-weight:       bold;

}

.why-choose-us  
  {
   padding: 80px 20px;
                    background: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
  color: #1e293b;
    margin-bottom     :   60px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.reason-item {
    background: #f8fafc;
   transition: transform 0.3s ease;
  padding: 30px;
    text-align: center;
  border-radius: 8px;
}

.reason-item:hover {
	  transform: translateY(-3px);}

.reason-item h4 {
   font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 15px;
}

.reason-item p {
   color: #64748b;
    line-height: 1.6;
}

.thankyou-page {
    margin-top: 80px;
  min-height: calc(100vh - 80px);
   padding    :     60px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.thankyou-container {
    max-width: 1200px;
       margin: 0 auto;
   	display: grid;
     grid-template-columns: 2fr 1fr;
       gap: 60px;
       align-items :    start;
}

.success-content {
  background: white;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.success-icon {
   text-align: center;
  margin-bottom: 30px;
}



.checkmark {
   width: 80px;
    height: 80px;
   border-radius :      50%;
  display: inline-block;
                    stroke-width: 3;
   stroke: #22c55e;
    stroke-miterlimit: 10;
         box-shadow: inset 0px 0px 0px #22c55e;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
  position: relative;
}

.checkmark-circle {
       stroke-dasharray     : 166;
	 stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
	stroke: #22c55e;
    fill:  none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
   position: absolute;
    top: 0;
  left: 0;
	 width     : 80px;
   height: 80px;
  border-radius: 50%;
    border: 3px solid #22c55e;
    background: #f0fdf4;
}

.checkmark-stem,
.checkmark-kick {
    position: absolute;
    background: #22c55e;
    border-radius: 2px;
}

.checkmark-stem {
  top: 35px;
	left: 38px;
   width: 3px;
                    height: 20px;
  transform: rotate(45deg);
    animation    :  checkmark-stem 0.3s ease-in-out 0.9s forwards;
}

.checkmark-kick {
      top: 45px;
  left   :        28px;
          width: 12px;
  height: 3px;
  transform: rotate(-45deg);
	 animation: checkmark-kick 0.3s ease-in-out 1.2s forwards;
}@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 40px #22c55e;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}.success-content h1 {
 font-size: 2.5rem;
  color: #1e293b;
  text-align: center;
   margin-bottom :20px;
}

.success-message  {
  font-size: 1.2rem;
   color: #64748b;
   text-align     :        center;
   margin-bottom: 40px;
     line-height: 1.6;
}

.next-steps {
	margin-bottom: 40px;
}

.next-steps h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
    text-align: center;
  color    :  #1e293b; 
	
}

.steps-timeline {
  flex-direction  :      column;
    gap: 25px;
  display  :        flex;

}

.timeline-item {
    display: flex;
    gap: 20px;
  align-items: flex-start;
}

.timeline-marker {
    width: 40px;
   height: 40px;
   background :  #2563eb;
    color: white;
    border-radius: 50%;
  display :       flex;
  align-items : center;
  justify-content: center;
   font-weight: bold;
    flex-shrink: 0;
}

.timeline-content h3 {
   font-size: 1.2rem;
    color: #1e293b;
	 margin-bottom: 8px; 
	
}

.timeline-content p {
     color: #64748b;
	line-height: 1.5;
}

.contact-info-box {
    background: #f8fafc;
   padding     :      30px;
    border-radius: 12px;
  margin-bottom: 40px;
   border-left  :       4px solid #2563eb;
}

.contact-info-box h3 {
                  color: #1e293b;
   margin-bottom: 15px;
	}

.contact-info-box p	{

	    color: #64748b;
  margin-bottom: 15px;
}

.direct-contact p {
  margin-bottom: 8px;
}

.action-buttons {
	display: flex;
  gap: 20px;
    justify-content: center;
   flex-wrap: wrap;
}

.thankyou-visual {
	position     :       sticky;
    top: 100px;
}

.thankyou-visual img {
  width: 100%;
    height  :        auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	
}@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }

    .hero-content-about h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .company-story .content-wrapper,
    .methodology-approach .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .success-content {
        padding: 30px 20px;
    }

    .success-content h1 {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .thankyou-visual {
        position: static;
    }
}

@media (max-width: 480px) {
    .hero-content-about h1 {
        font-size: 1.8rem;
    }

    .company-story h2,
    .team-expertise h2,
    .methodology-text h2,
    .why-choose-us h2 {
        font-size: 2rem;
    }

    .success-content {
        padding: 25px 15px;
    }

    .steps-timeline {
        gap: 20px;
    }

    .timeline-marker {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}.polo {
  margin    :        5% 20%;
}