* {
         margin     :    0;
   padding: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
     color: #2c3e50; 

}

.navigation-wrapper


{
    background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
   top: 0;
  z-index: 1000;
}

.nav-container {
    padding: 0 20px;
  margin   :     0 auto;
   align-items: center;
   height: 70px;
  display: flex;
   max-width: 1200px;
    justify-content: space-between;
}

.company-logo {
   height:      45px;
	 width: auto;
}

.menu-items {
   gap: 30px;
	display: flex;
}

.nav-link {

  text-decoration :   none; 
  color   :  #2c3e50; 
   font-weight: 500; 
    transition: color 0.3s ease;
	}

.nav-link:hover {
  color   :#3498db;
}

.burger-toggle {
			display   :    none;
   flex-direction: column;
	 cursor: pointer;
       gap: 4px;
}

.burger-line  
  {
  width  :     25px;
   height: 3px;
 background: #2c3e50;
    transition :     all 0.3s ease;
}


.burger-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-toggle.active .burger-line:nth-child(2) {
 opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu    {
    display: none;
  background: #fff;
	border-top: 1px solid #eee;
	padding: 20px;
}

.mobile-menu.active {


   display: block;


}

.mobile-nav-link {
  display: block;

	padding: 12px 0;

  text-decoration: none;

    color: #2c3e50;

  font-weight : 500;

  border-bottom:    1px solid #f5f5f5;
}

.main-content	{
   margin-top: 70px;
}

.hero-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	    color: white;
	   padding: 80px 0; 

}

.hero-content-wrapper {
   max-width: 1200px;
		margin: 0 auto;
   padding: 0 20px;
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 50px;
  align-items: center;
}

.main-headline {
   font-size: 3rem;
    font-weight: 700;
   margin-bottom: 20px;
  line-height:        1.2;
}

.hero-description {
  font-size     :       1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}


.hero-buttons {
    display: flex;
                    gap: 20px;
}

.primary-cta-button, .secondary-btn {
   padding    :   15px 30px;
  border-radius: 8px;
  text-decoration: none;
   font-weight: 600;
         transition    :   all 0.3s ease;
}

.primary-cta-button  
  {
  background: #e74c3c;
     color: white;
}

.primary-cta-button:hover
	{

   background   :      #c0392b;
  transform: translateY(-2px);

}

.secondary-btn 
 {
  background     :        transparent;
   color: white;
  border  :    2px solid white;
}

.secondary-btn:hover {
    background: white;
   color: #667eea;
}

.hero-image {
  width: 100%;
  height     :  auto;
    border-radius: 12px;
}

.services-overview {
   background: #f8f9fa;
   padding: 100px 0;
}

.section-container {
   padding: 0 20px;
  margin: 0 auto;
	max-width: 1200px;
}

.section-title {
    text-align: center;
    font-size  :    2.5rem;
  margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
}

.service-card {

	   background: white;
    border-radius: 12px;
    padding: 30px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
                    transition: transform 0.3s ease;}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
   width: 100%;
    height: 200px;
   object-fit    :     cover;
    border-radius: 8px;
  margin-bottom:        20px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
	 color: #2c3e50;
}

.service-desc 
 {
    color: #7f8c8d;
   line-height: 1.6;
}

.transformation-process {
    padding    :     100px 0;
           background: white;
}

.process-container {


    max-width   :    1200px;
    margin: 0 auto;
    padding: 0 20px;
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
	align-items: center;

}

.process-image {
   width  :       100%;
  border-radius: 12px;
  height: auto;
}

.process-heading	{
   font-size: 2.2rem;
   margin-bottom: 40px;
    color: #2c3e50;
}

.process-step {
    margin-bottom     :       30px;
  padding-left: 20px;
    border-left: 4px solid #3498db;
}

.step-title


{
   font-size: 1.3rem;
   margin-bottom: 10px;
  color: #2c3e50;
}

.step-description {
      color: #7f8c8d;
}

.cta-section {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 80px 0;
  text-align   :center;
}

.cta-wrapper {
   max-width: 800px;
  margin: 0 auto;
   padding: 0 20px;
}

.cta-headline {
  font-size  :        2.5rem;
  margin-bottom    :       20px;
}

.cta-text {
    font-size: 1.2rem;
  margin-bottom: 30px;
   opacity: 0.9;
}

.cta-action-btn {
  display: inline-block;
  padding: 18px 40px;
    background: white;
   color: #e74c3c;
  text-decoration  :       none;
   border-radius: 8px;
    font-weight  :    600;
                    transition: all 0.3s ease;
}

.cta-action-btn:hover	{
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-form-section	{
	padding: 100px 0;
  background: #f8f9fa;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
    display: grid;
 grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
   color   :       #2c3e50;
}

.contact-description {


   font-size: 1.1rem;
  margin-bottom: 30px;
	color: #7f8c8d;
     }

.contact-item {
  margin-bottom  :      15px;
  color: #2c3e50;
}

.contact-form {
    background: white; 
		padding: 40px; 
	    border-radius   :     12px; 
	  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-group {

	 margin-bottom: 25px;


     }

.form-input, .form-select, .form-textarea {
    width: 100%;
  padding: 15px;
   border: 2px solid #e1e8ed;
   border-radius     :       8px;
   font-size :        1rem;
   transition: border-color 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	outline: none;
   border-color: #3498db;
}

.form-textarea {
    resize: vertical;
  min-height: 120px;
}

.form-submit-btn    {
	width: 100%; 
  padding: 18px; 
  background: #3498db; 
   color: white; 
   border: none; 
    border-radius: 8px; 
   font-size: 1.1rem; 
    font-weight: 600; 
  cursor: pointer; 
    transition: background 0.3s ease;
}

.form-submit-btn:hover {
    background: #2980b9;


}

.site-footer {
  background: #2c3e50;
    color: white;
  padding     :    60px 0 20px;
}

.footer-content {
  max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
  display: grid;
	 grid-template-columns: 1fr 2fr;
   gap: 50px;
}

.footer-logo {
               height: 60px;
	width: auto;
  filter: brightness(0) invert(1);
}

.footer-sections {
    display: grid; 
	   gap: 40px; 
	  grid-template-columns: repeat(3, 1fr);
}

.footer-heading {
    font-size: 1.2rem;
	margin-bottom: 20px;
   color: #ecf0f1;
}

.footer-links {
   list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-link {
        -o-transition: color 0.3s ease;
   -moz-transition: color 0.3s ease;
   color: #bdc3c7;
   -webkit-transition: color 0.3s ease;
  text-decoration: none;
  transition :        color 0.3s ease;
}

.footer-link:hover {
  color: #3498db;


}

.footer-contact {
   color: #bdc3c7;
}

.footer-bottom {

	    border-top: 1px solid #34495e;
   margin-top: 40px;
  padding-top: 20px;
   text-align: center;
    color: #95a5a6;
	}@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }
    
    .menu-items {
        display: none;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .main-headline {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .section-container, .contact-container, .footer-content {
        padding: 0 15px;
    }
    
    .main-headline {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 25px;
    }
}.nav-link.active {

	   color: #3498db;
    font-weight: 600;

}

.about-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
		color   :        white;
    padding: 80px 0;
}

.about-hero-container     {
   max-width  :     1200px;
        margin: 0 auto;
    padding: 0 20px;
    display: grid;
   grid-template-columns     :        1fr 1fr;
   gap     : 50px;
  align-items: center;
}

.about-main-title		{
  font-size: 2.8rem;
   font-weight    :      700;
   margin-bottom: 20px;
       line-height: 1.2;
}

.about-hero-text {
   font-size: 1.2rem;
    opacity: 0.9;
   line-height    :   1.6;
}

.about-hero-img {
   width: 100%;
  height: auto;
   border-radius: 12px;
}

.company-story{
	   padding: 100px 0;
    background: white;
}

.story-container {
    max-width: 900px;
   margin: 0 auto;
    padding: 0 20px;
      text-align: center;
}

.story-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;


}

.story-paragraph {
 font-size :  1.1rem;
   line-height: 1.8;
	 margin-bottom: 25px;
  color: #34495e;


}

.methodology-section {
    padding: 100px 0;
  background:   #f8f9fa;
}

.methodology-wrapper{
  max-width: 1200px;
   margin: 0 auto;
	padding: 0 20px;
          display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.methodology-img {
   border-radius: 12px;
   height: auto;
    width: 100%;
}

.methodology-title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.method-text
{
   font-size: 1.1rem;
  margin-bottom: 30px;
  color: #7f8c8d;
    line-height: 1.6;} 

.method-pillars {
  display: flex;
		flex-direction:  column;
  gap: 25px;
}

.pillar-item {
    background: white;
         padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.pillar-title		{
   font-size: 1.3rem;
	 margin-bottom: 10px;
  color: #2c3e50;
     }

.pillar-desc {
  color: #7f8c8d;
   line-height: 1.6;
}

.values-section {
  padding: 100px 0;
    background: white;
}

.values-container {
                    max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
}

.values-title {
      text-align: center;
   font-size: 2.5rem;
   margin-bottom   :        60px;
    color: #2c3e50;
}  

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap  :     30px;
}

.value-card {
				 background   :      #f8f9fa;
    padding: 35px;
    border-radius     :        12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-name {
	      color     :      #2c3e50;
  font-size:   1.4rem;
  margin-bottom: 15px;
	}

.value-description {
  color: #7f8c8d;
   line-height: 1.6; 
	
}

.expertise-showcase 
 {
  padding: 100px 0;
   background: #f8f9fa;
}

.expertise-wrapper {
  max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.expertise-title {
    font-size  :       2.2rem;
  margin-bottom :   40px;
    color: #2c3e50;
}

.expertise-stats 
 {
     gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 30px;
  display: grid;

}

.stat-item {
   text-align: center;
        background: white;
    padding: 25px;
   border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
	
}


.stat-number  {
    font-size: 2.5rem;
    font-weight  :     700;
  color: #3498db;
   margin-bottom    :     5px;
}

.stat-label {
    font-size     :    0.95rem;
    color: #7f8c8d;
    font-weight     : 500; 

}

.expertise-text {
     font-size: 1.1rem;
   color: #34495e;
    line-height: 1.6;


}

.expertise-img 
 {
  width: 100%;
   height: auto;
  border-radius: 12px;
}

.approach-details {
    padding: 100px 0;
  background: white;
}

.approach-container {
    max-width: 1000px;
  margin: 0 auto;
    padding: 0 20px;
}

.approach-title {
   text-align: center;
               font-size   :       2.5rem;
   margin-bottom: 60px;
   color: #2c3e50;
	}

.approach-reasons {
   display: grid;
  grid-template-columns: 1fr;
    gap: 40px; 
	
}

.reason-block {
  padding: 30px;
  background: #f8f9fa;
    border-radius: 12px;
  border-left: 5px solid #3498db;
}

.reason-title {
   font-size: 1.5rem;
    margin-bottom: 15px;
  color: #2c3e50;
}

.reason-text {
   color: #34495e;
     line-height: 1.7;
   font-size: 1.05rem;
}

.transformation-gallery {
  padding: 100px 0;
    background: #f8f9fa;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-title {
   text-align: center;
    font-size: 2.5rem;
   margin-bottom: 60px;
   color: #2c3e50;

}

.gallery-showcase {
  display: grid;
   grid-template-columns  :    1fr 1fr;
	 gap: 50px;
    align-items     :  center;
}

.gallery-img {
   width: 100%;
   height: auto;
  border-radius: 12px;

}

.gallery-subtitle {
               font-size: 1.8rem;
       margin-bottom: 20px;
      color: #2c3e50;
}

.gallery-description {
          font-size: 1.1rem;
	 margin-bottom: 30px;
  color: #34495e;
    line-height: 1.6;
}

.process-highlights {
   display: flex;
    flex-direction: column;
         gap :15px;

}

.highlight-point {
    padding: 12px;
    background: white;
	border-radius: 6px;
  color: #2c3e50;
    font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
  padding: 100px 0;
}

.thankyou-container {
   max-width: 1200px;
               margin     :        0 auto;
    padding: 0 20px;
   display: grid;
       grid-template-columns: 1fr 1fr;
	gap     :  60px;
   align-items: center;
}

.success-indicator {
   text-align: center;
    margin-bottom: 30px;
}

.checkmark-circle {
	width  :   80px;
	 height: 80px;
  background: rgba(255,255,255,0.2);
   border-radius     :       50%;
	display : inline-flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
}

.checkmark		{
   width: 30px;
      height   :    15px;
   	border: 3px solid white;
     border-top  : none;
       border-right  :       none;
     transform: rotate(-45deg); 

}

.thankyou-title {
	 font-size: 2.5rem;
    font-weight: 700;
    margin-bottom     :    20px;
  text-align: center;
} 

.thankyou-message {
  font-size: 1.2rem;
  margin-bottom :       40px;
    text-align: center;
    opacity: 0.9;
    line-height: 1.6;
} 

.next-steps {
    margin-bottom  :40px;
}

.steps-title {
               font-size: 1.8rem;
   margin-bottom: 30px;
    text-align: center;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.step-item {
    display: flex;

	   gap: 20px;

	      align-items: flex-start;
}

.step-number {
    width: 40px;
   height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
    display: flex;
  align-items: center;
   justify-content: center;
  font-weight   :      700;
   font-size: 1.2rem;
   flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
       font-size: 1.2rem;
       margin-bottom     :   8px;
   font-weight: 600;
}

.step-description {
     opacity :      0.9;
	 line-height: 1.5;
}

.additional-resources {
   text-align: center;
}

.resources-title {
   font-size: 1.8rem;
   margin-bottom: 20px;
}

.resources-text {
   font-size: 1.1rem;
    margin-bottom: 30px;
   opacity: 0.9;
    line-height: 1.6;
}

.action-buttons {
  display:    flex;
    gap: 20px;
   justify-content: center;
}

.primary-return-btn, .secondary-return-btn {
     padding: 15px 30px;
    border-radius: 8px;
  text-decoration: none;
	font-weight: 600;
   transition  :  all 0.3s ease;




}

.primary-return-btn {
   background   :   white;
   color: #27ae60;
}

.primary-return-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2); 

}

.secondary-return-btn {

	  background: transparent;
  color: white;
  border: 2px solid white;
}

.secondary-return-btn:hover {
   background     :       white;
  color: #27ae60;
}

.thankyou-img {
   width: 100%;
   height: auto;
    border-radius: 12px;
}

.contact-confirmation {
     padding: 80px 0;
   background: white;

     }

.confirmation-wrapper {
  max-width: 1000px;
    margin: 0 auto;
   padding: 0 20px;
        text-align: center;
}

.confirmation-title {
  font-size: 2.2rem;
	  margin-bottom   :       20px;
	   color: #2c3e50;
}

.confirmation-text {
  font-size: 1.1rem;
   margin-bottom  : 40px;
   color: #7f8c8d;
   line-height: 1.6;
}

.contact-methods {
                    display    :     grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
}

.contact-method {
  background: #f8f9fa;
	padding: 30px;
   border-radius: 12px;
}


.method-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
  color: #2c3e50;
}

.method-detail {
         font-size: 1.1rem;
   margin-bottom: 8px;
    color: #34495e;
  font-weight: 600;
}

.method-note {
  font-size    :      0.95rem;
    color: #7f8c8d;
}

.expectations-section {
         padding: 80px 0;
	   background: #f8f9fa;
}

.expectations-container {
   max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
     }

.expectations-title {
  text-align: center;

   font-size: 2.2rem;

   margin-bottom: 50px;

   color: #2c3e50;
}

.expectations-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                    gap: 30px;
     }

.expectation-card


{
  background: white;
 padding: 30px;
       border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.expectation-title     {
   font-size: 1.3rem;
    margin-bottom: 15px;
   color: #2c3e50;
}  

.expectation-desc {
	 color:   #7f8c8d;
  line-height: 1.6;
}@media (max-width: 768px) {
    .about-hero-container,
    .methodology-wrapper,
    .expertise-wrapper,
    .gallery-showcase,
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-main-title {
        font-size: 2.2rem;
    }
    
    .expertise-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        text-align: left;
    }
    
    .values-grid,
    .expectations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-main-title,
    .thankyou-title {
        font-size: 1.8rem;
    }
    
    .section-title,
    .story-title,
    .values-title,
    .gallery-title,
    .approach-title {
        font-size: 2rem;
    }
    
    .methodology-title,
    .expertise-title,
    .confirmation-title,
    .expectations-title {
        font-size: 1.8rem;
    }
}.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
  padding  :20px 0;
   line-height:   1.8;
  color: #2c3e50; 
	
}

.content-wrapper h2 {
   color: #2c3e50;
  margin-top: 30px;
   font-size: 1.8rem;
          margin-bottom: 15px;
}

.content-wrapper p {
        margin-bottom: 20px;
  color: #7f8c8d;
}

.content-wrapper ul {
    list-style-type: disc;
   padding-left: 20px;
      margin-bottom: 20px;
}

.content-wrapper li

{
  margin-bottom: 10px;
   color: #2c3e50;
}