* {
	margin: 0;
  padding: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
    background-color: #fff;
}

.container {
       max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;


}

.nav-container {
         background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   position: fixed;
    top: 0;
   width: 100%;
   z-index    :     1000;
}

.nav-wrapper  
  {
	 max-width: 1200px;
	margin: 0 auto;
  display: flex;
    justify-content :space-between;
  align-items  :  center;
   padding: 15px 20px;
}

.logo-section .nav-logo {

	    height: 45px;
       width: auto;
     }

.nav-menu {
     display: flex;
  list-style: none;
    gap: 40px;


}

.nav-menu a {
   text-decoration: none;
   color: #333;
    font-weight   :500;
  transition: color 0.3s ease;
    font-size:        16px;
}

.nav-menu a:hover {
  color: #4a90e2;
}

.burger-menu {
    display: none;

	 flex-direction: column;

   cursor: pointer;

        gap: 4px;
	
}

.burger-menu span {
  width: 25px;

  height     :   3px;

   background: #333;

    transition: 0.3s;
}

.hero-section {
  margin-top: 80px;
  padding    :    80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   display: flex;
	 align-items: center;
  min-height: 70vh;
}

.hero-content {


  flex: 1;
   max-width: 600px;
     }

.hero-content h1 {
    font-size  : 3.2rem;
  font-weight: 700;
  margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.3rem;
  margin-bottom: 40px;
    opacity: 0.9;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
    gap: 20px;
               flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
   padding: 15px 30px;
    text-decoration: none;
	 border-radius :        8px;
  font-weight   :   600;
	transition :    all 0.3s ease;
    display: inline-block;
}

.cta-primary  {

	   background: #ff6b6b;
		 color  :     white;
	}

.cta-primary:hover {
   background: #ff5252;
     transform: translateY(-2px);
}

.cta-secondary {
   background: transparent;
   color: white;
   border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
  color: #667eea;
}

.hero-image {

	    flex: 1;
  text-align: center;}

.hero-image img {
  max-width: 100%;
    height    :   auto;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.introduction-block {
  padding: 100px 20px;
    background     :   #f8f9fa;
}

.introduction-block h2 {
    color: #2c3e50; 
    margin-bottom: 60px; 
	 text-align: center; 
   font-size: 2.5rem;
}

.intro-grid {
  display: grid;
	grid-template-columns: 2fr 1fr;
    gap:60px;
   align-items: center;
}

.intro-text p {
      line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  font-size: 1.1rem;
     }

.intro-stats {
     display: flex;
    flex-direction: column;
   gap: 30px;
}

.stat-item {
               text-align: center;
  padding: 20px;
  background :     white;
    border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
       display: block;
    font-size: 2.5rem;
  font-weight: 700;
   color: #4a90e2;
    margin-bottom: 8px;
}

.stat-label{
	 color: #666; 
	  font-weight: 500;
}

.services-section {
   padding: 100px 20px;
}

.services-section h2 {
   font-size: 2.5rem;
   text-align: center;
    margin-bottom     :     60px;
  color: #2c3e50;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.service-card {
    background: white;
   border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px); 

}

.service-card img {
   width: 100%;
   height: 200px;
   object-fit :     cover;
  border-radius:       8px;
    margin-bottom: 20px;
}

.service-card h3 
 {
               font-size: 1.5rem;
  margin-bottom: 15px;
  color:       #2c3e50;
}

.service-card p {
   color: #666;
  margin-bottom    :    20px;
  line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
  padding: 5px 0;
  color: #555;
   position    :       relative;
  padding-left: 20px;
}

.service-card li:before {
  content: "✓";
    position: absolute;
 left: 0;
   color: #4a90e2;
    font-weight: bold; 
	
}

.cta-section
	{
    padding:      80px 20px;
  background: linear-gradient(45deg, #2c3e50, #34495e);
   color: white;
    text-align: center;
}

.cta-content h2 {
	 font-size: 2.3rem;
	margin-bottom  :    20px;


}

.cta-content p     {
    margin-right: auto;
  margin-left: auto;
   margin-bottom: 40px;
   max-width: 800px;
   font-size     :  1.2rem;
    opacity: 0.9;
}

.cta-button {
     display: inline-block;
     -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
   padding: 18px 40px;
  background: #ff6b6b;
   -webkit-border-radius: 8px;
   color: white;
   text-decoration: none;
   -moz-border-radius: 8px;
       border-radius     :      8px;
   font-weight: 600;
    font-size: 1.1rem;
  transition: all 0.3s ease;


}

.cta-button:hover {
   background: #ff5252;
     transform: translateY(-2px); 

}

.methodology-section {
   background: #f8f9fa;
    padding: 100px 20px;
}

.methodology-section h2  {
  font-size: 2.5rem;
     text-align :       center;
   margin-bottom :        60px;
   color: #2c3e50;
}

.method-steps {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step	{
   text-align: center;
	padding: 30px 20px;
}

.step-number {
       display: inline-block;
    width: 60px;
   height: 60px;
    background: #4a90e2;
    color: white;
  border-radius: 50%;
  font-size: 1.5rem;
   font-weight     :     bold;
    line-height: 60px;
  margin-bottom  :       20px;
}

.step h3  {


  font-size: 1.3rem; 
   margin-bottom: 15px; 
   color: #2c3e50;


}

.step p {
   line-height: 1.6;
	   color: #666;
}  

.contact-section {
   padding  :       100px 20px;
}  

.contact-section h2 {
  font-size: 2.5rem;
   text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.contact-wrapper {
    display: grid;
               grid-template-columns: 1fr 2fr;
   gap: 60px;
    align-items: start;
}

.contact-info h3 {
   font-size: 1.5rem;
	 margin-bottom: 30px;
   color     : #2c3e50;
}

.contact-item {
   margin-bottom: 25px;
}

.contact-item strong {
  display: block;
   margin-bottom: 8px;
    color: #4a90e2;
}

.contact-form {
  background: #f8f9fa;
   padding: 40px;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
	display: block;
    color: #333;
   font-weight: 500;
   margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
   font-size: 16px;
	width: 100%;
   padding: 12px 15px;
  border-radius: 6px;
   transition: border-color 0.3s ease;
	border: 2px solid #ddd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
    border-color: #4a90e2;
}

.submit-btn {
  background: #4a90e2;
  color: white;
    padding: 15px 30px;
   border: none;
    border-radius: 6px;
   font-size     :     16px;
   font-weight: 600;
  cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
	background: #357abd;
}

.footer {
   background:       #2c3e50;
   color: white;
   padding: 60px 20px 20px;
}

.footer-content {
    gap: 40px;
   grid-template-columns: 1fr 2fr;
    display: grid;
  margin-bottom: 40px;


}

.footer-logo img {
   height : 50px;
  width: auto; 

}

.footer-info {
  display: grid;
   gap   :     40px;
  grid-template-columns: repeat(3, 1fr);
}

.footer-section h4 {
   margin-bottom: 20px;
               color: #4a90e2;
}

.footer-section ul {

  list-style: none;

}

.footer-section li  
  {


   margin-bottom: 10px;


}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;

}

.footer-section a:hover {
    color: #4a90e2;
}

.footer-bottom {
   text-align: center;
  padding-top: 20px;
  border-top: 1px solid #34495e;
  color: #bdc3c7;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 50px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .method-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-primary, .cta-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .intro-stats {
        flex-direction: column;
    }
    
    .contact-form {
        padding: 25px;
    }
}.nav-menu a.active {
    color: #4a90e2;
    font-weight: 600;
}

.about-hero {
    margin-top: 80px;
    padding: 100px 20px;
  background: linear-gradient(120deg, #2c3e50 0%, #3498db 100%);
  color: white;
  text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight   :   700;
    margin-bottom: 25px;
  line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
    opacity: 0.9;
  line-height: 1.6;
}

.company-story 
 {
   padding: 100px 20px;
   background: #fff;
}

.story-grid {
  display: grid;
  align-items  :        center;
   grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

.story-content h2 {

   font-size:  2.5rem;
   color: #2c3e50;
    margin-bottom: 30px;


}

.story-content p {
   font-size: 1.1rem;
        color: #555;
 margin-bottom: 20px;
   line-height: 1.7;
}

.company-achievements {
   display: flex;
   gap: 30px;
		margin-top    :    40px;
}

.achievement {
   text-align: center;
    flex: 1;
}

.achievement-number {
   display: block;
   font-size: 2.2rem;
   font-weight: 700;
   color: #4a90e2;
 margin-bottom: 8px;


}

.achievement-text {
   color: #666;
   font-size: 0.9rem;
   font-weight: 500;
}

.story-image img {
     width   :  100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);

}

.team-section 
 {


    padding: 100px 20px;
    background: #f8f9fa;}

.team-section h2 {
  font-size: 2.5rem;
  text-align: center;
    color: #2c3e50;
  margin-bottom: 40px;
}

.team-intro {

		text-align: center;
    max-width:    800px;
    margin: 0 auto 60px;

}

.team-intro p {
  font-size: 1.2rem;
   color: #555;
  line-height: 1.6;
}

.expertise-areas h3 {
  font-size: 2rem;
    text-align: center;
  color: #2c3e50;
  margin-bottom: 50px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}

.expertise-card {

                    background: white;
  border-radius: 12px;
    padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;}

.expertise-card:hover {
  transform: translateY(-8px);
}

.expertise-card img {
   width: 100%;
   height: 180px;
   object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.expertise-card h4 {
  font-size: 1.3rem;
    color: #2c3e50;
  margin-bottom: 15px;
}

.expertise-card p {
        color: #666;
    line-height   :  1.6;
  font-size: 0.95rem;
}

.methodology-detailed {
    padding: 100px 20px;
   background: white;
}

.methodology-detailed h2 {
   font-size: 2.5rem;
	text-align: center;
  color: #2c3e50;
          margin-bottom  :     40px;
}

.methodology-content > p {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
    max-width: 800px;
     margin: 0 auto 60px;
       line-height: 1.6;
}


.methodology-pillars {
					display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pillar  
  {
  text-align: center;
   padding: 30px 20px;
}

.pillar h3 {
  color: #4a90e2;
          font-size: 1.5rem;
                    margin-bottom     :    20px;
}

.pillar p {
                    color: #666;
    line-height: 1.6;
}

.success-stories {
   padding: 80px 20px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  text-align: center;
}

.success-stories h2 {
  font-size: 2.5rem;
    margin-bottom: 60px;
}

.success-stats {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap  :        40px; 
	
}

.success-stat {
    padding: 30px 20px;
}

.success-stat .stat-number {
  display: block;
   font-size: 3rem;
   font-weight: 700;
    margin-bottom: 10px;
}

.success-stat .stat-description {
  font-size: 1.1rem;
  opacity: 0.9;
}

.mission-vision {
   padding: 100px 20px;
  background: #f8f9fa; 

}

.mission-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 40px;
}

.mission-card, .vision-card {

    background:      white;
	   padding: 40px;
	    border-radius: 12px;
	  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	 text-align: center;
	}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.mission-card p, .vision-card p {
   color: #666;
    line-height: 1.6;
   font-size  :  1.05rem;
}

.thankyou-hero {
    margin-top: 80px;
   padding: 120px 20px;
  background: linear-gradient(135deg, #52c234 0%, #47b649 100%);
 color: white;
  text-align: center;
}

.thankyou-content {
    max-width: 600px;
  margin: 0 auto;
}  

.success-icon {
    margin-bottom     :     30px;
}

.checkmark {
	display: inline-block;
   width: 80px;
   height: 80px;
  background: rgba(255,255,255,0.2);
   border-radius: 50%;
    font-size: 3rem;
   line-height: 80px;
    margin-bottom: 20px; 

}

.thankyou-content h1 {
  font-size: 3rem;
   font-weight: 700;
   margin-bottom: 25px;
}

.thankyou-subtitle {
                    font-size: 1.3rem;
    opacity: 0.9;
  line-height: 1.6;
}

.next-steps {
  padding: 100px 20px;

  background: #f8f9fa;
}

.next-steps h2 {
	 font-size: 2.5rem;
  text-align   :     center;
   color: #2c3e50;
   margin-bottom: 60px;
}

.steps-timeline {
   max-width: 800px;
  margin    :0 auto;
}

.timeline-step
	{
   display: flex;
   gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #4a90e2;
  color   :   white;
	border-radius: 50%;
    font-size: 1.5rem;
   font-weight: bold;
   line-height: 50px;
   text-align: center;
   flex-shrink: 0;
}

.step-content h3 {
	font-size     :     1.4rem;
   color: #2c3e50;
   margin-bottom   :       10px;
}

.step-content p {
  color: #666;
       line-height: 1.6;
  margin-bottom: 10px;
}

.time-indicator {
   display: inline-block;
    background: #e3f2fd;
  color: #1976d2;
  padding: 5px 12px;
  border-radius: 15px;
   font-size: 0.85rem;
    font-weight: 500;


}

.preparation-tips {
	 background: white;

    padding  :100px 20px;
}

.preparation-tips h2 {
    font-size: 2.5rem;
  text-align: center;
  color: #2c3e50;
    margin-bottom: 60px;
}

.tips-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.tip-card {
         background: #f8f9fa;
   padding: 30px;
    border-radius: 12px;
 border-left: 4px solid #4a90e2;
}

.tip-card h4 {


  font-size: 1.3rem;
   color: #2c3e50;
  margin-bottom: 15px;

}

.tip-card p {
    color: #666;
    line-height     :     1.6;
}

.additional-resources {
          padding: 100px 20px;
  background : #f8f9fa;
}

.additional-resources h2 {
   font-size   :      2.5rem;
   text-align: center;
   color: #2c3e50;
    margin-bottom: 40px;
}

.resources-content > p		{
	 text-align: center;
  font-size: 1.2rem;
    color: #555;
    max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.quick-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	 gap: 30px;
}

.quick-tip{
  background: white;
  padding: 25px;
   border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.quick-tip h4 {
    margin-bottom: 12px; 
      font-size: 1.2rem; 
   color: #2c3e50;
}

.quick-tip p {
	   color: #666;
    line-height: 1.6;
  font-size: 0.95rem;
	}

.return-home {
	padding: 80px 20px;
   background: white;
   text-align: center;
}

.return-content h3 {
	margin-bottom: 20px;
       font-size: 2rem;
   color  :        #2c3e50;
}

.return-content p {
                    font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.return-buttons {
   display: flex;
  gap: 20px;
  justify-content: center;
   flex-wrap: wrap;


}

.btn-primary, .btn-secondary    {
    padding: 15px 30px;
    text-decoration: none;
  border-radius     :8px;
   font-weight: 600;
    transition: all 0.3s ease;
         display: inline-block;
} 

.btn-primary {
               background: #4a90e2;
	color: white; 

}

.btn-primary:hover {
  -ms-transform: translateY(-2px);
   background: #357abd;
  -moz-transform: translateY(-2px);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
    color: #4a90e2;
    border: 2px solid #4a90e2;
}

.btn-secondary:hover 
 {
   background: #4a90e2;
  color: white; 
	
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-achievements {
        flex-direction: column;
        gap: 20px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-pillars {
        grid-template-columns: 1fr;
    }
    
    .success-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .thankyou-subtitle {
        font-size: 1.1rem;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-tips {
        grid-template-columns: 1fr;
    }
    
    .return-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .checkmark {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        line-height: 60px;
    }
}