* {
   margin: 0;
    padding: 0;
  box-sizing: border-box; 

}

body
	{

	  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height   :  1.6;
                    color: #2c3e50;
    background-color: #ffffff;

}

.main-navigation-wrapper {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 padding: 0.8rem 0;
    position: fixed;
    top   :   0;
    width: 100%;
    z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container-flex {
      max-width: 1200px;
    margin: 0 auto;
  display: flex;
   justify-content :      space-between;
    align-items: center;
    padding: 0 20px;
	}

.company-logo-img {
   height    :45px;
   width: auto;
}

.navigation-links-desktop {
  display: flex;
   gap: 2rem;
}

.nav-link-item {


	color: white;
    text-decoration: none;
   font-weight: 500;
          transition: all 0.3s ease;
  padding: 8px 16px;
	border-radius: 25px;
     }

.nav-link-item:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
   flex-direction: column;
    cursor: pointer;
    gap: 4px;
}  

.burger-line {

  width: 25px;
   height: 3px;
    background     :  white;
    border-radius: 2px;
   transition: 0.3s;


}

.mobile-menu-toggle.active .burger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}


.mobile-menu-toggle.active .burger-line:nth-child(2) {
   opacity: 0;
}

.mobile-menu-toggle.active .burger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-navigation-menu{
	display: none;
               position: absolute;
   top: 100%;
   left: 0;
  right: 0;
  background: rgba(102,126,234,0.95);
  backdrop-filter: blur(10px);
   flex-direction: column;
  padding: 1rem 0;
}

.mobile-nav-link {
       color: white;
  text-decoration: none;
    padding: 0.8rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);


}

.hero-section-wrapper {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
     padding: 120px 0 60px 0;
      min-height: 80vh;
   	display: flex;
       align-items: center;
}

.hero-content-container {
   max-width :1200px;
  margin   :0 auto;
   padding: 0 20px;
	display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;
}

.primary-headline {
        font-size: 3.2rem;
   color   :        white;
    margin-bottom: 1.5rem;
   line-height   :       1.2;
       font-weight: 700;
}

.hero-description-text {

	   font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
   line-height: 1.7;

}

.primary-cta-button		{
    display    :  inline-block;
    background: white;
    color: #f5576c;
   padding     :      15px 30px;
      text-decoration: none;
    border-radius  :        50px;
	font-weight: 600;
    transition:all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.primary-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
} 

.hero-main-image {

	       width: 100%;
    height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);




}

.services-overview-section {
	padding: 80px 0;
    background :      #f8f9fa;
}

.content-wrapper-standard {
   max-width: 1200px;
	margin: 0 auto;
    padding   :0 20px;
}

.section-title-center {
          text-align:  center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
	color: #2c3e50;
	font-weight:   700;
} 

.services-grid-layout

{
	display   : grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card-element {

	   background: white;
    padding  :     2rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;

}

.service-card-element:hover {
  transform: translateY(-10px);
}

.service-image {
               width     :  100%;
  height: 200px;
  object-fit: cover;
                    border-radius: 10px;
	 margin-bottom: 1.5rem;
}

.service-card-title {
    font-size: 1.5rem;
  margin-bottom: 1rem;
	color: #2c3e50;
  font-weight: 600;
}

.service-description    {
  color: #666;
    line-height: 1.6;

}

.cta-consultation-block {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       padding: 80px 0;
}

.cta-inner-container {
  max-width: 1200px;
   margin     :    0 auto;
     padding    :    0 20px;
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
                    align-items: center;


}

.cta-headline{
   font-size: 2.5rem;
   color: white;
			margin-bottom: 1.5rem;
	font-weight: 700;
}

.cta-supporting-text {
  color: rgba(255,255,255,0.9);
   font-size: 1.1rem;
  margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-action-button {


    display: inline-block;
        background: white;
  color: #667eea;
               padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
          font-weight: 600;
   transition  :      all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta-action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.cta-image {

	 width: 100%;
  height: auto;
   border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	


}

.methodology-explanation {
    padding: 80px 0;
   background: white;
	
}

.section-heading-left {
	 font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
   font-weight: 700;
}

.methodology-steps-grid
{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.method-step-card 
 {

          padding: 2rem;
   border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s ease;}

.method-step-card:hover {
  border-color: #667eea;
  transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight    :700;
   color: #667eea;
  margin-bottom: 1rem;
}

.method-step-title {
    font-size: 1.5rem;
  margin-bottom: 1rem;
	color: #2c3e50;
	font-weight: 600;
}



.method-step-text {
   color: #666;
   line-height: 1.6;
}

.contact-form-section {


  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 80px 0;

}



.contact-container-wrapper {
   max-width: 800px;
    margin: 0 auto;
   padding: 0 20px;
}  

.contact-section-title {
   text-align:   center;
	   font-size: 2.5rem;
	    color   :        white;
	   margin-bottom: 1rem;
	     font-weight: 700;
}



.contact-intro-text {
  text-align     :    center;
  color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
   margin-bottom: 3rem;
}

.contact-form-element	{
   background: white;
    padding: 2.5rem;
   border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-row-wrapper {
  display   :  grid;
       grid-template-columns: 1fr 1fr;
    gap   :  1.5rem;
   margin-bottom: 1.5rem;
}  

.form-row-full {
	margin-bottom: 1.5rem;
}

.form-input-field,
.form-select-field,
.form-textarea-field {
  width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
   border-radius: 10px;
    font-size: 1rem;
    transition  :       border-color 0.3s ease;
   background: white;
}

.form-input-field:focus,
.form-select-field:focus,
.form-textarea-field:focus {
  outline  :    none;
  border-color: #667eea;
}

.form-submit-wrapper {


    text-align: center;
}

.form-submit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 15px 40px;
   border: none;
  border-radius: 50px;
                    font-size: 1.1rem;
   font-weight: 600;
    cursor :        pointer;
   transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(102,126,234,0.3);
}

.form-submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(102,126,234,0.4);
}

.main-footer-section {
	background: #2c3e50;
    color: white;
   padding: 60px 0 20px 0;
}

.footer-content-container {
   max-width: 1200px;
  margin: 0 auto;
   padding    :       0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
   gap: 3rem;
}

.footer-logo-image {
      height: 40px;
  width: auto;
  margin-bottom    :     1rem;
}

.footer-company-description {
   color: #bdc3c7;
    line-height: 1.6;
}

.footer-links-title,
.footer-contact-title {
   font-size: 1.2rem;
    margin-bottom  :   1rem;
    font-weight: 600;
}

.footer-navigation-list {
  list-style: none;
}

.footer-navigation-list li {

    margin-bottom     :  0.5rem;
}

.footer-nav-link {
   -o-transition: color 0.3s ease;

	   color:      #bdc3c7;

	  text-decoration: none;

	  -moz-transition: color 0.3s ease;

		 transition     : color 0.3s ease;
} 

.footer-nav-link:hover {
    color: white;
}

.footer-address,
.footer-phone

{

  color: #bdc3c7;
       margin-bottom: 0.5rem;
     }

.footer-bottom-bar {
  border-top: 1px solid #34495e;
	 margin-top: 2rem;
    padding-top: 2rem;
	 text-align   :       center;
}

.copyright-text {
    color: #bdc3c7;
}@media (max-width: 768px) {
    .navigation-links-desktop {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .primary-headline {
        font-size: 2.5rem;
    }

    .cta-inner-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-row-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title-center,
    .section-heading-left {
        font-size: 2rem;
    }

    .cta-headline {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .primary-headline {
        font-size: 2rem;
    }

    .hero-section-wrapper {
        padding: 100px 0 40px 0;
    }

    .services-overview-section,
    .cta-consultation-block,
    .methodology-explanation,
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-element {
        padding: 1.5rem;
    }
}.about-hero-section {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 120px 0 80px 0;
  min-height: 70vh;
  display  :flex;
   align-items     :    center;}


.about-hero-container {


                    max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
  display: grid;
    grid-template-columns: 1fr 1fr;
	gap:        3rem;
   align-items: center;
}


.about-main-title {
    font-size: 3rem;
       color: white;
   margin-bottom: 1.5rem;
  font-weight  :  700;
   line-height: 1.2;
} 

.about-hero-description {
    font-size   :      1.2rem;
  color: rgba(255,255,255,0.9);
    line-height: 1.7; 
	
}

.about-hero-image {

	  width: 100%;
  height     :       auto;
    border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);


}

.company-story-block {
   padding  :  80px 0;
    background     :     white;
}

.story-content-wrapper {
   max-width: 900px;
   margin: 0 auto;
	padding: 0 20px;
	 text-align: center;
}

.story-section-heading {

          font-size: 2.5rem;
   margin-bottom: 2rem;
   color: #2c3e50;
   font-weight: 700;

	}

.story-paragraph {
  font-size: 1.1rem; 
	  line-height   :1.8; 
	    margin-bottom: 1.5rem; 
	    color: #555;
}

.values-principles-area {
    background: #f8f9fa; 
  padding: 80px 0;
}

.values-container
	{
    max-width: 1200px;
   margin: 0 auto;
     padding: 0 20px;
}

.values-title-main
	{
    text-align: center;
    font-size: 2.5rem;
  margin-bottom: 3rem;
   color: #2c3e50;
	font-weight: 700;
}

.values-grid-system {
  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

	    gap: 2rem;
}

.value-item-card
	{
	    background: white;
    padding: 2.5rem;
   border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  text-align: center;
    transition: transform 0.3s ease;} 

.value-item-card:hover {
  transform: translateY(-10px);
}

.value-icon-placeholder {
  width: 60px;
    height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.value-card-heading {
	font-size: 1.4rem; 
	  margin-bottom: 1rem; 
	   color    :#2c3e50; 
	   font-weight: 600;
}

.value-description-text {
   color: #666;
    line-height: 1.6;
     }

.expertise-showcase {
    padding: 80px 0;
  background: white;
}

.expertise-content-container {
	   max-width: 1200px;
    margin: 0 auto;
         padding: 0 20px;
   display: grid;
  grid-template-columns     :  1fr 1fr;
    gap: 3rem;
	align-items: center;


}

.expertise-heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
   color: #2c3e50;
    font-weight: 700;
}

.expertise-intro-text {
    font-size: 1.1rem;
   color: #666;
    margin-bottom   :  2rem;
   line-height     :        1.7;
}

.expertise-item {


   margin-bottom: 2rem;
    padding: 1.5rem;
   background: #f8f9fa;
  border-radius :    10px;
    border-left: 4px solid #667eea;


}

.expertise-item-title {
    font-size: 1.3rem;
  margin-bottom   :  0.5rem;
      color: #2c3e50;
    font-weight    :    600;}

.expertise-item-text {
  color: #666;
	line-height: 1.6;
}

.expertise-main-image {


  width: 100%;
  height: auto;
   border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}



.results-achievements {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 80px 0;
}

.achievements-wrapper {
       max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
    text-align: center;
}

.achievements-title {
  font-size: 2.5rem;
    color: white;
	margin-bottom: 3rem;
    font-weight: 700;
}

.statistics-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 2rem;
}

.stat-item   {
  background: rgba(255,255,255,0.2);
   padding: 2rem;
   border-radius: 15px;
  backdrop-filter: blur(10px);
}

.stat-number
	{
  font-size    : 3rem;
   font-weight: 700;
    color: white;
   margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255,255,255,0.9);
	   font-size: 1.1rem;
}

.mission-vision-statement  {
  padding  :        80px 0;
    background: white;
}

.mission-content-area {
  max-width: 1200px;
  margin: 0 auto;
    padding     :        0 20px;
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
}

.mission-primary-heading  
  {
    font-size: 2.5rem;
   margin-bottom: 1.5rem;
    color     :#2c3e50;
    font-weight: 700;
}

.mission-description,
.mission-vision-text {

	   font-size: 1.1rem;
	 color: #666;
   line-height: 1.7;
   margin-bottom  :        1.5rem;

}

.mission-visual-element {
    width: 100%;
  height: auto;
   border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.thankyou-main-container     {
   padding-top: 80px;
}

.thank-you-hero-area {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 60px 0;
  min-height: calc(100vh - 80px);
   display: flex;
   align-items   :      center;
}

.thankyou-content-wrapper {
	max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
   display    :  grid;
    grid-template-columns:   2fr 1fr;
    gap: 3rem;
   align-items:start;
}

.thankyou-message-block {
       background: white;
  padding: 3rem;
    border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.success-indicator {
   width  :      80px;
  height: 80px;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  border-radius:     50%;
    margin: 0 auto 2rem;
    position: relative;
}

.success-indicator::after {
  content: '✓';
   position: absolute;
     top: 50%;
   left: 50%;
  transform: translate(-50%, -50%);
  color: white;
   font-size: 2rem;
	font-weight: bold;
}

.thankyou-primary-title {
    text-align: center;
  font-size: 2.5rem;
    margin-bottom: 1.5rem;
	color: #2c3e50;
  font-weight: 700;
}

.thankyou-confirmation-text {
   text-align: center;
    font-size: 1.2rem;
  color: #666;
	margin-bottom: 3rem;
   line-height: 1.7;
}

.next-steps-information {
  margin-bottom: 3rem;
}

.next-steps-heading
	{
     font-weight: 600;
    font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.step-item-element	{
 display: flex;
   align-items: flex-start;
  margin-bottom: 2rem;
   gap :1rem;
}

.step-number-badge {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
	 width: 40px;
   height: 40px;
  border-radius: 50%;
   display: flex;
   align-items: center;
  justify-content: center;
                    font-weight: 600;
  flex-shrink: 0;
     }  

.step-title {
  font-size   : 1.2rem;
	margin-bottom: 0.5rem;
   color: #2c3e50;
    font-weight: 600;
}

.step-description {
	color: #666;
	line-height: 1.6;
}

.additional-resources {
   	 margin-bottom: 3rem;
   padding: 2rem;
  background    :       #f8f9fa;
      border-radius: 15px;
}

.resources-section-title

{

	   font-size: 1.6rem;
  color :#2c3e50;
      font-weight: 600;
   margin-bottom: 1rem;}

.resources-intro-text {
 line-height: 1.6;
        margin-bottom: 1.5rem;
   color: #666;
}

.preparation-checklist {
	list-style: none;
}

.checklist-item {
	position : relative;
    color: #555;
    padding-left: 2rem;
  margin-bottom:      1rem;
	line-height  : 1.5;
}

.checklist-item::before {
  content: '•';
    position: absolute;
  left: 0;
  color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.action-buttons-group {
    display: flex;
         gap: 1rem;
    justify-content: center;
   flex-wrap: wrap;
}

.return-home-btn,
.learn-more-btn {
    padding: 12px 24px;
    border-radius: 25px;
  text-decoration: none;
       font-weight   :600;
    transition: all 0.3s ease;
}

.return-home-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.learn-more-btn {
   background: transparent;

	                    color: #667eea;

	   border: 2px solid #667eea;
}

.return-home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102,126,234,0.3);
}

.learn-more-btn:hover

{
   background: #667eea;
  color:   white;
  transform: translateY(-2px);
}

.thankyou-visual-section {
  display: flex; 
	    align-items: center;
}

.thankyou-image {
  width: 100%;
    height: auto;
  border-radius :   20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}@media (max-width: 768px) {
    .about-hero-container,
    .expertise-content-container,
    .mission-content-area,
    .thankyou-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-main-title,
    .thankyou-primary-title {
        font-size: 2.2rem;
    }

    .story-section-heading,
    .values-title-main,
    .expertise-heading,
    .achievements-title,
    .mission-primary-heading {
        font-size: 2rem;
    }

    .thankyou-message-block {
        padding: 2rem;
    }

    .action-buttons-group {
        flex-direction: column;
        align-items: center;
    }

    .return-home-btn,
    .learn-more-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-main-title,
    .thankyou-primary-title {
        font-size: 1.8rem;
    }

    .value-item-card,
    .thankyou-message-block {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .success-indicator {
        width: 60px;
        height: 60px;
    }

    .success-indicator::after {
        font-size: 1.5rem;
    }
}.methodology-content {
  color: #666;
   line-height: 1.7;
  font-size: 1.1rem;


}

.methodology-content p {
     margin-bottom: 1.5rem;
}

.methodology-content strong {
      color: #2c3e50;
  font-weight: 600;
}