* 
 {
	  margin: 0;
	padding: 0px;
   box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
   line-height: 1.6;
    color: #333;
  background: #ffffff;
}

.primary-navigation {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index   : 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navigation-wrapper {
   max-width: 1200px;
     margin: 0 auto;
      display    :     flex;
   justify-content: space-between;
   align-items: center;
    padding  :       0 20px;
}

.logo-section .logo-img {
    width     :        auto;
    height: 45px;
}

.menu-links {
    gap: 2rem;
  display: flex;
}

.nav-link		{
  color: #ecf0f1;
   text-decoration: none;
         font-weight: 500;
  transition: color 0.3s ease;
   padding: 0.5rem 1rem;
    border-radius    :      4px;
}

.nav-link:hover, .nav-link.active {
   color: #3498db;
  background: rgba(255,255,255,0.1);
}

.burger-menu {
  display: none;
               flex-direction: column;
   cursor: pointer;
   padding: 5px; 
	
}

.burger-line {
    -o-transition  :        0.3s; 
	  width: 25px; 
	   height: 3px; 
	   background: #ecf0f1; 
	    margin:  3px 0; 
	   transition     :      0.3s;
}

.hero-banner	{
               display: flex;
   align-items: center;
    min-height: 100vh;
   padding: 80px 20px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
  align-items: center;
    gap: 3rem;
	display: grid;
    margin: 0 auto;
               grid-template-columns: 1fr 1fr;
  max-width: 1200px;
}

.hero-content h1 {


  font-size: 3.2rem;
  font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
   line-height: 1.2;
	}  

.hero-subtitle {
		font-size: 1.3rem;
      color: #7f8c8d;
  margin-bottom: 2rem;}

.hero-actions {
	gap: 1rem;
   flex-wrap: wrap;
	display: flex;
}

.cta-primary {
     background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);

	    color: white;

	     padding: 15px 30px;

	   text-decoration: none;

	    border-radius: 8px;

		 font-weight: 600;

		 transition    :      transform 0.3s ease, box-shadow 0.3s ease;

	          display: inline-block;


}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}  

.cta-secondary {
   border: 2px solid #3498db;
    color: #3498db;
  padding: 13px 28px;
    text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
    display     :    inline-block;
}

.cta-secondary:hover {


   background: #3498db;
	color: white;
     }

.hero-visual img {
    width:       100%;
   height: auto;
    border-radius   :        12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.content-container {
   max-width: 1200px;
 margin: 0 auto;
    padding: 0 20px;
}

.value-proposition {

	       padding    :     80px 0;
    background: #ffffff;}

.value-proposition h2 {
    text-align: center;
  font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 3rem;
}

.value-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem; 

}

.value-item {

	   padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
   text-align: center;
   transition: transform 0.3s ease;


}

.value-item:hover
	{
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); 

}

.value-item h3 {
  color: #2c3e50;
	font-size: 1.5rem;
   margin-bottom: 1rem;
}


.value-item p {

	    color: #7f8c8d;
    line-height: 1.6;
	}

.services-showcase {
  padding :      80px 0;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}



.services-showcase h2 {
   text-align    :    center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.services-layout {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
   object-fit: cover;
   width: 100%;
	height: 250px; 
	
}


.service-card h3 {
   padding: 1.5rem 1.5rem 0;
     color     :    #2c3e50;
    font-size: 1.4rem;
}

.service-card p {
  padding: 1rem 1.5rem;
          color: #7f8c8d;
  line-height: 1.6;
}

.service-features    {
	   padding  :        0 1.5rem 1.5rem;
     list-style: none;


}

.service-features li {


     padding: 0.5rem 0;
  color: #34495e;
  position: relative;
    padding-left :      20px;

}

.service-features li:before {
  content: "✓";
    position: absolute;
  left: 0;
               color: #27ae60;
	 font-weight     :  bold;
}

.transformation-process {
    padding: 80px 0;
  background    :#ffffff;
}

.transformation-process h2  
  {
   text-align: center;
	font-size  :  2.5rem;
  color: #2c3e50;
   margin-bottom: 3rem;
}

.process-visual {
  display: grid;
  grid-template-columns   :       1fr 1fr;
  gap: 3rem;
    align-items: center;
	
}

.process-visual img {
 -webkit-border-radius: 12px;
	    width:    100%;
	    height: auto;
	   border-radius: 12px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap:        1.5rem;
}

.step-item {
  padding: 1.5rem;
   border-left: 4px solid #3498db;
	 background: #f8f9fa;
   border-radius: 0 8px 8px 0;
}

.step-item h4 {
  color: #2c3e50;
   font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-item p
{
  color: #7f8c8d;
	 line-height    :  1.5;
}

.cta-section {

	    padding: 80px 0;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  text-align: center;
   color: white;
	}

.cta-section h2 {
   font-size: 2.8rem;
   margin-bottom: 1rem;
}

.cta-description {
	font-size: 1.2rem;
  margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
   flex-direction: column;
    align-items: center;
  gap: 1rem;
}

.cta-primary.large {
  font-size: 1.2rem;
    padding: 18px 40px;
   background: white;
    color: #3498db;
}



.cta-primary.large:hover {
  background: #ecf0f1;
  transform: translateY(-2px);
}

.cta-info {
    opacity: 0.8;
        font-style: italic;
}

.contact-section {
	padding: 80px 0;
  background: #f8f9fa;
}

.contact-section h2 {
	text-align: center;
   font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 3rem;
	}

.contact-layout {
		display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
  color     :  #2c3e50;
    font-size: 1.8rem;
   margin-bottom: 1.5rem;
}

.contact-details
{
   margin-bottom: 2rem;
     }

.address, .phone     {
  color: #34495e;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;}

.business-hours h4 {
	    color: #2c3e50;
    margin-bottom: 1rem;
	}

.business-hours ul {
  list-style: none;
	padding-left: 0;
}

.business-hours li {
    padding: 0.3rem 0;
   color   : #7f8c8d;
  position: relative;
   padding-left: 20px;
}

.business-hours li:before {
  content: "▶";
    position: absolute;
    left: 0;
                    color: #3498db;
}

.contact-form {

	          background: white;
	padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	}

.contact-form h3 {
    color: #2c3e50;
          margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
	 display: block;
    margin-bottom: 0.5rem;
  color: #34495e;
   font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	    width: 100%;
    padding: 12px;
   border: 2px solid #ecf0f1;
  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 {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
  padding: 15px 30px;
    border: none;
   border-radius: 8px;
	font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
  transition: transform 0.3s ease;
   width: 100%;
}


.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.site-footer {
	background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
    margin  :0 auto;
    padding: 0 20px;


}


.footer-main {
      display :  grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
  margin-bottom :1rem;
}

.footer-brand p {
      color: #bdc3c7;
		 line-height: 1.6;
     }

.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
  margin-bottom: 1rem;
    color: #ecf0f1;
  font-size: 1.1rem;
}

.footer-nav ul,
.footer-legal ul {
  list-style: none;
}

.footer-nav li,
.footer-legal li {
	   margin-bottom: 0.5rem;
     } 

.footer-nav a,
.footer-legal a {
   color: #bdc3c7; 
	               transition: color 0.3s ease; 
	    text-decoration: none;
}



.footer-nav a:hover,
.footer-legal a:hover
{
  color: #3498db;
}

.footer-contact p {
   color: #bdc3c7;
   margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
	padding-top: 2rem;
   border-top: 1px solid #34495e;
    color: #95a5a6;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .menu-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #2c3e50;
        flex-direction: column;
        padding: 1rem 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .menu-links.active {
        display: flex;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

    .process-visual {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
}.about-hero {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-hero-content    {
    display: grid;
	               grid-template-columns: 1fr 1fr;
	   gap: 3rem;
	  align-items: center;
	  max-width: 1200px;
	  margin: 0 auto;
	          padding    :      0 20px;
}

.about-hero-content h1 {
    font-size: 3rem;
    color: #2c3e50;
   line-height: 1.2;
     margin-bottom: 1.5rem;


}

.about-subtitle {
 font-size: 1.3rem;
  color: #7f8c8d;
	line-height: 1.6;
}

.about-hero-visual img {
    width    :  100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mission-vision    {
 padding: 80px 0;
   background: #ffffff;
}  

.mission-grid {
  display: grid;
    grid-template-columns: 1fr 1fr;
     gap: 3rem;
   max-width: 1000px;
         margin: 0 auto;
}

.mission-item, .vision-item {
  padding: 2.5rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   border-radius: 12px;
          color: white;
    text-align  :center;



}

.mission-item h2, .vision-item h2 {
   font-size: 2rem;
   margin-bottom: 1.5rem;
}

.mission-item p, .vision-item p {
   font-size: 1.1rem;

     line-height: 1.6;

  opacity: 0.95;
}

.team-expertise {
  padding: 80px 0;
  background  :    #f8f9fa;
}

.team-expertise h2 {
   text-align: center;
	font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 3rem;
}

.expertise-layout {
       display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items:  center;}

.expertise-visual img {
    width:  100%;
  height: auto;
   border-radius: 12px;
}

.expertise-content h3 {
   font-size: 2rem;
	color: #2c3e50;
      margin-bottom: 2rem;
}

.expertise-stats {
   display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));

	   gap: 1.5rem;

	  margin-bottom: 2rem;
}

.stat-item {
    text-align   :     center;
         padding     :1.5rem;
     background: white;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.stat-number {

	   display: block;
      font-size: 2.5rem;
  font-weight:700;
    color:        #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
		 color: #7f8c8d;
		 font-weight: 500;
}

.expertise-content p {
    color: #7f8c8d;
    line-height: 1.6;
  font-size: 1.1rem;
}

.approach-methodology {
  padding:        80px 0;
  background: #ffffff;
}

.approach-methodology h2


{
  text-align: center; 
		font-size: 2.5rem; 
	  color: #2c3e50; 
	    margin-bottom: 3rem;
}

.approach-grid		{
   display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.approach-item {
    padding: 2rem;
   background: #f8f9fa;
    border-radius: 12px;
  border-left: 5px solid #3498db;
	transition: transform 0.3s ease;
}

.approach-item:hover {

	  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);}

.approach-item h3 {
         margin-bottom: 1rem;
    font-size: 1.4rem;
  color: #2c3e50;
}

.approach-item p {

  color     :  #7f8c8d;
  line-height: 1.6;}  

.specializations {
   padding: 80px 0;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.specializations h2 {
   text-align: center;
    font-size   :        2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.specializations-layout {
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.specialization-card {
  background: white;
   border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition     :transform 0.3s ease;
}

.specialization-card:hover {
  transform: translateY(-8px);
}

.specialization-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.specialization-card h3 {
   padding: 1.5rem 1.5rem 0;
    color: #2c3e50;
          font-size: 1.4rem;
}


.specialization-card p {
  padding: 1rem 1.5rem 1.5rem;
  color: #7f8c8d;
    line-height :    1.6;
}

.values-principles {
     padding: 80px 0;
   background: #ffffff;
}


.values-principles h2 {
    text-align: center;
    font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom: 3rem;
} 

.values-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap   :      2rem;
}

.value-principle {
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
      text-align: center;
    border:2px solid transparent;
   transition: all 0.3s ease;

}

.value-principle:hover {
    border-color    :#3498db;
  transform: translateY(-3px);
}

.value-principle h4 {
  color: #2c3e50;
  font-size: 1.3rem;
   margin-bottom: 1rem;


}

.value-principle p 
 {
   color: #7f8c8d;
  line-height: 1.5;
}



.certification-credentials {
    padding: 80px 0;
    background: #f8f9fa;

}

.certification-credentials h2 {


       text-align: center;
	 font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
	}

.credentials-content {
  max-width: 800px;
	margin: 0 auto;
}

.credentials-content > p {
  font-size: 1.1rem;
  color: #7f8c8d;
  line-height: 1.6;
 text-align: center;
    margin-bottom: 3rem;
}

.credentials-list {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.credential-item {
  padding: 2rem;
   background: white;
   border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
	 border-top: 4px solid #3498db;
}

.credential-item h4 {
	    color: #2c3e50;
       font-size     : 1.3rem;
  margin-bottom: 0.5rem;

}

.credential-item p {
  color : #7f8c8d;
   line-height: 1.5;
}

.thankyou-hero {
  min-height     : 80vh;
 display: flex;
   align-items    :    center;
	padding: 100px 0 60px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
   color   :white;
}

.thankyou-content 
 {
   display    :grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
   max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
}

.success-icon {
  text-align: center;
    margin-bottom: 2rem;
}

.checkmark-circle {
   width: 80px;
  height: 80px;
    border-radius: 50%;
  background: rgba(255,255,255,0.2);
    display: inline-flex;
  align-items: center;
	justify-content: center;
  margin-bottom: 1rem;
}

.checkmark		{

   width: 40px;
  height: 40px;
  border: 3px solid white;
    border-top: none;
  border-left: none;
  transform: rotate(45deg);
	margin-top: -10px;
  margin-left: 5px;

}

.thankyou-content h1 {
   font-size: 3rem;
               margin-bottom: 1.5rem;
  text-align: center;
}

.thankyou-message {
   font-size: 1.3rem;
   text-align: center;
    margin-bottom: 3rem;
  opacity: 0.95;
}

.next-steps {
    margin-bottom   :    3rem;
}

.next-steps h2 {
  font-size: 2rem;
    margin-bottom: 2rem;
  text-align: center; 

}

.steps-timeline {
  display: flex;
   flex-direction   :column;
    gap: 1.5rem;
}

.timeline-step {
   display: flex;
	 align-items  : flex-start;
  gap: 1rem;
   padding: 1.5rem;
  background: rgba(255,255,255,0.1);
    border-radius: 12px;
}

.step-number {
    width: 40px;
  height: 40px;
  border-radius:50%;
	background :white;
   color: #27ae60;
  display: flex;
	align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
   flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    opacity: 0.9;
    line-height: 1.5;
}

.thankyou-actions {
   display: flex;
	    gap: 1rem;
		 justify-content: center;
	   flex-wrap: wrap;
}

.thankyou-visual img {
    width: 100%;
   height: auto;
	border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.additional-resources {
    padding: 80px 0;
   background :  #ffffff;
	
}

.additional-resources h2 {
  text-align: center;
   font-size     :   2.5rem;
    color: #2c3e50;
   margin-bottom: 3rem;
}

.resources-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 2rem;
}

.resource-item

{
	border-radius: 12px;
    text-align: center;
          background  :    #f8f9fa;
   border-top: 4px solid #27ae60;
  padding: 2rem;
}

.resource-item h3 {
   color: #2c3e50;
   font-size: 1.4rem;
    margin-bottom: 1rem;
}

.resource-item p
{

	     color: #7f8c8d;
    line-height: 1.6;


}

.contact-info-section
{
  padding: 80px 0;
   background: #f8f9fa;
}

.contact-info-section h2 {

	  text-align: center;
  font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom: 3rem;

}

.contact-summary {
  max-width  :     800px;
    grid-template-columns:       1fr 1fr;
  gap: 3rem;
  display: grid;
   margin: 0 auto;
}

.contact-details-summary h3 
 {
  color: #2c3e50;
   font-size  :1.8rem;
   margin-bottom:      1.5rem;
}

.contact-details-summary .address,
.contact-details-summary .phone {
   color  :        #34495e;
	font-size: 1.1rem;
   margin-bottom: 0.5rem;
}

.availability-info h4 {
    color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.availability-info p {
    color: #7f8c8d;

  line-height: 1.6;

  margin-bottom: 0.5rem;
}@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .expertise-layout {
        grid-template-columns: 1fr;
    }

    .expertise-stats {
        grid-template-columns: 1fr 1fr;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .specializations-layout {
        grid-template-columns: 1fr;
    }

    .values-showcase {
        grid-template-columns: 1fr;
    }

    .credentials-list {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .thankyou-content h1 {
        font-size: 2.5rem;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .contact-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .expertise-stats {
        grid-template-columns: 1fr;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .next-steps h2 {
        font-size: 1.7rem;
    }

    .timeline-step {
        flex-direction: column;
        text-align: center;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
}.about-hero {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-hero-content		{
	display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 3rem;
  align-items: center;
      max-width: 1200px;
	margin   :        0 auto;
               padding: 0 20px;
}

.about-hero-content h1 {
   font-size: 3rem;
  color: #2c3e50;
   margin-bottom: 1.5rem;
         line-height: 1.2; 
	
}

.about-subtitle {
	    font-size :1.3rem;
    color: #7f8c8d;
    line-height: 1.6;
	}

.about-hero-visual img {
  width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mission-vision {
    padding: 80px 0;
  background: #ffffff;


}

.mission-grid {

   display: grid;
  grid-template-columns   :  1fr 1fr;
    gap: 3rem;
      max-width: 1000px;
    margin: 0 auto;
	}

.mission-item, .vision-item {
       padding: 2.5rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 12px;
   color: white;
   text-align: center;


}

.mission-item h2, .vision-item h2  
  {
   font-size: 2rem;
  margin-bottom: 1.5rem;
}

.mission-item p, .vision-item p   {
    font-size: 1.1rem;
 line-height:1.6;
                    opacity: 0.95; 

} 

.team-expertise {

	  padding   :  80px 0;
        background: #f8f9fa;}

.team-expertise h2
{
    text-align: center;
	font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 3rem;
}

.expertise-layout {
   display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items     :    center;
}

.expertise-visual img {
	  width: 100%;
     height: auto;
    border-radius: 12px;


}  

.expertise-content h3 {

	  font-size: 2rem;
    color: #2c3e50;
	margin-bottom: 2rem;
	}

.expertise-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
   margin-bottom: 2rem;
}

.stat-item {
   text-align: center;
   padding: 1.5rem;
   background: white;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.stat-number {
   display: block;
	font-size: 2.5rem;
					font-weight: 700;
   color: #3498db;
  margin-bottom: 0.5rem; 
	
}

.stat-label {
	 font-size: 0.9rem;
         color: #7f8c8d;
  font-weight: 500;
}

.expertise-content p {


  color: #7f8c8d;
  line-height: 1.6;
   font-size: 1.1rem;
	}  

.approach-methodology {
  padding: 80px 0;
  background: #ffffff;
}

.approach-methodology h2    {
    text-align: center;
  font-size:       2.5rem;
               color: #2c3e50;
    margin-bottom: 3rem;
}

.approach-grid {
  display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.approach-item   {
	padding: 2rem;
  background: #f8f9fa;
   border-radius:      12px;
	border-left: 5px solid #3498db;
   transition: transform 0.3s ease;
}

.approach-item:hover		{
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.approach-item h3 {
  color: #2c3e50;
     font-size: 1.4rem;
       margin-bottom: 1rem;

}

.approach-item p {
	    color: #7f8c8d;
  line-height: 1.6;



}

.specializations {
    padding: 80px 0;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.specializations h2 {
  text-align:center;
  font-size: 2.5rem;
       color: #2c3e50;
  margin-bottom :3rem;


}

.specializations-layout 
 {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem; 

}

.specialization-card {
    background: white;
   border-radius: 12px;
    overflow  :       hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.specialization-card:hover{
  transform: translateY(-8px);
}

.specialization-card img {


  width  :       100%;
  height: 200px;
    object-fit: cover;
     }

.specialization-card h3 {
	 padding: 1.5rem 1.5rem 0;
   color: #2c3e50;
  font-size: 1.4rem;
}


.specialization-card p {
    line-height: 1.6;
  color: #7f8c8d;
  padding: 1rem 1.5rem 1.5rem;

}

.values-principles {
   padding: 80px 0;
  background: #ffffff;
}

.values-principles h2 {
    color: #2c3e50;
	text-align: center;
   margin-bottom: 3rem;
    font-size: 2.5rem;
}

.values-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}


.value-principle {
    padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
	transition: all 0.3s ease;
}

.value-principle:hover {
  transform: translateY(-3px);
   border-color: #3498db;
}

.value-principle h4 {
  color: #2c3e50;
   font-size: 1.3rem;
  margin-bottom: 1rem;
}

.value-principle p {
   color   :      #7f8c8d; 
	    line-height: 1.5;
}

.certification-credentials

{
  padding: 80px 0;
	 background: #f8f9fa;
}

.certification-credentials h2 {
  text-align     :        center;
   color: #2c3e50;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.credentials-content {
    max-width: 800px;
  margin: 0 auto;
}

.credentials-content > p		{
      font-size     :        1.1rem;
    color: #7f8c8d;
   line-height: 1.6;
    text-align: center;
   margin-bottom: 3rem;
}

.credentials-list {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.credential-item {
    padding: 2rem;
	 background: white;
   border-radius     :      12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
   border-top: 4px solid #3498db;
}

.credential-item h4 {
   color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.credential-item p {
	   color: #7f8c8d;
  line-height     :    1.5; 
	


}@keyframes checkmarkDraw {
    0% {
        width: 0;
        height: 0;
    }
    50% {
        width: 20px;
        height: 0;
    }
    100% {
        width: 20px;
        height: 40px;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}.thankyou-hero {


   min-height: 80vh;
   display: flex;
  align-items: center;
    padding: 100px 0 60px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
   color: white;


}

.thankyou-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
  max-width: 1200px;
    margin: 0 auto;
   padding   :  0 20px;
}

.success-icon {
   text-align: center;
    margin-bottom: 2rem;
}

.checkmark-circle {
  width: 80px;
   height: 80px;
 border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.checkmark {
    width: 40px;
    height: 40px;
  border: 3px solid white;
  border-top  :      none;
    border-left: none;
  transform: rotate(45deg);
   margin-top: -10px;
    margin-left: 5px;
}

.thankyou-content h1 {
     font-size: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;


}

.thankyou-message   {
  font-size: 1.3rem;
   text-align: center;
   margin-bottom: 3rem;
  opacity: 0.95;
}

.next-steps {
		margin-bottom: 3rem;}

.next-steps h2 {
   font-size: 2rem;
   margin-bottom: 2rem;
    text-align: center;
}

.steps-timeline {
  display: flex; 
	   flex-direction: column; 
	  gap  :     1.5rem;
}

.timeline-step     {
   display: flex;
    align-items: flex-start;
    gap     :      1rem;
               padding: 1.5rem;
  background: rgba(255,255,255,0.1);
   border-radius: 12px;
}

.step-number {
				 width: 40px;
  height: 40px;
  border-radius: 50%;
	 background: white;
   color: #27ae60;
   display  :        flex;
    align-items: center;
   justify-content: center;
  font-weight: 700;
    font-size     :    1.2rem;
                    flex-shrink: 0; 
	
}

.step-content h3 {
        font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
   line-height: 1.5;
    opacity: 0.9;
}

.thankyou-actions   {
	  display: flex;
     gap: 1rem;
    justify-content: center;
  flex-wrap: wrap;


}

.thankyou-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.additional-resources {
        padding: 80px 0;
   background: #ffffff;
}

.additional-resources h2 {
  text-align: center;
    font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 3rem;
}

.resources-grid  
  {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.resource-item {
                    padding: 2rem;
   background: #f8f9fa;
		 border-radius: 12px;
   text-align: center;
	 border-top: 4px solid #27ae60;
}

.resource-item h3 {
   color: #2c3e50;
     font-size: 1.4rem;
               margin-bottom: 1rem;
}

.resource-item p {
  color: #7f8c8d;
   line-height: 1.6;
}


.contact-info-section {
    padding: 80px 0;
  background: #f8f9fa;
}

.contact-info-section h2 {
   text-align: center;
	font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 3rem; 
	
}

.contact-summary {
    display: grid;
               grid-template-columns: 1fr 1fr;
    gap: 3rem;
  max-width: 800px;
   margin: 0 auto;
}

.contact-details-summary h3 {
   color: #2c3e50;
    font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-details-summary .address,
.contact-details-summary .phone {


    color: #34495e;
     font-size: 1.1rem;
      margin-bottom: 0.5rem;


}

.availability-info h4 {
    font-size: 1.3rem;
  margin-bottom: 1rem;
   color: #2c3e50;
}

.availability-info p {
        color: #7f8c8d;
			line-height: 1.6;
  margin-bottom: 0.5rem;
}@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .expertise-layout {
        grid-template-columns: 1fr;
    }

    .expertise-stats {
        grid-template-columns: 1fr 1fr;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .specializations-layout {
        grid-template-columns: 1fr;
    }

    .values-showcase {
        grid-template-columns: 1fr;
    }

    .credentials-list {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .thankyou-content h1 {
        font-size: 2.5rem;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .contact-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .expertise-stats {
        grid-template-columns: 1fr;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .next-steps h2 {
        font-size: 1.7rem;
    }

    .timeline-step {
        flex-direction: column;
        text-align: center;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
}.cookies-policy,
.privacy-policy {
   padding: 100px 0 60px;
    background  :        #ffffff;}

.policy-subtitle {
  font-size: 1.3rem;
  color   :        #7f8c8d;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6; 

}

.policy-content {
   max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
  font-size:      1.8rem;
    color: #2c3e50;
  margin-bottom     :   1.5rem;
}

.policy-content p 
 {
          font-size: 1.1rem;
  color: #7f8c8d;
  line-height: 1.6;
    margin-bottom: 1.5rem; 

}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.policy-list li {

   padding: 0.5rem 0;
     color: #34495e;
  position: relative;
    padding-left: 20px;
	}

.policy-list li:before {
  content: "✓";
        position: absolute;
   left: 0;
   color: #27ae60;
  font-weight: bold;
}