* {
  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: #fafafa;
}

.top-navigation {

	    background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   position: sticky;
   top: 0;
  z-index: 100; 


}

.header-wrapper {
  justify-content    :space-between;
	 max-width: 1200px;
    margin: 0 auto;
        padding: 1rem 2rem;
    align-items: center;
  display: flex;
} 

.brand-container .company-logo {
   height: 45px;
   width: auto;
}

.primary-nav .nav-links {
  gap    :    2rem;
   display: flex;
  list-style: none;
}

.primary-nav .nav-links a {
    text-decoration: none;
   color: #333;
   font-weight: 500;
    transition: color 0.3s;
}

.primary-nav .nav-links a:hover {
    color: #2c5aa0;
}

.mobile-menu-toggle {
	 display: none;
    background: none;
	border: none;
  flex-direction: column;
    cursor: pointer;
}

.burger-line {
 width: 25px;
  height: 3px;
  background-color:   #333;
    margin: 3px 0;
  transition: 0.3s;
} 

.hero-banner  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
	padding: 4rem 0;
}

.hero-content  {
  max-width: 1200px;
   margin: 0 auto;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  gap: 3rem;
        padding :     0 2rem;
  display: grid;
}

.hero-text h1 {

	   font-size: 3.5rem;
   font-weight: 700;
  margin-bottom: 1.5rem;
               line-height: 1.2;
     }

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom     :        2rem;
   opacity: 0.9;
}

.hero-actions {
   display   :       flex;
  gap: 1rem;
}

.primary-cta, .secondary-cta {
   padding: 0.8rem 2rem;
	  text-decoration: none;
	    border-radius: 5px;
	   font-weight: 600;
	   transition: all 0.3s; 
	
}

.primary-cta {
   background: #ff6b6b;
    color: white;
}

.primary-cta:hover
	{
  background: #ee5a52;
  transform: translateY(-2px);
}

.secondary-cta {
  background: transparent;
   color     :   white;
  border: 2px solid white;
}

.secondary-cta:hover {
      background: white;
   color: #667eea;
}

.hero-visual .hero-image		{
   width: 100%;
    height    :  auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.expertise-showcase {
	   padding: 5rem 0;
    background   :        white; 
	
     }

.section-container {
    max-width: 1200px;
  margin: 0 auto;
    padding: 0 2rem;
}

.expertise-showcase h2 {


  text-align: center;
    font-size: 2.5rem;
	 color: #2c5aa0;
	margin-bottom: 3rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.expertise-card {
  background: #f8f9fa;
  padding: 2rem;
	border-radius: 10px;
    text-align: center;
  transition: transform 0.3s;
} 

.expertise-card:hover {
  transform: translateY(-5px);
} 

.expertise-card img {
    width: 100%;
      height: 200px;
   object-fit     :        cover;
  border-radius   :  8px;
    margin-bottom: 1.5rem;
}

.expertise-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
  font-size: 1.3rem;
}

.expertise-card p {
    color: #666;
   line-height: 1.6; 

}

.results-driven {
	 padding: 5rem 0;
   background: #f8f9fa;
}



.results-content {
  display: grid;
       grid-template-columns:      1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.results-text h2 {
   color: #2c5aa0;
   font-size: 2.3rem;
         margin-bottom: 1.5rem;
}

.results-text p {
 font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.achievement-stats {
  display: flex;
   gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number     {

	  display: block;
   font-size: 2rem;
   font-weight     : bold;
          color: #ff6b6b;

}

.stat-label {
   font-size: 0.9rem;
    color: #666;
}

.results-visual img {
   width: 100%;
  height: auto;
    border-radius     :10px;
}

.call-to-action-block {
     background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
   padding: 4rem 0;
  text-align: center;
     }

.cta-content h2 {
   margin-bottom: 1rem;
   font-size: 2.5rem;
}

.cta-content p {
   font-size: 1.2rem;
   margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {


  display: inline-block;
    background    :   #ff6b6b;
    color :    white;
    padding: 1rem 2.5rem;
       text-decoration: none;
       border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
   transition: all 0.3s; 

}

.cta-button:hover {
	background: #ee5a52;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}  

.contact-section {
    padding  :      5rem 0;
   background :    white;
}

.contact-section h2 {
   text-align: center;
    color: #2c5aa0;
	font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-wrapper {
    display: grid;
   grid-template-columns    :        1fr 2fr;
    gap: 3rem;
}

.contact-info h3 {
  color: #2c5aa0;

   font-size:  1.8rem;

  margin-bottom: 1.5rem;
}

.contact-details p		{
    margin-bottom: 0.8rem;
    color: #555;
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
   border-radius: 10px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
   display: block;
  margin-bottom: 0.5rem;
			color: #333;
   font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea	{
  border    :      1px solid #ddd;
    font-size: 1rem;
  width: 100%;
    border-radius: 5px;
    padding: 0.8rem;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
   border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
    background   :     #667eea;
   color: white;
  padding: 1rem 2rem;
      border: none;
  border-radius: 5px;
          font-size: 1.1rem;
  cursor  :pointer;
	 transition: background 0.3s;
}

.submit-btn:hover {
   background: #5a6fd8;
}

.site-footer {
   background    :#333;
   color: white;
    padding: 3rem 0 1rem;
} 

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
	padding    :   0 2rem;
  display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-brand .footer-logo {
    height: 40px;
  filter: brightness(0) invert(1);
}

.footer-info	{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
   margin-bottom: 1rem;
  color: #fff; 

}

.footer-section ul {
   list-style: none;
}

.footer-section ul li {
         margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
		 color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
      margin-top: 2rem;
    border-top: 1px solid #555;
	color :  #ccc;
}@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .primary-nav {
        display: none;
    }
    
    .primary-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .primary-nav.active .nav-links {
        flex-direction: column;
        padding: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .results-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .achievement-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .header-wrapper {
        padding: 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}.about-main {
  background :     #fff; 
	
}

.about-hero{
  background: linear-gradient(135deg, #2c5aa0 0%, #667eea 100%);
   color:        white;
  padding: 4rem 0;
	text-align: center;
}

.about-hero-content h1 {
  font-size: 3rem;
    margin-bottom: 1.5rem;
   font-weight: 700;
}


.about-intro {
         font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.company-story     {
  padding: 5rem 0;
     background :  #f8f9fa;
}

.story-layout {
   display: grid;
  grid-template-columns:    1.5fr 1fr;
   gap: 3rem;
  align-items :        center;
}

.story-text h2
{
	color: #2c5aa0;
    font-size: 2.5rem;
  margin-bottom: 2rem;
}



.story-text p {
    line-height: 1.7;

	  font-size: 1.1rem;

	  margin-bottom: 1.5rem;

	   color: #555;
}

.story-visual img	{
  width: 100%;
     height: auto;
	border-radius    : 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15); 
	
}

.mission-values

{
    padding :    5rem 0;
  background: white;
}

.mission-values h2 {
  text-align    :    center;
  color: #2c5aa0;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 2rem;
}

.value-card {

  background: #f8f9fa;
  padding: 2.5rem;
    border-radius: 10px;
   text-align: center;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease;


}

.value-card:hover {
  transform: translateY(-5px);
}  

.value-card h3 {
	color: #2c5aa0;
  font-size: 1.4rem;
    margin-bottom   :1rem;
}

.value-card p

{
    color: #666;
    line-height: 1.6;
}  

.methodology-section {
   padding    :   5rem 0;
  background: #f8f9fa;
}

.methodology-content {
  display: grid;

	  grid-template-columns  :       1fr 1.5fr;

		 gap: 3rem;

	   align-items: center;
}

.method-visual img {
    width: 100%;
         height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);


}

.method-text h2 {
	    color: #2c5aa0;
	font-size: 2.3rem;
       margin-bottom: 1.5rem;
	}

.method-text > p {
    font-size: 1.1rem;
	 color: #555;
    margin-bottom: 2rem;
  line-height: 1.7;
}

.methodology-steps {
  display: flex;
        flex-direction: column;
  gap: 1.5rem; 
	
}  

.step-item {
   padding: 1.5rem;
   background: white;
    border-radius: 8px;
    border-left: 4px solid #ff6b6b;
}

.step-item h4 {
     color: #2c5aa0;
    margin-bottom: 0.5rem;}

.step-item p     {
    color: #666;
    margin: 0;
}

.achievements-timeline {
  padding: 5rem 0;
   background: white;
}

.achievements-timeline h2 {
   text-align: center;
    color: #2c5aa0;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.timeline-container {
   max-width: 800px;
         margin: 0 auto;
    position: relative;
}

.timeline-container::before {

  content: '';
   position: absolute;
    left   :      50%;
   top:0;
   bottom: 0;
    width: 2px;
  background: #667eea;
  transform: translateX(-50%);


}

.timeline-item    {
   display: flex;
	 margin-bottom: 3rem;
  align-items: center;
}

.timeline-item:nth-child(odd) {
       flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
  background: #667eea;
   color: white;
     padding: 1rem;
  border-radius: 50%;
         font-weight: bold;
    min-width: 80px;
  text-align: center;
   position: relative;
   z-index: 2;

} 

.timeline-content {
    flex: 1;

  padding  :2rem;

  background: #f8f9fa;

  border-radius: 10px;

   margin: 0 2rem;
}

.timeline-content h3 {
         color: #2c5aa0;
    margin-bottom     :     0.5rem;
}

.timeline-content p {
    color: #666;
    margin: 0;
} 

.why-choose-us {
   padding: 5rem 0;
  background: #f8f9fa;
}

.why-choose-us h2 {
   text-align: center;
   color: #2c5aa0;
   font-size: 2.5rem;
		 margin-bottom: 3rem;
}

.reasons-layout {
   display: grid;
  grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.reason-point {

  margin-bottom: 2rem;
  padding: 1.5rem;
    -moz-border-radius: 8px;
   background    :        white;
         -webkit-border-radius   :       8px;
   border-radius: 8px;
               border-left: 4px solid #ff6b6b;
}

.reason-point h3		{
   margin-bottom: 0.5rem;
   color: #2c5aa0;
}

.reason-point p {
    color :   #666;
   margin: 0;
   line-height:    1.6;
}

.reasons-visual img {
   width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-cta {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
   padding: 4rem 0;
   text-align: center; 

}

.contact-cta h2 {
	   font-size: 2.5rem;
  margin-bottom: 1rem;

}

.contact-cta p {
  font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity  :        0.9;
}

.return-home-btn {
    display: inline-block;
    background: #ff6b6b;
	color: white;
   padding: 1rem 2.5rem;
  text-decoration: none;
    border-radius: 50px;
  font-size: 1.1rem;
   font-weight    :600;
     transition: all 0.3s;
}

.return-home-btn:hover {
  background: #ee5a52;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.thankyou-main {
               background   :#fff;
}

.thankyou-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color:    white;
    padding: 5rem 0;
    text-align: center;
}

.thankyou-container {
  max-width: 800px;
   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: 3px solid white;
  border-top: none;
  border-right :      none;
  transform: rotate(-45deg);
}

.thankyou-hero h1 {
    font-size: 3rem;
  margin-bottom     :    1.5rem;
         font-weight: 700;
}

.thankyou-message {
   font-size: 1.2rem;
    line-height     :  1.6;
   opacity:        0.9;
}

.next-steps {
  padding: 5rem 0;
    background: #f8f9fa;
}

.next-steps h2 {
   text-align: center;
  color: #2c5aa0;
    font-size: 2.5rem;
	 margin-bottom: 3rem;
}

.steps-timeline {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap   :     2rem;
    max-width: 1000px;
  margin: 0 auto; 
	
}

.step-box {
  background: white;
    padding: 2rem;
    border-radius: 10px;
  text-align: center;
   position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
   height: 50px;
   background: #667eea;
               color: white;
 border-radius: 50%;
  display: flex;
    align-items: center;
    justify-content: center;
  font-weight: bold;
    font-size    :       1.2rem;
    margin   : 0 auto 1rem;
}

.step-box h3 {
  margin-bottom: 1rem;
	  color: #2c5aa0;
}

.step-box p  {
   color: #666;
  line-height: 1.6;
}

.while-you-wait {
     padding     :      5rem 0;
   background: white;
}

.while-you-wait h2 {
  text-align: center;
  color: #2c5aa0;
   font-size: 2.5rem;
    margin-bottom: 3rem; 

}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 2rem;
}

.resource-card

{
  background: #f8f9fa;
   padding: 2rem;
	 border-radius   :    10px;
  text-align: center;


}

.resource-card img		{
  width: 100%;
    height: 200px;
   object-fit: cover;
   border-radius: 8px;
   margin-bottom     : 1.5rem;
}

.resource-card h3 {
   color: #2c5aa0;
    margin-bottom: 1rem;
}

.resource-card p {
		 color: #666;

  line-height: 1.6;
}

.company-commitment	{

  padding: 5rem 0;
    background: #f8f9fa;
}

.commitment-content {
    max-width: 1000px;

   margin: 0 auto;

  text-align: center;

    padding   :     0 2rem;
}

.commitment-content h2 {
  color: #2c5aa0;
    font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.commitment-content > p {

         font-size: 1.2rem;
  color: #555;
  margin-bottom: 3rem;
  line-height:   1.6;


}

.commitment-points {


               display    :      grid;

  grid-template-columns: repeat(3, 1fr);

   gap: 2rem;
	
}

.commitment-item {
					background: white;
  padding: 2rem;
   border-radius: 10px;
    display: flex;
  flex-direction: column;
    text-align: left;
}

.commitment-item strong {
        color: #2c5aa0;
   font-size: 1.2rem;
    margin-bottom: 0.5rem;
  display: block;
}

.commitment-item span {
    color: #666;
   line-height    :      1.6;
}

.return-navigation {
    padding: 4rem 0;
   background   :     white;
	text-align     :        center;
}

.navigation-content h2 {
    color: #2c5aa0;
  margin-bottom: 1rem;
               font-size: 2.3rem;
}

.navigation-content p {
    font-size: 1.1rem;
  color: #555;
          margin-bottom: 2rem;
}

.nav-buttons {
   display  :   flex;
  gap: 1rem;
  justify-content: center;
}

.nav-btn	{
   padding: 1rem 2rem;
   text-decoration: none;
   border-radius: 5px;
  font-weight: 600;
    transition: all 0.3s;
	
}

.nav-btn.primary {
    background: #667eea;
    color: white;
}

.nav-btn.primary:hover {
      background: #5a6fd8;
  transform: translateY(-2px);

}

.nav-btn.secondary {
    background: transparent;
   color: #667eea;
    border: 2px solid #667eea;
}

.nav-btn.secondary:hover {
  background: #667eea;
  color: white;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-layout,
    .methodology-content,
    .reasons-layout {
        grid-template-columns: 1fr;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        min-width: 60px;
    }
    
    .timeline-content {
        margin: 0;
        margin-left: 2rem;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-points {
        grid-template-columns: 1fr;
    }
    
    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .thankyou-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-hero h1 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}