* {
       box-sizing    :   border-box;
    margin: 0;
    padding: 0;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
    color :  #2c3e50;
  background  :        #ffffff;
}

.main-navigation {
  position: fixed;
    top: 0;
	width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
     z-index :        1000;
	 padding   :      1rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
   max-width: 1200px;
    margin   :   0 auto;
    display:   flex;
  justify-content: space-between;
  align-items: center;
 padding: 0 2rem;
}

.brand-logo {
   height :        42px;
   width: auto;
}

.nav-links {
          display: flex;
	    gap: 2.5rem;
}

.nav-item {
    text-decoration: none;
    -webkit-transition: color 0.3s ease;
  color: #34495e;
   font-weight: 500;
   font-size   : 16px;
  transition: color 0.3s ease;
}

.nav-item:hover {
   color   :      #3498db;
}

.mobile-burger {
    display: none;
   flex-direction: column;
  cursor: pointer;
}

.mobile-burger span {
   width: 25px;
	 height: 3px;
   background: #34495e;
   margin: 3px 0;
  transition:    0.3s;
}

.hero-section {
  margin-top: 80px;
	 padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
  display: grid; 
   align-items: center; 
    margin: 0 auto; 
   grid-template-columns: 1fr 1fr; 
  gap: 4rem; 
    max-width: 1200px;
}

.hero-text h1 {
     font-size: 3.2rem;
   color: #2c3e50;
  margin-bottom: 1.5rem;
    line-height: 1.2;
   font-weight: 700;


}

.hero-text p {
    font-size: 1.2rem;
    color: #5a6c7d;
  margin-bottom: 2.5rem;
}

.hero-actions {
   display: flex;
  gap:       1.5rem;
}

.cta-primary, .cta-secondary {

     border-radius: 8px;
   text-decoration: none;
   font-weight: 600;
    transition: all 0.3s ease;
   padding: 0.9rem 2rem;
   border: 2px solid transparent;
     }

.cta-primary {

    background: #3498db;
  color :     white;


}

.cta-primary:hover 
 {
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
	background:   #2980b9;
     }

.cta-secondary {
  background: transparent;
  color: #3498db;
   border-color: #3498db;
}

.cta-secondary:hover {
   background: #3498db;
    color: white;
}

.hero-image {
  width :      100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.services-overview {


   padding: 5rem 2rem;
					background: white;}

.section-wrapper {
   max-width: 1200px;
   margin    : 0 auto;
}

.services-overview h2 {
   text-align: center;
  font-size: 2.8rem;
   color: #2c3e50;
    margin-bottom: 3rem;
   font-weight: 700;
}  

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
 gap: 2.5rem;
}

.service-card   {
  background: #f8f9fa;
    border-radius:    12px;
    overflow: hidden;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-visual img {
    width: 100%;
    height: 220px;
   object-fit: cover;
}

.service-card h3 {
   font-size: 1.5rem;
       color: #2c3e50;
       margin: 1.5rem 1.5rem 1rem;
       font-weight: 600;
}

.service-card p {
    line-height: 1.7;
  padding: 0 1.5rem 2rem;
   color: #5a6c7d;
}

.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  padding: 4rem 2rem;
  color: white; 
	
}

.cta-content		{
   max-width: 1000px;
  margin   :    0 auto;
   display: flex;
    justify-content: space-between;
   align-items: center;
  gap: 3rem;
}

.cta-text h2 {
   font-size: 2.4rem;
  margin-bottom     : 1rem;
   font-weight  :       700;
}

.cta-text p {
	  font-size: 1.1rem;
   opacity  :   0.95;
}

.consultation-btn {
    background: white;
	color: #3498db;
	padding: 1rem 2.5rem;
	text-decoration: none;
    border-radius: 8px;
  font-weight: 600;
       font-size: 1.1rem;
   transition    :        all 0.3s ease;
  white-space: nowrap;
}

.consultation-btn:hover {
	background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.methodology-section		{
  padding: 5rem 2rem;
	background: #f8f9fa;
}

.method-container {
	max-width: 1200px;
  margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items: center;
}

.method-content h2 {
  font-size: 2.6rem;
    color: #2c3e50;
  margin-bottom: 2rem;
   font-weight: 700;
}

.method-features {
  display: flex;
					flex-direction: column;
    gap: 2rem;
}

.feature-item h3 {
    font-size: 1.4rem;
  color    :        #34495e;
    margin-bottom: 0.5rem;
  font-weight     :  600;
}

.feature-item p {
  color: #5a6c7d;
   line-height: 1.7;
}

.method-visual img {
  width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);


}

.contact-section {
	 padding: 5rem 2rem;
   background: white;
	
}

.contact-wrapper {
   max-width: 1200px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 4rem; 
	
}

.contact-info h2 {
   margin-bottom: 1.5rem;
   font-weight: 700;
  color: #2c3e50;
   font-size:        2.6rem;
}

.contact-info p  
  {
  color: #5a6c7d;
   margin-bottom: 2rem;
    line-height: 1.7; 

}

.contact-details {
   display: flex;
   flex-direction: column;
    gap   :    1rem;
	
}

.detail-item  {
  color: #34495e;
    font-size   :   1rem;
	}

.contact-form {
      background: #f8f9fa;
  padding: 2.5rem;
   border-radius: 12px;
  border: 1px solid #e9ecef; 
	
	}

.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: 0.8rem;
   border: 2px solid #dee2e6;
  border-radius: 6px;
	font-size: 1rem;
    transition: border-color 0.3s ease;
  background: white;


} 

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
  border-color: #3498db;
}

.form-group textarea {
	 resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #3498db;
    color: white;
   padding: 1rem 2rem;
  border: none;
   border-radius: 6px;
   font-size: 1.1rem;
   font-weight  :      600;
          cursor: pointer;
   transition  :all 0.3s ease;
   width   :    100%;

}

.submit-btn:hover {
  background: #2980b9;
  transform: translateY(-2px);
}



.main-footer {
       background: #2c3e50;
    color: white;
         padding: 3rem 2rem 1rem;
}



.footer-content {
    max-width: 1200px;
    margin: 0 auto;
  display :      grid;
	grid-template-columns: 1fr 2fr;
               gap: 3rem;
  margin-bottom: 2rem; 
	
}

.footer-logo {
  height: 40px;
    width: auto;
}

.footer-links  {
        display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;

}

.link-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.link-column a {
    display: block;
  color: #bdc3c7;
  text-decoration: none;
  margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-column a:hover   {
  color  :  #3498db;
}

.link-column p {
    color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-bottom   {
  border-top: 1px solid #34495e;
  padding-top: 1.5rem;
  text-align: center;
    color: #95a5a6;
}@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-burger {
        display: flex;
    }

    .mobile-burger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-burger.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-burger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .method-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .services-overview,
    .methodology-section,
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 3rem 1rem;
    }
}.nav-item.active {
   color: #3498db;
   font-weight: 600;
}

.about-hero {
	margin-top: 80px;
     padding: 3rem 2rem;
     background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
     color: white;
         text-align : center;
}

.about-hero-content h1 {
   font-size: 3rem;
    margin-bottom: 1rem;
  font-weight: 700;
}

.about-hero-content p {
    font-size: 1.3rem;
  max-width: 800px;
   margin: 0 auto;
         opacity: 0.9;
}

.company-story    {
  padding: 5rem 2rem;
    background  :   white;
}

.story-container {
    max-width: 1200px;
   margin: 0 auto;
	 display: grid;
   grid-template-columns: 1.2fr 1fr;
               gap:       4rem;
               align-items: center;
}

.story-content h2 {
   font-size: 2.5rem;
    color: #2c3e50;
        margin-bottom: 2rem;
   font-weight: 700;
}

.story-content p {


   color: #5a6c7d;
  line-height: 1.8;
    margin-bottom: 1.5rem;
   font-size   :  1.1rem;
	


}

.story-highlights 
 {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
    margin-top: 3rem; 

}

.highlight-item {
   text-align: center;
          padding: 1.5rem;
    background: #f8f9fa;
    border-radius   :8px;
}

.highlight-item h3  
  {
	 margin-bottom: 0.5rem;
    color: #3498db;
    font-weight: 700;
    font-size: 2.5rem; 

}

.highlight-item p {
      margin: 0;
    font-size: 0.9rem;
    color: #5a6c7d;
}

.story-visual img {
  width: 100%;
  height: auto;
   border-radius :     12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.team-expertise {
    padding: 5rem 2rem;
   background   :  #f8f9fa;
}

.expertise-wrapper {
  max-width: 1200px; 
    margin: 0 auto;
}

.expertise-wrapper h2 {
	font-size: 2.6rem;
   color: #2c3e50;
   text-align     : center;
  margin-bottom  :        3rem;
   font-weight: 700;
}

.expertise-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.expertise-area {
   background: white;
		border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.expertise-area:hover {


  transform: translateY(-5px);
}

.expertise-area img {
   width: 100%;
  height: 200px;
  object-fit: cover;
}

.expertise-area h3 {
   font-size: 1.4rem;
   color: #2c3e50;
    margin   :    1.5rem 1.5rem 1rem;
   font-weight: 600;
}

.expertise-area p {

   padding: 0 1.5rem 2rem;
   color  :   #5a6c7d;
  line-height: 1.7;
	}

.methodology-approach   {
   padding: 5rem 2rem;
   background: white;
}

.approach-container {
	max-width: 1200px;
	margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items: center;
}

.approach-text h2 {
	   font-size: 2.5rem;
   color  :#2c3e50;
   margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-text > p {
   color :    #5a6c7d;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size     :     1.1rem;
}

.approach-principles {
   display: grid;
   gap: 1.5rem;
}

.principle {
    padding :    1.5rem;
	background:    #f8f9fa;
	 border-radius: 8px;
   border-left: 4px solid #3498db;
}

.principle h4 {
  color: #2c3e50; 
	   margin-bottom: 0.5rem; 
	  font-weight: 600;
}

.principle p {
   color: #5a6c7d;
   line-height: 1.6;
   margin: 0;
}

.approach-visual img {
   width: 100%;
	height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.mission-values {
	   padding: 5rem 2rem;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);}

.mission-content {
	max-width: 1200px;
   margin: 0 auto;
}

.mission-text {

	  text-align: center;
	margin-bottom: 4rem;

}

.mission-text h2 {
               font-size: 2.6rem; 
   color: #2c3e50; 
   margin-bottom: 1.5rem; 
   font-weight: 700;
}

.mission-text p {
   font-size: 1.2rem;
   color     :    #5a6c7d;
               max-width: 800px;
	margin: 0 auto;
      line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}


.value-item {
  background:        white;
		 padding: 2rem;
  border-radius :     10px;
	text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 1.4rem;
   color: #2c3e50;
    margin-bottom: 1rem;
   font-weight: 600;
}

.value-item p {
  color: #5a6c7d;
  line-height: 1.6;
}

.thankyou-hero {
   margin-top: 80px;
   padding  :       4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
   display: flex;
  align-items  :      center;
}

.thankyou-container {

   max-width: 1200px;
    margin   :       0 auto;
    display: grid;
  grid-template-columns: 1.2fr 1fr;
   gap: 4rem;
    align-items: center;

}

.thankyou-content {
  text-align   :   left;
}

.success-icon {
    margin-bottom: 2rem;

}

.checkmark-circle {
         width: 80px;
  height: 80px;
       border-radius: 50%;
    background: #27ae60;
  display: flex;
  align-items: center;
    justify-content: center;
   position: relative;
    animation: scaleIn 0.6s ease-out;
}

.checkmark {
    width: 35px;
   height: 20px;
   border: 4px solid white;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
   animation: checkmarkDraw 0.8s ease-out 0.3s both;

}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    0% { width: 0; height: 0; }
    100% { width: 35px; height: 20px; }
}.thankyou-content h1     {
   font-size: 2.8rem;
   color: #2c3e50;
   margin-bottom: 1rem;
    font-weight: 700;
}

.thankyou-subtitle {
      font-size: 1.2rem;
  color: #5a6c7d;
  margin-bottom: 3rem;
	}

.confirmation-details h2 {
         font-size: 2rem;
	color: #2c3e50;
   margin-bottom: 2rem;
   font-weight: 600;
}

.next-steps {
  margin-bottom: 3rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
   margin-bottom    :     2rem;
  gap: 1.5rem;
}  

.step-number {
  width: 40px;
  height: 40px;
         background: #3498db;
  color: white;
   border-radius: 50%;
   display: flex;
  align-items: center;
	justify-content: center;
   font-weight: 600;
  flex-shrink  :        0;
}

.step-content h3 {
    font-size: 1.3rem;
  color: #2c3e50;
   margin-bottom: 0.5rem;
	 font-weight: 600;
}

.step-content p
	{

			color     :       #5a6c7d;
  line-height: 1.6;
     }

.contact-reminder {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
  margin-bottom: 3rem;
   border-left: 4px solid #3498db;
}

.contact-reminder h2 {
    font-size: 1.5rem;
    color: #2c3e50;
	 margin-bottom: 1rem;
   font-weight: 600;
}

.contact-reminder p {
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.urgent-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; 
	
}

.contact-item {
    color: #34495e;
   font-size: 1rem;
}

.return-actions {
  display    :   flex;
    gap: 1.5rem;
  flex-wrap: wrap;
}

.return-home,
.learn-more {
    padding: 0.9rem 2rem;
   text-decoration: none;
	border-radius: 8px;
  font-weight: 600;
    transition: all 0.3s ease;
	display: inline-block;
}

.return-home {
    background: #3498db;
               color: white;
}

.return-home:hover {
   background: #2980b9;
  transform: translateY(-2px);
}

.learn-more {
  background: transparent;
   color   :      #3498db;
   border: 2px solid #3498db;
}

.learn-more:hover {
    background: #3498db;
                    color: white;
}



.thankyou-visual img {
  width: 100%;
    height: auto;
	border-radius:  12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.additional-resources {
  padding: 4rem 2rem;
   background  :      white;
}

.resources-container {
  margin: 0 auto;
   text-align: center;
  max-width:1000px;
}

.resources-container h2{
      margin-bottom: 1rem;
   font-size: 2.4rem;
  font-weight: 700;
     color: #2c3e50;

	}

.resources-container > p {
    font-size   :     1.1rem;
  color: #5a6c7d;
          margin-bottom: 3rem;
  line-height: 1.7;
} 

.preparation-tips 
 {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
    text-align: left;
  border: 1px solid #e9ecef;
          transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}


.tip-card h3 {
  font-size    :    1.3rem;
   color: #2c3e50;
  margin-bottom: 1rem;
    font-weight: 600;
}

.tip-card p {
   color: #5a6c7d;
  line-height: 1.6;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .story-container,
    .approach-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .thankyou-content {
        text-align: center;
    }

    .step-item {
        text-align: left;
    }

    .return-actions {
        justify-content: center;
    }

    .preparation-tips {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 2rem 1rem;
    }

    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .company-story,
    .team-expertise,
    .methodology-approach,
    .mission-values {
        padding: 3rem 1rem;
    }

    .thankyou-hero {
        padding: 2rem 1rem;
    }

    .additional-resources {
        padding: 3rem 1rem;
    }

    .contact-reminder {
        padding: 1.5rem;
    }

    .return-actions {
        flex-direction: column;
        align-items: center;
    }

    .return-home,
    .learn-more {
        width: 100%;
        text-align: center;
    }
}