* {
  margin :     0;
   padding:0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
      line-height: 1.6;
    color: #333;
    background: #fafafa;

}


.container {
   max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
}

.main-nav	{
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
   width: 100%;
  z-index: 1000;
               border-bottom: 1px solid #e5e5e5;
	transition: all 0.3s ease;
}

.nav-container {
	 max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
   display: flex;
  justify-content: space-between;
   align-items: center;
    height: 70px;
}

.brand-section .logo-img {
   height  :      45px;
  width: auto;
	}

.navigation-menu ul {
   display: flex;
    list-style: none;
   gap: 2rem;
}

.nav-links a {
   text-decoration: none;
    color: #333;
    font-weight: 500;
 transition: color 0.3s;
}

.nav-links a:hover {
  color  :     #2563eb;
}

.mobile-burger    {
   display: none;
    flex-direction: column;
   cursor: pointer;
   gap: 4px;
	}

.burger-line  {
    width: 25px;

   height: 3px;

  background-color: #333;

   transition: all 0.3s ease;
}

.mobile-burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-burger.active .burger-line:nth-child(2)  {
   opacity: 0;
}



.mobile-burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}@media (max-width: 768px) {
    .mobile-burger {
        display: flex;
    }
    
    .navigation-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        transition: left 0.3s ease;
    }
    
    .nav-links {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .nav-links.mobile-active {
        left: 0;
    }
    
    .navigation-menu.mobile-active {
        left: 0;
    }
}main


{
        margin-top: 70px; 
	
}

.hero-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 80px 0;
   min-height: 70vh;
   display: flex;
   align-items: center;


}

.hero-content {
	   max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;}

.hero-text h1 {
	font-size: 3.2rem;
      font-weight: bold;
   margin-bottom: 1.5rem;
	 line-height: 1.2;
}

.hero-subtitle {
	  font-size: 1.3rem;
   margin-bottom: 2rem;
	opacity: 0.9;
	}

.hero-actions {
  display: flex;
  gap: 1rem;
   flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
   padding    :  15px 30px;
    border-radius     :        8px;
   text-decoration: none;
   font-weight: 600;
    transition: all 0.3s ease;
   display: inline-block;
}

.primary-btn {
    background     :       #ff6b6b;
   color: white;
         border: 2px solid #ff6b6b;
}

.primary-btn:hover {
   background: #ee5a5a;
  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:    15px;
	  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
}.services-overview {
  padding: 100px 0;
    background:white;
}



.services-overview h2 {
    text-align: center;
  font-size: 2.8rem;
    margin-bottom: 3rem;
	color: #2d3748; 
	
}

.services-grid 
 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;


}

.service-card  
  {

    border :  1px solid #e2e8f0;
  text-align: center;
        background: #f8fafc;
   padding: 2rem;
    border-radius: 12px;
   transition: transform 0.3s ease;

}

.service-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-img {
        width: 100%;
   height: 200px;
  object-fit: cover;
    border-radius :     8px;
       margin-bottom: 1.5rem;
}

.service-card h3  
  {
   font-size: 1.5rem;
    margin-bottom   :       1rem;
  color: #2d3748;
}

.service-card p


{
   color: #4a5568;
    line-height: 1.7;
}

.methodology-section {
    padding: 100px 0;
    background: #f7fafc;
}

.methodology-content {
  display: grid;
	grid-template-columns     :     1fr 1fr;
    gap  :      60px;
  align-items: center;
}

.methodology-text h2     {
  font-size: 2.5rem;
    margin-bottom: 1.5rem;
   color :    #2d3748;
}

.methodology-text > p {


    font-size: 1.2rem;
   color: #4a5568;
      margin-bottom: 2rem;

}

.methodology-features


{
   display     :        flex;
    flex-direction: column;
   gap: 1.5rem;
}

.feature-item h4 {
	  font-size: 1.3rem;

    color     :     #2563eb;

  margin-bottom  : 0.5rem;


}  

.feature-item p
	{
    color: #4a5568;
	
}

.methodology-img {
   width: 100%;
    height: auto;
	border-radius: 12px;
}@media (max-width: 768px) {
    .methodology-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}.cta-section {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	 color: white;
    padding: 80px 0;
   text-align: center; 
	
}

.cta-content h2 {
   font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
   font-size: 1.3rem;
  margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: white;
  -webkit-border-radius: 50px;
   color: #4facfe;
  -moz-transition  : all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  padding: 18px 40px;
    -moz-border-radius: 50px;
     border-radius: 50px;
	text-decoration: none;
   font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-section {
    padding: 100px 0;
  background: white;


}

.contact-wrapper {
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
}


.contact-info h2 {
	font-size    :      2.5rem;
    margin-bottom: 1.5rem;
   color:       #2d3748;
}  

.contact-info > p {
                    font-size: 1.2rem;
  color: #4a5568;
   margin-bottom: 2rem;
}

.contact-details    {
  display: flex;
    flex-direction: column;
   gap: 1.5rem;
}

.contact-item strong {
                    color: #2563eb;
   display: block;
   margin-bottom: 0.5rem;
}

.inquiry-form {
  -moz-border-radius: 12px;
   background :        #f8fafc;
   -webkit-border-radius: 12px;
   padding: 2.5rem;
   border-radius: 12px;
	border: 1px solid #e2e8f0;
}

.form-group {
	    margin-bottom: 1.5rem;
	}

.form-group label {
    display :block;
  margin-bottom: 0.5rem;
  font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding:       12px 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
   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   :    #2563eb;

}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color    :      #e53e3e;
}

.submit-btn     {
 color: white;
     border-radius: 8px;
  background: #2563eb;
  border    :     none;
  transition: all 0.3s ease;
   padding: 15px 30px;
	 width: 100%;
  font-weight: 600;
   cursor: pointer;
    font-size     :        1.1rem;
}

.submit-btn:hover {
    background: #1d4ed8;
  transform: translateY(-1px);
}@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}.site-footer {
    background: #1a202c;
    color: white;
   padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
	 display: grid;
   grid-template-columns: auto 1fr;
  gap: 60px;
    align-items: start;
}


.footer-logo {
  height: 50px;
 width: auto;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #63b3ed;
  font-size: 1.2rem;
}

.footer-section p {
   color :  #a0aec0;
   line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {

	  color    : #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;

}

.footer-links a:hover {
        color :     #63b3ed;
}

.footer-bottom {
  border-top: 1px solid #2d3748;
         margin-top: 40px;
	padding-top: 20px;
    text-align    :   center;
    max-width: 1200px;
   margin-left: auto;
	margin-right: auto;
    padding-left  :20px;
   padding-right: 20px;
}

.footer-bottom p {
  color: #718096;
    font-size: 0.9rem;


}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}.main-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-overview h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	  color: white; 
	    padding: 120px 0 80px; 
	  text-align: center;
}

.about-hero-content h1 {
   font-size: 3rem;
	 font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-subtitle {
   font-size: 1.3rem;
   opacity: 0.9;
  max-width: 800px;
   margin  :   0 auto;
}

.company-story {
   padding: 100px 0;
    background: white;
}

.story-grid {
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items: center;
}

.story-content h2 {
	    font-size: 2.5rem;
   color: #2d3748;
  margin-bottom: 2rem;
	


}

.story-content p {
    font-size: 1.1rem;
   color    :#4a5568;
    line-height: 1.8;
   margin-bottom   :     1.5rem;
	
}

.story-image {
  width: 100%;
	height:      auto;
      border-radius    :        12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);


}@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
}.expertise-section {
   padding :  100px 0;

		background: #f7fafc;
}

.expertise-section h2 {
  margin-bottom: 3rem;
  text-align: center;
  font-size: 2.8rem;
   color: #2d3748;
}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.expertise-item {
  background: white;
    padding: 2rem;
  border-radius: 12px;
  text-align: center;
   border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.expertise-item:hover		{

  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);

}

.expertise-img{
  width: 100%;
   height: 180px;
               object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.expertise-item h3 {
 font-size: 1.4rem;
    color  :  #2d3748;
    margin-bottom: 1rem;
}

.expertise-item p {
   color: #4a5568;
   line-height: 1.7;
}

.approach-methodology {
    padding: 100px 0;
                    background: white;
}

.approach-content {
 display: grid;
    grid-template-columns: 1fr 1fr;
  gap  :60px;
 align-items  :       flex-start;
}

.approach-text h2 {
   font-size: 2.5rem;
    color: #2d3748;
	margin-bottom: 2rem;}

.approach-steps {
    display: flex;
  flex-direction: column;
    gap: 2rem;
}

.step-item {
   display: flex;
   gap: 1.5rem;
  align-items: flex-start;
	
}

.step-number {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
   width: 50px;
  height: 50px;
   border-radius: 50%;
    display: flex;
  align-items: center;
  justify-content: center;
   font-weight: bold;
  font-size: 1.1rem;
               flex-shrink: 0;
}  

.step-content h4 {

    font-size: 1.3rem; 
	  margin-bottom: 0.5rem; 
	    color: #2563eb;

}

.step-content p {
  color: #4a5568;
 line-height: 1.7;
}

.approach-img {
   height: auto;
	 width  :   100%;
  border-radius: 12px;
}@media (max-width: 768px) {
    .approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-item {
        gap: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}.values-section {


    background: #f7fafc;
  padding: 100px 0;
	}

.values-section h2 {
   text-align: center;
   font-size: 2.8rem;
	margin-bottom: 3rem;
  color: #2d3748;
}

.values-grid {
   display    : grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
               gap: 30px;
}

.value-card {
   background: white;
   	padding: 2rem;
      border-radius: 12px;
     text-align: center;
     border-left: 4px solid #2563eb;
        transition: transform 0.3s ease;}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-card h3 {
   font-size: 1.4rem;
   color: #2d3748;
    margin-bottom: 1rem;
}

.value-card p{
    color: #4a5568;
  line-height: 1.7;
}

.results-section {
       padding: 100px 0;
  background :      white;}

.results-section h2 {
    text-align: center;
    font-size: 2.8rem;
   margin-bottom: 3rem;
  color: #2d3748;
}

.results-stats {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {


    padding: 1.5rem;

}

.stat-number  {
	font-size: 3rem; 
	   font-weight: bold; 
	   color: #2563eb; 
	  margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color  :    #4a5568;
    font-weight: 500;
}

.thankyou-hero {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color     : white;
    padding: 120px 0 80px;
    text-align: center;
}

.thankyou-content {
          max-width: 600px;
  margin     :  0 auto;
}

.thankyou-icon {
    margin-bottom: 2rem;
}

.success-checkmark {
   width: 80px;
    height :       80px;
  margin  :    0 auto;
  background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
  display: flex;
  align-items: center;
	 justify-content: center;
}

.success-checkmark svg {
    width: 40px;
  height: 40px;
    color: white;
}

.thankyou-content h1 {
 font-size: 2.8rem;
   font-weight: bold;
  margin-bottom: 1.5rem;
}

.thankyou-subtitle {
    font-size: 1.3rem; 
    opacity: 0.9; 
 line-height: 1.6;
}

.next-steps {
  padding  :    100px 0;
  background: white;
}

.next-steps h2 {
  text-align: center;
     font-size: 2.5rem;
  margin-bottom: 3rem;
    color: #2d3748;
}

.steps-timeline {
	max-width: 800px;
   margin  :      0 auto;
    display    :   flex;
  flex-direction: column;
    gap: 2.5rem;
}

.timeline-item {
   display: flex;
   gap: 2rem;
   align-items: flex-start;
}

.timeline-icon {
    background: #10b981;
    color: white;
               width: 60px;
   height: 60px;
      border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
  font-weight: bold;
	 font-size: 1.2rem;
   flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.4rem;
   color: #2d3748;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #4a5568;
   line-height: 1.7;
}@media (max-width: 768px) {
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .timeline-item {
        gap: 1rem;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}.additional-resources {
  padding: 100px 0;
  background: #f7fafc;
}

.additional-resources h2 {
    text-align: center;
   font-size     : 2.5rem;
   margin-bottom: 3rem;
  color: #2d3748;
}

.resources-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
 gap: 40px;
}

.resource-card {
    border-radius: 12px;
    border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
   overflow    :      hidden;
    background :   white;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.resource-img {
  width: 100%;
    height: 200px;
          object-fit: cover; 

}

.resource-card h3 {
 font-size: 1.4rem;
	color: #2d3748;
   margin: 1.5rem 1.5rem 1rem;

}

.resource-card p {
  color: #4a5568;
   line-height: 1.7;
 margin: 0 1.5rem 1.5rem; 

}

.resource-link {
       display: inline-block;
  margin: 0 1.5rem 1.5rem;
  color: #2563eb;
    text-decoration: none;
    font-weight: 600;
   transition: color 0.3s ease;
}

.resource-link:hover {
    color: #1d4ed8;
}

.contact-reminder {
   padding: 80px 0;
    background :     white;
	 text-align  :  center;
}

.reminder-content h2  
  {
    font-size: 2.2rem;
   color: #2d3748;
    margin-bottom: 1rem;
}

.reminder-content > p {
   font-size: 1.2rem;
   color: #4a5568;
  margin-bottom     : 2rem;
}

.contact-options {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-option {
    text-align: center;
}

.contact-option strong {
  margin-bottom: 0.5rem;
    display   :      block;
  color: #2563eb;
   font-size: 1.1rem;
}

.contact-option p {
       color: #4a5568;
	line-height: 1.6;
}

.methodology-text h3 {
   font-size: 1.8rem;
   color  :  #2d3748;
  margin-bottom: 1rem;
}

.methodology-text ul {


    list-style: disc;
        padding-left: 20px;
   margin-bottom: 1.5rem;
	}

.methodology-text ul li
{
   color: #4a5568;
  margin-bottom: 0.5rem;
}