* {
  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   :     #f8f9fa;
}

.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   position:       fixed;
   top: 0;
   width: 100%;
   z-index: 1000;
  border-bottom: 1px solid #e9ecef;

}

.navigation-wrapper {
  max-width: 1200px;
  margin: 0 auto;
    position: relative;
}

.nav-container {
    display: flex;
	 justify-content: space-between;
  align-items: center;
   padding: 1rem 2rem;
     }

.brand-section .brand-logo {
  height: 45px;
          width: auto;
}

.desktop-nav {
   display: flex;
    gap: 2rem;
}

.nav-link {
  text-decoration  : none;
    color: #495057;
 font-weight: 500;
    transition: color 0.3s ease;
   position  :relative;
}

.nav-link:hover, .nav-link.active {
  color: #007bff;
}

.nav-link.active::after    {
  content: '';
    position  :     absolute;
  bottom: -8px;
   left: 0;
 width: 100%;
         height: 2px;
         background  : #007bff;
}

.mobile-menu-toggle {
  display: none;
	flex-direction: column;
    background: none;
  border: none;
    cursor: pointer;
   padding: 5px;
}

.burger-line
	{
  width: 25px;
   height: 3px;
    background: #495057;
     margin: 3px 0;
   transition: 0.3s;
}

.mobile-nav {
   display: none;
  position: absolute;
    top: 100%;
    left: 0;
   width: 100%;
   background: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding  :  1rem 0;
}

.mobile-nav-link {
   display: block;
    padding: 0.75rem 2rem;
   text-decoration: none;
         color: #495057;
  font-weight: 500;
     transition: background 0.3s;
}

.mobile-nav-link:hover {
    background   :      #f8f9fa;
  color: #007bff;
}

.main-content {
	margin-top: 80px;
}

.hero-section {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 6rem 0;
	overflow: hidden;
	}

.hero-container {
    max-width: 1200px;
	margin:    0 auto;
  padding: 0 2rem;
   display: grid;
      grid-template-columns   :    1fr 1fr;
   gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
	 font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description  
  {
	 font-size: 1.2rem;
   margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-actions {
    display: flex;
  gap: 1rem;
   flex-wrap    :      wrap;
}

.cta-primary, .cta-secondary


{
    padding: 0.875rem 2rem;
   text-decoration: none;
      border-radius: 6px;
    font-weight: 600;
   transition :    all 0.3s ease;
    display: inline-block;
}

.cta-primary {
  background: #ffffff;
    color    :       #667eea;
}

.cta-primary:hover {
  background    :#f8f9fa;
  transform: translateY(-2px);
}

.cta-secondary {
    border  :  2px solid white;
     color   :   white;
}

.cta-secondary:hover {
    background: white;
   color: #667eea;
}

.hero-image {

	    width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);

}

.section-container {
  max-width: 1200px;
   padding: 0 2rem;
    margin: 0 auto;
}

.features-section {
    padding: 5rem 0;
	 background: white;
}

.section-title {
   text-align: center;
               font-size: 2.5rem;
               font-weight: 700;
	margin-bottom: 3rem;
  color: #2c3e50;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.feature-card {
  background     :      white;
                    border-radius  :  12px;
                    overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-image
{
  width: 100%;
    height: 200px;
   object-fit :      cover;
}  

.feature-title {

  font-size: 1.5rem;
  font-weight : 600;
  margin: 1.5rem 1.5rem 1rem;
		 color: #2c3e50;

}

.feature-text {
   padding   : 0 1.5rem 1.5rem;
   color: #6c757d;
        line-height: 1.6;
}

.process-section {
    padding: 5rem 0;
  background: #f8f9fa;
}

.process-steps

{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.step-item {
    text-align: center;
} 

.step-number {
   display: inline-block;
   width: 60px;
    height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  line-height: 60px;
    font-size: 1.5rem;
  font-weight  :     700;
          margin-bottom    :1.5rem;
}

.step-title {
   font-size: 1.3rem;
   font-weight: 600;
   margin-bottom: 1rem;
    color: #2c3e50;
}

.step-description {
    color: #6c757d;
	 line-height: 1.6;
}

.cta-section {
    padding: 5rem 0;
	  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
	    color: white;
}

.cta-container {
  max-width: 1200px;
   margin: 0 auto;
  padding: 0 2rem;
    display: grid;
	grid-template-columns  : 1fr 1fr;
    gap: 4rem;
  align-items: center;
}

.cta-title {
	font-size  :  2.5rem;
       font-weight: 700;
     margin-bottom: 1.5rem;
}

.cta-text {
    font-size  :      1.1rem;
    margin-bottom    : 2rem;
	opacity: 0.9;
}

.cta-button {
   background: white;
    color: #667eea;
   padding: 1rem 2.5rem;
  text-decoration: none;
   border-radius: 6px;
    font-weight: 600;
   transition     :   all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
        background: #f8f9fa; 
	
}

.cta-image {
   width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.about-preview {
  padding: 5rem 0;
  background: white;
}

.about-content {
      max-width: 800px;
      margin: 0 auto;
    text-align     :  center;
}

.about-text {
	   font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
   line-height: 1.7;
     }

.contact-section {
   padding: 5rem 0;
  background :        #f8f9fa;
}

.contact-wrapper {
  display: grid;
   grid-template-columns: 1fr 2fr;
          gap: 4rem;
    margin-top: 3rem;
}

.contact-info-title {
	 font-size: 1.5rem;
	 font-weight: 600;
   margin-bottom  :   2rem;
   color: #2c3e50;
}

.contact-item {
   margin-bottom:     2rem;
}

.contact-item strong {
	color: #495057;
  display     :    block;
   margin-bottom: 0.5rem; 

}

.contact-item p {
   color: #6c757d;
    line-height : 1.6;
}

.contact-form {
	  background  :        white;
    padding: 2.5rem;
   border-radius :    12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);

}

.form-group   {
    margin-bottom: 1.5rem;
}

.form-label {
  display: block;
   margin-bottom: 0.5rem;
   font-weight: 500;
 color: #495057;
}

.form-input, .form-select, .form-textarea {
   width: 100%;
  padding: 0.875rem;
  border: 2px solid #e9ecef;
   border-radius: 6px;
		 font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus
	{
  outline: none;
  border-color: #667eea; 
	
}

.form-textarea {
    resize    :       vertical;
    min-height: 120px;
}

.form-submit {
  background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
   padding: 1rem 2.5rem;
  border: none;
   border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
  cursor: pointer;
    transition: all 0.3s ease;
        width: 100%;
}

.form-submit:hover    {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4); 

}

.main-footer {
   background :   #2c3e50;
         color: white;
    padding: 3rem 0 1rem;
	
}

.footer-container 
 {
    max-width: 1200px;
    margin  :    0 auto;
	 padding: 0 2rem;
   display: grid;
   grid-template-columns: 1fr 2fr;
   gap: 3rem;
}

.footer-logo {
  height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-description {
    color: #95a5a6; 
	    line-height   :       1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}  

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
          margin-bottom: 1rem;
	color: white;
}

.footer-list {
    list-style: none;
}

.footer-list li {
	margin-bottom     :  0.5rem;
}  

.footer-link {
   color: #95a5a6;
      text-decoration: none;
   	transition: color 0.3s ease;
}

.footer-link:hover   {
  color: white;
}

.footer-contact p {
  color: #95a5a6;
   margin-bottom: 0.5rem;
   line-height: 1.6;
}

.footer-bottom {
	 border-top: 1px solid #34495e;
   margin-top: 2rem;
    padding-top:    1rem;
    text-align: center;
   color: #95a5a6;
}@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .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);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}.about-hero {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  color     :   white;
        padding: 8rem 0 4rem;
    text-align: center;}

.about-hero-container {
   max-width: 800px;
	 margin: 0 auto;
       padding: 0 2rem;
}

.about-hero-title {


    font-size    :       3.5rem;
   font-weight: 700;
    line-height: 1.1;
  margin-bottom: 1.5rem;}

.about-hero-subtitle {
  font-size: 1.3rem;
  opacity:0.9;
    line-height   :   1.6;
}

.company-story {
   padding: 6rem 0;
    background: white; 
	
}

.story-content {
    display  :grid;
  grid-template-columns: 1.2fr 1fr;
        gap :     4rem;
   align-items: center;
}

.story-title {
  font-size: 2.2rem;
  font-weight: 700;
   margin-bottom: 2rem;
    color  :      #2c3e50;
}

.story-paragraph {
   font-size: 1.1rem;
    line-height: 1.7;
   color: #6c757d;
  margin-bottom: 1.5rem;
}

.story-image {
	    width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);

	}

.expertise-section {
   padding: 6rem 0;

	  background: #f8f9fa;
}

.expertise-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
   margin-top: 3rem;
}

.expertise-card {
  background: white;
   padding: 2rem;
   border-radius   :     12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;


     }

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.expertise-title {
  font-size: 1.4rem;

   font-weight: 600;

   margin-bottom    :   1rem;

	color: #2c3e50;
}

.expertise-description {
    color: #6c757d;
    line-height: 1.6;
}

.team-section {
  padding: 6rem 0; 
	    background: white;
} 

.team-content
	{
   display    :      grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items: center;

}

.team-description {
    font-size: 1.1rem;
  line-height: 1.7;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.team-image
	{
         width: 100%;
   height: auto;
	 border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.methodology-section    {
   padding    :        6rem 0;
   background :#f8f9fa;
}

.methodology-steps {
  display: grid;
   gap    : 2rem;
  margin-top: 3rem;
}

.method-step {
  display: grid;
   grid-template-columns: auto 1fr;
   gap: 2rem;
	 align-items: flex-start;
  background: white;
        padding  :2rem;
  border-radius    :     12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.method-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
   color: white;
    border-radius: 50%;
  display: flex;
  align-items: center;
         justify-content: center;
    font-size: 1.5rem;
	 font-weight: 700;
  flex-shrink: 0;
}

.method-title {
  font-size    :1.3rem;
   font-weight: 600;
    margin-bottom: 0.5rem;
  color: #2c3e50;
	
}

.method-description {
    color    :   #6c757d;
	 line-height: 1.6;
}

.results-section {
   padding: 6rem 0;
   background: white;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 3rem;
  margin-top: 3rem;
}

.result-item {
     text-align: center;
    padding: 2rem;
     }

.result-number {
  font-size     :       3rem;
    font-weight: 700;
   color: #667eea;
    margin-bottom: 1rem;
  display    :    block;
}

.result-text {
	color: #6c757d; 
   font-size: 1.1rem; 
   line-height: 1.5;


}

.values-section {
          padding: 6rem 0;
  background: #f8f9fa;
}

.values-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
   align-items: center;
}

.value-item {
	   margin-bottom  :2.5rem;


}

.value-title {
    font-size: 1.4rem;
  font-weight: 600;
    margin-bottom :      1rem;
  color    :   #2c3e50;
}

.value-description {
   color: #6c757d;
  line-height    :     1.6;
}

.values-image {
  width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.location-section {
    background: white;
    padding: 6rem 0;
}

.location-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
} 

.location-description {
  font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
	margin-bottom   :  2rem;
}

.location-details {
  background: #f8f9fa;

         padding: 2rem;

     border-radius: 12px;
} 

.location-title {
  font-size: 1.3rem;
     font-weight: 600;
                    margin-bottom: 1rem;
   color: #2c3e50;}

.location-address {
	 color    :     #6c757d;
    line-height  :   1.6;
   margin-bottom  :  0.5rem;
}

.location-phone {
    font-weight: 500;
   color: #667eea;
}



.location-image {
    width   :      100%;
  height    :       auto;
    border-radius :12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
	
}

.thankyou-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8rem 0 6rem;
  text-align: center;
    color: white;
}

.thankyou-container {
  max-width: 600px;
    margin: 0 auto;
  padding: 0 2rem;
}

.success-icon {
  margin-bottom: 2rem;
}

.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;
    position: relative;
}

.checkmark {
 width: 30px;
 height: 15px;
    border-left    : 4px solid white;
  border-bottom: 4px solid white;
  transform: rotate(-45deg);
}

.thankyou-title {
  font-size: 3rem;
   font-weight: 700;
  margin-bottom: 1rem;
}

.thankyou-subtitle {
   font-size: 1.2rem;
  opacity: 0.9;
        line-height: 1.6;


}

.confirmation-details {
     background: #f8f9fa;
   padding: 6rem 0;}

.confirmation-card {
  background    :    white;
    padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 0 auto;
}

.confirmation-title {
  font-size: 2rem;
    font-weight: 700;
   text-align: center;
	 margin-bottom: 3rem;
  color :        #2c3e50;
}

.steps-timeline {

	    display: grid;
    gap: 2rem;

}

.timeline-step {
    display: grid;
  grid-template-columns: auto 1fr;
   gap: 1.5rem;
               align-items: flex-start;
}

.step-marker {
    width: 40px;
   height: 40px;
   border-radius: 50%;
  display     :  flex;
   align-items: center;
    justify-content: center;
    font-weight: 600;
  color: white;
	 background: #dee2e6;
	flex-shrink: 0;
}

.step-marker.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.step-title {
   font-size: 1.2rem;

	  font-weight: 600;

	    margin-bottom: 0.5rem;

	   color: #2c3e50;
}

.step-description {
    color: #6c757d;
    line-height: 1.6;
  margin-bottom: 0.5rem;
}

.step-status {
   font-size: 0.9rem;
   font-weight    :  500;
   color: #28a745;
}

.step-timing 
 {
	 color: #667eea;
   font-weight    :        500;
    font-size   :    0.9rem;
}

.expectation-section {
    padding: 6rem 0;
  background: white;
}

.expectations-grid {
  display  :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
 margin-top     :       3rem;
}

.expectation-item	{
    text-align: center;
  padding: 2rem;
}

.expectation-title {
   font-size :  1.3rem;
   font-weight: 600;
    margin-bottom: 1rem;
          color :     #2c3e50;
}

.expectation-text {
   color: #6c757d;
   line-height: 1.6;
}

.contact-info-section {
   padding:6rem 0;
  background   :  #f8f9fa;
}

.contact-info-card {
       background   :      white;
   padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      text-align: center;
   max-width: 600px;
  margin: 0 auto;
}

.contact-info-title   {
	font-size: 2rem;
   font-weight:        700;
   margin-bottom: 1rem;
                    color: #2c3e50;
}

.contact-info-text 
 {
  line-height: 1.6;
    color: #6c757d;
          margin-bottom: 2rem;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.contact-detail-title {
  font-size: 1.1rem;
          font-weight: 600;
    margin-bottom: 0.5rem;
  color: #495057;
}

.contact-detail-text {
  color: #6c757d;
   line-height: 1.6;


}

.additional-resources {
   padding: 6rem 0;
  background: white;
}

.resources-content {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
  margin-top: 3rem;
}

.resource-item {
   padding  :2rem;

   background: #f8f9fa;

   border-radius: 12px;
}

.resource-title {
      font-size: 1.3rem;
	 font-weight: 600;
         margin-bottom: 1rem;
	 color: #2c3e50;


}

.resource-text
	{
  color: #6c757d;
   line-height: 1.6;
}

.return-navigation {
    padding: 6rem 0;
    background: #f8f9fa;
}

.navigation-card {
   text-align: center;
   max-width: 600px;
	 margin: 0 auto;
}


.navigation-title {
    font-size: 2rem;
   font-weight: 700;
   margin-bottom  :       1rem;
  color   :      #2c3e50;
}

.navigation-text {
   color    :    #6c757d;
  line-height: 1.6;
    margin-bottom: 2rem;


}

.navigation-buttons {
    display: flex; 
    gap: 1rem; 
    justify-content: center; 
   flex-wrap: wrap;
}

.nav-button

{
  padding: 0.875rem 2rem;
    text-decoration: none;
   border-radius: 6px;
    font-weight     :     600;
   transition: all 0.3s ease;
  display: inline-block;
}

.nav-button.primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;


}

.nav-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);

}



.nav-button.secondary {
         border: 2px solid #667eea;
  color: #667eea;
}

.nav-button.secondary:hover {
    background: #667eea;
    color: white;
}@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .story-content,
    .team-content,
    .values-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .method-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .timeline-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .thankyou-title {
        font-size: 2.2rem;
    }
    
    .confirmation-card {
        padding: 2rem;
    }
    
    .navigation-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .thankyou-title {
        font-size: 1.8rem;
    }
    
    .confirmation-card,
    .contact-info-card {
        padding: 1.5rem;
    }
}