* {
  margin: 0;
   padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
               line-height: 1.6;
  color: #333;
    background-color: #fff;
}

.main-header {
    position: fixed;
    top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    z-index: 1000;
   border-bottom: 1px solid #eee;
	 transition: all 0.3s ease;
}



.main-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navigation-wrapper {
  padding: 0 20px;
    max-width     :   1200px;
          margin: 0 auto;
}

.nav-container {

  display: flex;
  justify-content: space-between;
  align-items: center;
    height: 70px;
     }

.company-logo {
       height: 45px;
  width: auto;
}

.nav-links-desktop {
   display: flex;
    gap     :30px;
}

.nav-item {
  text-decoration: none;
    color: #333;
  font-weight: 500;
   transition: color 0.3s ease;
  position: relative;
}

.nav-item:hover, .nav-item.active {
   color  :        #2c5aa0;
}

.nav-item.active::after   {
  content: '';
  position: absolute;
    bottom: -8px;
   left: 0;
    width: 100%;
	height: 2px;
  background: #2c5aa0;
}

.burger-menu {
   display: none;
   flex-direction: column;
    cursor: pointer;
  gap     : 4px;
}

.burger-line {
  width: 25px;
   height: 3px;
  background: #333;
               transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {


  transform: rotate(45deg) translate(6px, 6px);
     }


.burger-menu.active .burger-line:nth-child(2) {
   opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  display: none;
    position: absolute;
  top: 100%;
    left: 0;
   width: 100%;
	 background: white;
    border-top: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.mobile-menu.show {
	display: block;
}

.mobile-nav-link {
	display   : block;
     padding: 15px 20px;
     text-decoration: none;
      color: #333;
      border-bottom: 1px solid #f5f5f5;
    transition: background 0.3s ease;
}

.mobile-nav-link:hover {
         background: #f8f9fa;
    color: #2c5aa0; 
	
}

main {
   margin-top: 70px;
}

.hero-banner {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
   min-height: 600px;
  display: flex;
	align-items: center;
}

.hero-content-wrapper {
               max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
    align-items: center;
}

.hero-text-block h1
{
    font-size: 3.2rem;
  font-weight: 700;
    color: #2c5aa0;
  margin-bottom: 24px;
   line-height :      1.2;
}

.hero-description {
	font-size: 1.2rem;

		color: #666;

	    margin-bottom: 32px;

	  line-height: 1.7;
}

.hero-buttons {
   display: flex;
    gap    :    20px;
      flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
  padding  :        14px 28px;
   text-decoration :       none;
   border-radius: 8px;
   font-weight: 600;
  transition: all 0.3s ease;
   display: inline-block;
}

.primary-btn {
 background: #2c5aa0;
   color: white;
}

.primary-btn:hover {
   background :     #1e3f73;
  transform: translateY(-2px);
}

.secondary-btn {
   border: 2px solid #2c5aa0;
  color: #2c5aa0;
   background: transparent;
}

.secondary-btn:hover {
   background: #2c5aa0;
  color: white; 

}

.hero-main-image {
   width: 100%;
   height: 400px;
    object-fit: cover;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.services-overview {
   padding: 100px 0;
    background: #fff;
}

.container-wrapper {
    max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
}  

.section-header-block {
  text-align: center;
   margin-bottom: 60px;
}

.section-header-block h2 {
    font-size: 2.5rem;
   color    : #2c5aa0;
        margin-bottom  :        16px;
}

.section-header-block p {
  font-size: 1.1rem;
  color: #666;
	max-width: 600px;
               margin: 0 auto;
}

.services-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card-item{
    background: white;
   border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}  

.service-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-image-wrapper {
	 overflow: hidden;
	height: 200px;
}



.service-img {
	 width: 100%;
    height: 100%;
   object-fit: cover;
	 transition: transform 0.3s ease;
}

.service-card-item:hover .service-img {
  transform: scale(1.05);
}

.service-card-item h3 {
   font-size: 1.4rem;
  color  :  #333;
	margin: 20px 24px 12px;}

.service-card-item p {
  color: #666;
    line-height: 1.6;
   margin: 0 24px 24px;
}

.cta-section-block {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
   padding: 80px 0;
  color: white;
}

.cta-container {


    max-width: 1200px; 
	   margin: 0 auto; 
	   padding: 0 20px; 
	  display: grid; 
	  grid-template-columns: 1fr 1fr; 
	  gap: 50px; 
	   align-items: center;

}

.cta-content-wrapper h2 {
    font-size: 2.2rem;
   margin-bottom: 20px;


} 

.cta-content-wrapper p {
    font-size: 1.1rem;
   line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta-button-primary {
  background: white;
  color: #2c5aa0;
  padding   :      16px 32px;
    border-radius: 8px;
	text-decoration: none;
          font-weight: 600;
    display: inline-block;
  transition: all 0.3s ease;
}

.cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-visual {
    width: 100%;
  height: 300px;
          object-fit: cover;
         border-radius: 12px;
}

.contact-form-section {


	 padding  :100px 0;
  background: #f8f9fa;


}

.contact-wrapper {
   display:     grid;
	    max-width: 1200px;
	        grid-template-columns: 1fr 1.2fr;
	    gap  :        60px;
	    padding: 0 20px;
	   margin: 0 auto;
}

.contact-info-block h2 {
    color: #2c5aa0;
	   margin-bottom: 20px;
	   font-size: 2.2rem;
}

.contact-info-block p {
  color: #666;
  line-height: 1.7;
    margin-bottom   :40px;
}

.company-contact-details {
	gap: 24px;
   display: flex;
    flex-direction   :        column;
}

.contact-item strong {
    color :       #333;
  display: block;
	margin-bottom: 8px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form-container  {
       background: white;
    padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-row-wrapper {
  display: grid;
     grid-template-columns   :     1fr 1fr;
   gap   : 20px;
  margin-bottom     :  20px;
}

.input-field-group {
   display: flex;
  flex-direction: column;
} 

.input-field-group label  {
     color: #333;
	 margin-bottom: 8px;
  font-weight     :   600;
}

.input-field-group input,
.input-field-group select,
.input-field-group textarea {
  padding     :   12px 16px;
   border: 2px solid #ddd;
	border-radius: 8px;
    font-size: 1rem;
  transition: border-color 0.3s ease;
}

.input-field-group input:focus,
.input-field-group select:focus,
.input-field-group textarea:focus {

	  outline     :   none; 
	  border-color: #2c5aa0;}

.form-submit-btn {
  background: #2c5aa0;
 color: white;
	padding  :   16px 32px;
    border: none;
   border-radius    :   8px;
   font-size: 1.1rem;
   font-weight: 600;
    cursor: pointer;
   width: 100%;
  margin-top: 20px;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
	  background   :        #1e3f73;
  transform: translateY(-2px);

}



.site-footer {
  background   :    #1a1a1a;
    color: white;
   padding: 60px 0 20px;
}

.footer-content-wrapper {
  max-width: 1200px;
		margin: 0 auto;
	  padding: 0 20px;
	  display    :grid;
	    grid-template-columns: 1.5fr 1fr 1fr;
	        gap: 40px;
}

.footer-logo {
	height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.company-description {

	   color: #ccc;
     line-height: 1.6;

}

.footer-column h4 {
    margin-bottom: 16px;
   font-size: 1.1rem;
    color: #fff;
}

.footer-column a

{
    display: block;
 margin-bottom: 8px;
	 transition: color 0.3s ease;
	color     :       #ccc;
	 text-decoration: none;
}

.footer-column a:hover {
  color: #2c5aa0;
}

.footer-contact-info h4 {
   margin-bottom: 16px;
}

.footer-contact-info p  
  {

	 color  : #ccc;
    margin-bottom: 8px;}

.footer-bottom {
   border-top: 1px solid #333;
  margin-top: 40px;
 padding-top:   20px;
   text-align: center;
}

.footer-bottom p {
   color: #999;
}@media (max-width: 768px) {
    .nav-links-desktop {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text-block h1 {
        font-size: 2.4rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-text-block h1 {
        font-size: 2rem;
    }
    
    .section-header-block h2 {
        font-size: 2rem;
    }
    
    .services-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .service-card-item {
        margin: 0 10px;
    }
}.about-hero-section {


  padding:       100px 0 80px;
  background: linear-gradient(135deg, #f1f3f6 0%, #e8ebf0 100%);
}

.about-hero-container {
   max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
  display: grid;
   grid-template-columns: 1.2fr 1fr;
  gap: 50px;
    align-items    :center;

}

.about-hero-text h1 {
       font-size: 2.8rem;
     color: #2c5aa0;
  margin-bottom: 24px;
       line-height: 1.2;
}

.about-hero-description {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7; 

}

.about-hero-img {
    width: 100%;
        height: 350px;
 object-fit: cover;
   border-radius: 15px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.company-story-block {


    padding: 90px 0;
    background: #fff;

}

.story-content-wrapper {
    max-width: 1200px;
   margin: 0 auto;
    padding     :        0 20px;
	display: grid;
	 grid-template-columns: 1.3fr 1fr;
   gap: 60px;
  align-items: start;
}

.story-text-section h2 {

	    font-size     :2.3rem;
  color    :     #2c5aa0;
  margin-bottom: 30px;
	}

.story-text-section p {
   color: #555;
    line-height:        1.7;
  margin-bottom: 20px;
   font-size: 1.05rem; 

}

.story-visual {
   width     :   100%;
    height: 280px;
    object-fit: cover;
   border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.mission-values-area {
    padding: 80px 0;
  background: #f8f9fa;
}


.mission-container {
    max-width: 1200px;
   margin: 0 auto;
        padding: 0 20px;
}

.mission-grid-layout {
	    display    :     grid;
  grid-template-columns: 1fr 1fr;
    gap    : 40px;}

.mission-card, .values-card {
   background: white;
    padding: 40px 35px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.mission-card h3, .values-card h3 {
	  color: #2c5aa0;
	font-size:  1.6rem;
   margin-bottom :  20px;
	}

.mission-card p     {
   color   :    #666;
   line-height: 1.6;
   font-size: 1.05rem;
}

.values-list {


   list-style: none;
   padding: 0;

}

.values-list li {
  color: #666;

		 padding: 8px 0;

	  position: relative;

	   padding-left: 25px;

	    line-height: 1.5;
}

.values-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.expertise-showcase {
    padding: 90px 0;
  background: white;
}

.expertise-wrapper {
	max-width    :     1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.expertise-header {
   text-align :       center;
  margin-bottom: 60px;
}

.expertise-header h2 {
   font-size: 2.4rem;
  color: #2c5aa0;
   margin-bottom: 16px;
     }

.expertise-header p {
   color: #666;
        font-size: 1.1rem;
                    max-width: 650px;
    margin: 0 auto;
}

.expertise-grid {
	 display: flex;
  flex-direction: column;
    gap: 60px;
}

.expertise-item {
    display: grid; 
	    grid-template-columns: 1fr 1fr; 
	   gap: 50px; 
	   align-items: center;
}



.expertise-item.reverse-layout {
  grid-template-columns: 1fr 1fr;


}

.expertise-visual-wrapper {
     height: 280px;
      overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.expertise-img		{
    width: 100%;
               height: 100%;
	object-fit: cover;
    transition: transform 0.3s ease;}

.expertise-item:hover .expertise-img    {
  transform: scale(1.05);
}

.expertise-content h3 {
  font-size: 1.7rem;
    color: #333;
	 margin-bottom: 18px;
} 

.expertise-content p{
   color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.achievements-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
   color: white;


}

.achievements-container {
    max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
    text-align: center; 
	
}

.achievements-container h2		{
  font-size: 2.2rem; 
  margin-bottom: 50px;
}

.stats-grid {
   display: grid;
  grid-template-columns: repeat(4, 1fr);
 gap: 40px;
} 

.stat-item {

	  text-align   :   center;


}

.stat-number {
               font-size: 3rem; 
   font-weight  :        700; 
  margin-bottom: 10px; 
   color: #fff;
}

.stat-label {
	 font-size     : 1rem;
    opacity: 0.9;
}

.approach-methodology {
   padding    :   90px 0;
    background: #f8f9fa;
}

.approach-wrapper {
  max-width: 1200px;
    margin: 0 auto;
	padding: 0 20px;
   display: grid;
    grid-template-columns: 1.2fr 1fr;
   gap: 60px;
	 align-items: start;
}

.approach-text-block h2 {
	font-size: 2.3rem;
   color : #2c5aa0;
   margin-bottom: 25px;
}

.approach-text-block > p {
			color    :     #666;
  line-height   :        1.7;
    margin-bottom: 35px;
  font-size: 1.05rem;
}

.approach-features {
    display: flex;
   flex-direction: column;
   gap: 25px;
}

.feature-point h4 {

  color: #333;
	font-size: 1.2rem;
  margin-bottom: 8px;

}

.feature-point p {
  color  : #666;
   line-height: 1.6;
	
}

.approach-visual {
   width: 100%;
     height: 320px;
     object-fit: cover;
      border-radius: 12px;
     box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

.thankyou-hero-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
    min-height: 80vh;
}

.thankyou-container {
  max-width: 1200px;
  margin :   0 auto;
    padding: 0 20px;
    display:      grid;
    grid-template-columns: 1.3fr 1fr;
  gap: 60px;
	align-items: start;
}

.thankyou-content-wrapper  {
  background: white;
   padding  : 50px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.success-icon-area {
   text-align: center;
      margin-bottom: 30px;
}

.check-circle-icon {
   width: 80px; 
	   height: 80px; 
	   border-radius: 50%; 
	    background: #28a745; 
	   position: relative; 
	  margin:        0 auto;
}

.check-circle-icon::after {
  content: "✓";
   position     :     absolute;
   top: 50%;
                    left: 50%;
  transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
   font-weight: bold;
}

.thankyou-content-wrapper h1 {
    font-size: 2.4rem;
  color: #2c5aa0;
   text-align: center;
   margin-bottom: 20px;


}

.thankyou-main-text {


    color: #666;
   line-height: 1.7;
	font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
     }

.next-steps-block


{
  margin-bottom: 40px;
}

.next-steps-block h2 {
  color: #333;

    font-size: 1.8rem;

       margin-bottom: 25px;

	text-align: center;
}

.steps-timeline {
  display  :   flex;
    flex-direction: column;
               gap: 25px;
}

.timeline-step {
    display: flex;
   gap: 20px;
      align-items: flex-start;
}

.step-number {
	background: #2c5aa0;
	color: white;
   width: 35px;
    height     :     35px;
    border-radius: 50%;
   display: flex;
  align-items: center;
    justify-content: center;
      font-weight :   bold;
   flex-shrink: 0;
}

.step-content h3 {
    color: #333;
  font-size: 1.2rem;
          margin-bottom: 6px;
}

.step-content p {
  color :  #666;
   line-height: 1.6;
}

.additional-info-section {
   background: #f8f9fa;
    padding: 25px;
   border-radius: 10px;
  margin-bottom: 30px;
}

.additional-info-section h2 {

  color: #2c5aa0;
    font-size: 1.5rem;
      margin-bottom: 12px;
     }



.additional-info-section p {

 color: #666;
          line-height: 1.6;
}

.contact-confirmation {
    background: #e8f4fd;
  padding: 25px;
  border-radius: 10px;
	margin-bottom: 35px;
}

.confirmation-details h3

{
 color: #2c5aa0;
   font-size: 1.3rem;
   margin-bottom: 15px;
}

.confirmation-details p {
   color: #555;
   margin-bottom: 8px;
}

.thankyou-actions {
   display: flex;
         gap: 15px;
   justify-content: center;
    flex-wrap: wrap;
}

.return-home-btn, .learn-more-btn {
  padding: 12px 24px;
   text-decoration: none;
  border-radius: 8px;
   font-weight: 600;
	transition: all 0.3s ease;
  display: inline-block;
}

.return-home-btn {
       background: #2c5aa0;
    color: white;

}

.return-home-btn:hover {
    background: #1e3f73;
	  transform: translateY(-2px);
}

.learn-more-btn    {
    border: 2px solid #2c5aa0;
   color: #2c5aa0;
    background   :transparent;
}

.learn-more-btn:hover {


     background: #2c5aa0;
   color  : white;}

.thankyou-visual-section {
  display: flex; 
  flex-direction: column; 
	gap: 30px;
}

.thankyou-image {
  width: 100%;
   height: 250px;
  object-fit     :       cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.success-quote {

	   background  :      white;
     padding: 25px;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        text-align :   center;}

.success-quote blockquote {
  font-style  :      italic;
    color: #555;
    line-height: 1.6;
 margin-bottom: 15px;
  font-size: 1.05rem;

}

.success-quote cite {
  color: #2c5aa0;
   font-weight: 600;
    font-style: normal;
}

.benefits-reminder   {
    padding :   60px 0;
					background: #f8f9fa;
}  

.benefits-container {
    max-width: 1000px;

  margin :      0 auto;

  padding: 0 20px;

   text-align: center;
}

.benefits-container h2 {
    font-size :        2rem;
  color     :      #2c5aa0;
   margin-bottom: 40px;
}

.benefits-grid {
   display   :       grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-item {

   background: white;
  padding: 30px 20px;
  border-radius     :       10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); 
}

.benefit-item h3 {
       color:        #333;
  font-size: 1.3rem;
    margin-bottom: 12px;
}

.benefit-item p {
   color     :       #666;
  line-height:      1.5;
}@media (max-width: 768px) {
    .about-hero-container,
    .story-content-wrapper,
    .expertise-item,
    .approach-wrapper,
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-hero-text h1 {
        font-size: 2.2rem;
    }
    
    .mission-grid-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .expertise-item.reverse-layout {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .thankyou-content-wrapper {
        padding: 35px 25px;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero-text h1 {
        font-size: 1.9rem;
    }
    
    .story-text-section h2,
    .expertise-header h2,
    .approach-text-block h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .mission-card, .values-card {
        padding: 25px 20px;
    }
}.content-block {
    max-width: 800px;
  margin : 0 auto;
        font-size    :  1.1rem;
		color    :#666;
  line-height: 1.7;
}

.content-block p {
        margin-bottom: 20px;
}

.content-block strong

{

  color: #333;
               font-weight: 600;
     }