* {
	margin: 0;
    padding: 0;
   box-sizing: border-box;
}

html {
        scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	   line-height: 1.6;

	  color: #2c3e50;

	  background-color: #fafbfc;
}

a {
	text-decoration: none;
   color: inherit;
}

button {
  cursor :     pointer;
   border: none;
	
}

primary-nav {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
   padding    :     1rem 0;
    position: sticky;
   top: 0;
	z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1200px;
  margin   :        0 auto;
   padding :   0 2rem;
               display: flex;
  justify-content: space-between;
    align-items: center;
}

.brand-mark {
    flex-shrink: 0;
}

.logo-emblem {
    height: 40px;
   width: auto;
   display:  block; 

}

.nav-list {
       display: flex;
  list-style: none;
  gap: 2rem;

}

.nav-list a {


	font-weight :   500;
   color    :#2c3e50;
   transition: color 0.3s ease;
  font-size: 0.95rem;}

.nav-list a:hover {
	color: #3498db;
}

.menu-toggle


{
   display: none;
 flex-direction    :      column;
   background :       transparent;
   width: 28px;
  height: 28px;
   gap: 5px;
}

.menu-toggle span {
   width: 100%;
   height: 3px;
    background  :        #2c3e50;
  border-radius: 2px;
  transition: all 0.3s ease;
	
}

.menu-toggle.active span:nth-child(1)	{
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2)		{
   opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem; 

}

.hero-layout {
  display: grid;
   grid-template-columns     :    1fr 1fr;
  gap: 3rem;
   align-items: center;
}

.hero-text-part h1 
 {
    font-size: 2.5rem;
   line-height: 1.2;
    margin-bottom:      1.5rem;
  color: #1a252f;
}

.hero-text-part p {
                    color: #555;
   font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
          border-radius: 6px;
    font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary:hover 
 {


  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(52, 152, 219, 0.3);


}

.hero-image-part img {

	  width:       100%;
    height: auto;
  border-radius     :  8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

}

.value-prop-area


{
  background: linear-gradient(180deg, #ecf0f1 0%, #e8ebed 100%);
   padding: 4rem 2rem;
}

.value-grid {
	 max-width: 1200px;
    margin    :  0 auto;
					display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.prop-card {
  background :       white;
   padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
         transition: all 0.3s ease;
}

.prop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.prop-number {
   font-size: 2.5rem;
  font-weight: 700;
  color:  #3498db;
      margin-bottom: 1rem;
}

.prop-card h3 {
   color: #2c3e50;
	 margin-bottom: 1rem;
  font-size: 1.3rem;


}

.prop-card p {
	 color: #666;
    line-height: 1.7;
}

.offering-showcase {
                    max-width: 1200px;
   margin: 0 auto;
    padding: 4rem 2rem;
}

.showcase-content {
   display: grid;
	    grid-template-columns: 1fr 1fr;
	  gap: 3rem;
	  align-items: center; 

}

.showcase-img {
      width:     100%;
     height: auto;
     border-radius: 8px;
     box-shadow: 0 10px 30px rgba(0,0,0,0.1);

}

.showcase-text h2 {
    line-height: 1.3;
 color: #1a252f;
   margin-bottom     :1.5rem;
    font-size: 2rem;
}

.showcase-text p{
	   font-size: 1.05rem;
  margin-bottom: 2rem;
   color: #555;
	}

.checklist-block {
      list-style: none;
     display: flex;
 flex-direction:    column;
    gap: 1rem;
}

.checklist-block li {
   padding-left: 2rem;
       position: relative;
   color: #2c3e50;
    line-height: 1.6;
}  

.checklist-block li:before {
  content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
  font-weight: bold;
    font-size: 1.2rem;
}

.training-section {
   background: #fafbfc; 
  padding: 4rem 2rem;
}

.training-section h2    {
    text-align    :        center;
    font-size: 2rem;
    margin-bottom: 3rem;
   color: #1a252f;
}

.training-grid {
	max-width: 1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.training-box {
  background   : white;
    border-radius     :       8px;
	 overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
         transition  :     all 0.3s ease;
}

.training-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.training-box img {
  width: 100%;
  height: 200px;
   object-fit: cover;
}

.training-box h3 {
	font-size: 1.25rem;
   padding: 1.5rem 1.5rem 0.5rem;
  color: #2c3e50;
}

.training-box p {
    color: #666;
	 line-height     :       1.6;
    padding: 0.5rem 1.5rem 1.5rem;
        font-size     :   0.95rem;
}

.cta-block {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
  padding: 3rem 2rem;
    margin: 3rem 0;
}

.cta-inner {
  max-width: 1200px;
   margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {


   font-size: 2rem;
   margin-bottom: 1rem;
}

.cta-inner p {
  font-size     : 1.05rem;
  margin-bottom: 2rem;
         opacity: 0.95;
}

.btn-cta {
   display: inline-block;
   -webkit-transition: all 0.3s ease;
     padding: 0.875rem 2.5rem;
       background: white;
  color: #3498db;
   border-radius: 6px;
	-moz-border-radius: 6px;
  font-weight: 600;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size:      1rem;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.contact-area {
  max-width: 1200px;
    margin: 0 auto;
	padding: 4rem 2rem;
}

.contact-area h2 {
  text-align: center; 
	   font-size: 2rem; 
	   margin-bottom   :        3rem; 
	   color: #1a252f;
}

.contact-wrapper

{
	        max-width: 600px;
	 margin: 0 auto;
}



.contact-form
	{
   display: flex;
   flex-direction: column;
  gap: 1.5rem; 
	
}

.form-group 
 {
    display: flex;
    flex-direction:      column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
   border: 1px solid #d0d7e0;
    border-radius: 6px;
   font-size:1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
      outline: none;
       border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);


}

.btn-submit {
          padding:0.875rem 2rem;
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
	color     : white;
  border-radius:      6px;
   font-weight: 600;
	 font-size: 1rem;
   transition   :  all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);

  box-shadow: 0 8px 16px rgba(39, 174, 96, 0.3);
}

.main-footer {
   background: #2c3e50;
    color: #ecf0f1;
        padding: 3rem 2rem;
      margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
     margin: 0 auto;
      display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
}


.footer-brand img {
    max-height: 50px;
  width:      auto;
  margin-bottom: 1rem;
}

.footer-info h4,
.footer-links h4 {
   font-size: 1.05rem;
   margin-bottom: 1rem;
   color: white;
}

.footer-info p     {
  font-size: 0.95rem;
   line-height    :        1.8;
          color: #bdc3c7;
}

.footer-links ul {

       list-style: none;


}

.footer-links li {
        margin-bottom: 0.75rem;
}

.footer-links a {
  color: #bdc3c7;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}



.footer-links a:hover

{
    color: #3498db;
	
}

.footer-note {
    grid-column: 1 / -1;
                    text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
   font-size: 0.9rem;
    color: #95a5a6;
}@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        left: 0;
        top: 70px;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: white;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-list.show {
        max-height: 300px;
    }

    .nav-list li {
        padding: 1rem 2rem;
        border-bottom: 1px solid #ecf0f1;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-text-part h1 {
        font-size: 1.8rem;
    }

    .hero-block {
        padding: 2rem 1rem;
    }

    .showcase-content {
        grid-template-columns: 1fr;
    }

    .btn-primary,
    .btn-cta,
    .btn-submit {
        width: 100%;
    }

    .cta-inner h2 {
        font-size: 1.5rem;
    }

    .contact-area {
        padding: 2rem 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        justify-content: center;
    }
}.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 5rem 2rem;
   text-align: center;
}

.hero-services-content {
    max-width     :1200px;
   margin: 0 auto;
}

.services-hero h1 {
   font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.services-hero p {
    font-size: 1.1rem;
      opacity : 0.95; 

}

.services-container {


  max-width: 1200px;

		margin: 0 auto;

	   padding: 4rem 2rem;
}

.detailed-services    {
  background: #fafbfc; 
	
}

.service-card-detailed {


  display: grid;
    grid-template-columns  :   1fr 1fr;
  gap: 2.5rem;
	align-items: flex-start;
  margin-bottom: 4rem;
	 padding: 2rem;
   background:    white;
      border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
	}

.service-card-detailed:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.service-card-detailed:nth-child(even) .service-img-wrapper {
         order: 2;
}

.service-card-detailed:nth-child(even) .service-desc
	{
 order: 1;
}

.service-img-wrapper {
  flex-shrink: 0;
}

.service-img-wrapper img {
  width: 100%;
    height: auto;
 border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-desc h2 {
  font-size: 1.8rem;
   margin-bottom: 1.5rem;
  color: #1a252f;
}

.service-desc > p
	{
  font-size: 1rem;

   line-height: 1.7;

   color: #555;

    margin-bottom: 2rem;
}

.service-details {

  display :grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom :     2rem;
         border-bottom: 1px solid #e8ebed;
	}  

.detail-item {
   display: flex;

	  flex-direction: column;
}

.detail-label {

	    font-weight: 600;
     color: #2c3e50;
   	font-size:0.9rem;
                       margin-bottom: 0.5rem;
	}



.detail-item span:last-child {
    color     :        #3498db;
          font-size: 0.95rem;
}

.topics-list h3 {
        font-size: 1.1rem;
    margin-bottom: 1rem;
   color :     #2c3e50;
}

.topics-items {
    list-style: none;
    display: flex;
   flex-direction: column;
    gap: 0.75rem;
	
}

.topics-items li {
   padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.topics-items li:before {
     position: absolute;
    font-weight   :bold;
    color: #3498db;
  left: 0;
  content: "•"; 
	


}

.comparison-matrix {
  background: white;
         padding: 4rem 2rem;
}

.comparison-matrix h2 
 {
	text-align: center;
    font-size: 2rem;
  margin-bottom: 3rem;
	 color     :  #1a252f;
}

.table-responsive {
	   max-width    : 1200px;
  overflow-x     :     auto;
   margin: 0 auto; 
	
}

.services-table {
    width: 100%;
    border-collapse: collapse;
   background: white;
}

.services-table thead {

	  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
	}

.services-table th {
  padding : 1.25rem;
  text-align    :    left;
  font-weight: 600;
  font-size: 0.95rem;
}

.services-table td {
	padding  :  1rem 1.25rem;
  border-bottom: 1px solid #e8ebed;
    color: #555;
}

.services-table tbody tr:hover {
        background: #f8f9fa;

}

.services-table tbody tr:nth-child(even)


{
	background: #fafbfc;
}

.next-steps {
  background: linear-gradient(180deg, #ecf0f1 0%, #e8ebed 100%);
      padding: 4rem 2rem;
}

.steps-container {

    max-width: 1200px;
	margin: 0 auto;
	}

.steps-container h2 {
   text-align :       center;
    font-size: 2rem;
   margin-bottom  :     3rem;
   color: #1a252f;
	
}

.steps-flow {
    display: flex;
   justify-content: space-between;
  align-items: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
  flex-wrap: wrap;
}

.step-item {
   flex: 1;
  min-width: 250px;
	 background: white;
       padding   :    2rem;
  border-radius:       8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
}

.step-number {
  display: inline-block;
    width  :     50px;
   height     :    50px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color    :    white;
   border-radius: 50%;
    line-height :   50px;
   font-weight  :    700;
    font-size: 1.2rem;
	margin-bottom: 1rem;
}

.step-item h3 {
   color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}


.step-item p {
   color: #666;
    font-size: 0.95rem;
                    line-height: 1.6;
}

.step-arrow {
  display: none;
  align-self: center;
  color: #3498db;
   font-size:      1.5rem;
  font-weight: bold;
}

.cta-services{
   text-align: center;
  margin-top: 2rem;
}

.btn-services-cta   {
          display: inline-block;
    padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
   color: white;
   border-radius: 6px;
   font-weight:       600;
  transition: all 0.3s ease;
	font-size: 1rem;


}

.btn-services-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(39, 174, 96, 0.3);
}

.thankyou-section {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
       color     :    white;
   padding: 5rem 2rem;
  min-height: calc(100vh - 250px);
    display: flex;
    align-items: center;
}

.thankyou-container {


 max-width: 700px;
  margin: 0 auto;
                    text-align: center;
  background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 10px;
  backdrop-filter: blur(10px);

}

.success-icon	{
   margin-bottom: 2rem;


}

.success-icon img   {
	          width: 80px;
   height: 80px;
  filter: brightness(0) invert(1);
	} 

.thankyou-container h1 {
    line-height: 1.2;
    font-size: 2.2rem;
	 margin-bottom: 1rem;
}

.main-message {
  font-size  :  1.1rem;
    margin-bottom: 2.5rem;
   opacity: 0.95;
}

.details-block {
  background: rgba(255,255,255,0.15);
  padding: 2rem;
    border-radius: 8px;
  margin-bottom: 2rem;
  text-align: left;
}

.details-block h2 {
    font-size: 1.3rem;
    text-align: center;
  margin-bottom: 1.5rem;
}  

.next-actions {
	display: flex;
	flex-direction: column;
    list-style: none;
  gap: 1rem;
}

.next-actions li {
    padding-left: 2rem;

	     position: relative;

	  font-size: 0.95rem;

	    line-height: 1.6;
}

.next-actions li:before     {
  content: "✓";
                    position   :      absolute;
  left: 0;
        font-weight   :  bold;
    font-size:       1.1rem;
}

.resources-section {
  background: rgba(255,255,255,0.15);
	padding: 2rem;
    border-radius:     8px;
   margin-bottom: 2rem;
}

.resources-section h2 {
   font-size    :     1.3rem;
                    margin-bottom: 1rem;
}

.resources-section p {
	margin-bottom: 1.5rem;
	opacity: 0.95;
}

.resource-links {
  display: flex;
	gap: 1rem;
         justify-content: center;
               flex-wrap: wrap;
}

.btn-resource  
  {
  padding: 0.75rem 1.8rem;
    color: #27ae60;
   display: inline-block;
     font-weight    :     600;
   background: white;
   font-size: 0.95rem;
   border-radius: 6px;
       transition: all 0.3s ease;
}

.btn-resource:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.btn-resource-secondary	{
    display: inline-block; 
   padding: 0.75rem 1.8rem; 
	 background: transparent; 
  color: white; 
  border: 2px solid white; 
	border-radius: 6px; 
   font-weight: 600; 
   transition: all 0.3s ease; 
  font-size: 0.95rem;
}

.btn-resource-secondary:hover   {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.contact-notice	{
  background: rgba(255,255,255,0.2);
   padding: 1.5rem;
  border-radius: 6px;
    font-size: 0.95rem;


}

.contact-notice strong  
  {
     color: white;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }

    .service-card-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card-detailed:nth-child(even) .service-img-wrapper {
        order: unset;
    }

    .service-card-detailed:nth-child(even) .service-desc {
        order: unset;
    }

    .service-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-table {
        font-size: 0.85rem;
    }

    .services-table th,
    .services-table td {
        padding: 0.75rem;
    }

    .steps-flow {
        flex-direction: column;
    }

    .step-arrow {
        display: none;
    }

    .comparison-matrix h2,
    .next-steps h2,
    .comparison-matrix h2 {
        font-size: 1.5rem;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 1.6rem;
    }

    .resource-links {
        flex-direction: column;
    }

    .btn-resource,
    .btn-resource-secondary {
        width: 100%;
    }
}.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;
    }
}