* {
               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: #fff;
}

.navigationBar {
  position: fixed;
   top: 0;
    width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
         transition:  all 0.3s ease;
}

.navigationBar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); 
	
} 

.navContainer  
  {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
  align-items: center;
    justify-content: space-between;
	padding: 15px 20px;
}

.brandSection .logoImage {
    height: 40px;
     width: auto;
}

.mainMenu {
    display: flex;
  list-style: none;
    gap   :    40px;
}

.mainMenu li a {
    transition: color 0.3s ease;
  color     :    #333;
  font-size : 16px;
   text-decoration: none;
	font-weight: 500;
}

.mainMenu li a:hover {
    color: #007bff;
}

.mobileToggle {
  display: none;
    flex-direction: column;
   cursor: pointer;
	gap: 4px;
}

.burgerLine {
    width: 25px;
	height: 3px;
   background: #333;
    transition: 0.3s;
	
}

.mobileToggle.active .burgerLine:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobileToggle.active .burgerLine:nth-child(2) {
          opacity: 0;
}

.mobileToggle.active .burgerLine:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.heroSection {
  margin-top: 80px;
         padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   display: flex;
      align-items: center;
   min-height: 70vh;
}

.heroContent {
   max-width :  1200px;
  margin     :       0 auto;
  display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
    padding: 0 20px; 
	
}  

.mainHeading{
   font-size: 48px;
    font-weight: 700;
	line-height: 1.2;
   color: #1a1a1a;
   margin-bottom: 20px; 

}

.heroDescription {
    font-size: 18px;
   color: #666;
    margin-bottom: 30px;
      line-height: 1.7;
}

.primaryButton {
   display    :   inline-block;
  padding: 15px 35px;
               background: #007bff;
  color: white;
    text-decoration: none;
	border-radius: 8px;
    font-weight     :        600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.primaryButton:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.heroImage {
    width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

}

.servicesOverview {
   padding   :    100px 0;
               background  :   #fff;
}

.containerWide
	{
  max-width:   1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.sectionTitle {
   	 text-align: center;
   font-size: 36px;
    font-weight: 700;
    margin-bottom:    60px;
    color: #1a1a1a;
}

.serviceGrid
{
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
}

.serviceCard {
  background: #fff;
     border-radius    :  12px;
    overflow :  hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.serviceCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
	}

.serviceImage		{

	   width: 100%;
    height: 200px;
    object-fit: cover;
}

.serviceHeading {
    font-size: 22px;
   font-weight: 600;
   margin: 25px 25px 15px;
   color: #1a1a1a;
}

.serviceText {
	padding: 0 25px 30px;
			color:       #666;
  line-height: 1.7;
}

.aboutPreview {

	   padding: 100px 0;
  background: #f8f9fa;


}

.contentContainer {
   max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
	 display: grid;
	grid-template-columns     : 1fr 1fr;
   gap: 60px;
    align-items: center;
}

.blockTitle {
	 font-weight: 700;
   margin-bottom: 25px;
  color: #1a1a1a;
  font-size: 32px;
	
}

.blockParagraph {
    color: #666;
   margin-bottom: 20px;
  line-height: 1.7;
    font-size: 16px;
	
}

.secondaryButton {
   display  :      inline-block;
   padding: 12px 30px;
                    background: transparent;
  color: #007bff;
    text-decoration: none;
    border: 2px solid #007bff;
    border-radius:8px;
   font-weight: 600;
  transition: all 0.3s ease;
  margin-top    :    10px;
}

.secondaryButton:hover{
    background: #007bff;
    color: white;
  transform: translateY(-1px);
}

.blockImage {
        width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ctaSection

{
	  padding :     80px 0;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
   color: white;
    text-align: center;
}

.ctaContainer {
	max-width: 800px;
               margin: 0 auto;
  padding: 0 20px;
}

.ctaHeading {
  font-size: 36px;
    font-weight:      700;
   margin-bottom: 20px;
}

.ctaText {
    font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
   line-height: 1.6;
     }

.ctaButtons {
  display: flex; 
    gap: 20px; 
    justify-content   :   center; 
	 flex-wrap: wrap;
}

.outlineButton {
	display: inline-block;
      padding: 15px 35px;
    background   :   transparent;
   color:   white;
    text-decoration: none;
   border: 2px solid white;
   border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.outlineButton:hover	{
    background: white;
   color: #007bff;
  transform: translateY(-1px);
}

.contactSection {
  padding: 100px 0; 
	    background: #fff;
} 

.contactContainer {
   max-width: 800px;
   margin: 0 auto;
   padding: 0 20px;
}

.contactHeading {
          text-align: center;
    font-size: 36px;
    font-weight: 700;
   margin-bottom: 10px;
    color: #1a1a1a;
}

.contactSubtext {
  text-align: center;
  color   :#666;
	margin-bottom:   50px;
	font-size: 18px;
}

.contactForm {
  background: #f8f9fa;
        padding: 40px;
         border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.formRow {
    display: grid;
   grid-template-columns: 1fr 1fr;
       gap   :  20px;
  margin-bottom: 20px;
}

.inputGroup {
   margin-bottom: 25px;
}

.formLabel {
  display: block;
    margin-bottom: 8px;
	font-weight: 600;
    color: #333;
}

.formInput, .formSelect, .formTextarea {
    width: 100%;
    padding: 12px 15px;
  border: 2px solid #e0e0e0;
   border-radius     : 8px;
   font-size: 16px;
  transition: border-color 0.3s ease;
     font-family: inherit;
}  

.formInput:focus, .formSelect:focus, .formTextarea:focus {
    outline: none;
   border-color: #007bff;
}

.formInput.error {
  border-color: #dc3545;
}

.formTextarea {
    resize: vertical;
  min-height: 120px;
}

.submitButton{

    width     :100%;
    padding: 15px;
    background: #007bff;
   color: white;
    border: none;
   border-radius   : 8px;
  font-size : 16px;
   font-weight: 600;
   cursor: pointer;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);}

.submitButton:hover    {


   background:   #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);


}

.mainFooter {
    background: #1a1a1a;
    color: white;
		padding: 60px 0 20px;
}

.footerContent		{
   max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

   display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 40px;
}

.footerLogo {
    height: 40px;
    width     :        auto;
   margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.companyDescription {
  color: #ccc;
               line-height: 1.6;
   margin-bottom: 20px;
}

.footerHeading  
  {
               margin-bottom: 20px;
  color: #fff;
   font-weight: 600;
  font-size: 18px;
}

.footerLinks {
   list-style: none;
}

.footerLinks li {
    margin-bottom: 10px;
}

.footerLinks a {
	color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footerLinks a:hover {
   color: #007bff;
}

.contactInfo .contactItem {
   color: #ccc;
               margin-bottom: 8px;
}

.footerBottom  
  {
   max-width: 1200px;
    margin: 40px auto 0;
  padding: 20px 20px 0;
   border-top: 1px solid #333;
  text-align: center;
}

.copyright {
  font-size  :      14px;
    color: #888;
}@media (max-width: 768px) {
    .mobileToggle {
        display: flex;
    }
    
    .mainMenu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100vh);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .mainMenu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .heroContent {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mainHeading {
        font-size: 36px;
    }
    
    .serviceGrid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contentContainer {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .formRow {
        grid-template-columns: 1fr;
    }
    
    .ctaButtons {
        flex-direction: column;
        align-items: center;
    }
    
    .footerContent {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .heroSection {
        padding: 40px 0;
    }
    
    .mainHeading {
        font-size: 28px;
    }
    
    .heroDescription {
        font-size: 16px;
    }
    
    .servicesOverview, .aboutPreview, .contactSection {
        padding: 60px 0;
    }
    
    .sectionTitle, .blockTitle, .contactHeading {
        font-size: 28px;
    }
    
    .contactForm {
        padding: 25px;
    }
}.aboutHero {
   margin-top: 80px;
	padding: 100px 0;
  background: linear-gradient(135deg, #f1f3f4 0%, #e8eaf0 100%);
    text-align    :center;
}

.aboutHeroContent {
  max-width: 900px;
  margin: 0 auto;
    padding: 0 20px; 
	
}

.aboutMainTitle {
    font-size:44px;
   font-weight     :      700;
    color: #1a1a1a;
  margin-bottom :     25px;
  line-height: 1.3;
}

.aboutHeroText {
    font-size: 20px;
 color: #666;
	line-height: 1.7;
   max-width: 700px;
   margin: 0 auto;
}

.storySection {
   padding: 90px 0;
  background: #fff;
}

.storyContent {
    display  :   grid;
	   grid-template-columns: 1fr 1fr;
	  gap: 60px;
	  align-items: center;
}

.storyHeading		{
  font-size: 34px;
   font-weight: 700;
   margin-bottom: 30px;
          color: #1a1a1a;
}

.storyParagraph {
  color: #666;
 line-height: 1.8;
    margin-bottom: 20px;
  font-size: 16px;
}

.storyImage 
 {
   width: 100%;
  height: auto;
	border-radius: 15px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.methodologySection {

    padding: 90px 0;
                    background: #f8f9fa;}

.methodTitle {
  text-align: center;
         font-size: 36px;
   font-weight: 700;
   margin-bottom: 70px;
  color     :   #1a1a1a;
}

.methodGrid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;


} 

.methodCard	{
  background: white;
  padding: 35px;
    border-radius: 12px;
   text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;


}

.methodCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.methodNumber {
 background: #007bff;
    color: white;
    justify-content: center;
	 margin: 0 auto 25px;
    display: inline-block;
  height: 60px;
  width: 60px;
 font-weight: 700;
   border-radius: 50%;
    align-items :    center;
        display    :       flex;
	font-size: 24px;
}

.methodCardTitle {
  font-size: 22px;
   font-weight: 600;
   margin-bottom: 15px;
  color: #1a1a1a;
}

.methodCardText {
	  color: #666;
  line-height:   1.7;
     }

.expertiseSection {
     padding: 90px 0;
  background: #fff;
}

.expertiseLayout {
    display     :  grid;
	  grid-template-columns: 1fr 1fr;
	         gap    : 60px;
	       align-items: center;
}

.expertiseTitle {
    font-size: 34px;
    font-weight: 700;
   margin-bottom: 40px;
  color: #1a1a1a; 

}

.expertiseList {
  gap: 25px;
    flex-direction: column;
    display: flex;
}

.expertiseItem


{
          padding: 20px 0;
   border-bottom: 1px solid #e5e5e5;
}



.expertiseItem:last-child {
  border-bottom     :   none;
	
}

.expertiseItemTitle {
   font-size: 18px;
  font-weight: 600;
    margin-bottom: 8px;
  color   : #1a1a1a;
}

.expertiseItemDesc {
    color: #666;
    line-height:      1.6;
}

.expertiseImage {
  width :     100%;
  height: auto;
    border-radius: 15px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.approachSection {
        padding : 90px 0;
   background: #f8f9fa;
}

.approachTitle {
       text-align: center;
   font-size: 36px;
  font-weight: 700;
  margin-bottom :        60px;
   color: #1a1a1a;}

.approachGrid {
  display : grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
       gap: 40px; 
	
}

.approachFeature {
   text-align: center;


}

.featureImage {
    width: 100%;
    height: 200px;
  object-fit: cover;
    border-radius: 12px;
	 margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.featureTitle {
    font-size: 24px;
          font-weight: 600;
    margin-bottom: 15px;
  color: #1a1a1a;
}

.featureDescription {
   color: #666;
	 line-height: 1.7;


}

.valuesSection {
   padding: 90px 0;
   background: #fff;
}

.valuesHeading {

	    text-align: center;
   font-size: 36px;
   font-weight: 700;
   margin-bottom     :   60px;
  color  :      #1a1a1a;
     }

.valuesList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
    max-width: 1000px;
       margin: 0 auto;
}

.valueItem {
   text-align: center;
   padding: 30px;
   background: #f8f9fa;
 border-radius: 12px;
}



.valueTitle {
        font-size: 20px;
					font-weight: 600;
 margin-bottom: 15px;
    color: #007bff;
}

.valueText {
   color: #666;
   line-height: 1.7; 

}

.thankYouSection {
		 margin-top: 80px;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   min-height: 80vh;
   display: flex;
    align-items: center;}

.thankYouContainer {
  max-width: 1200px;

   margin    :  0 auto;

   padding: 0 20px;

   display: grid;

  grid-template-columns: 1fr 1fr;

    gap: 60px;

  align-items: center;
}

.thankYouContent

{
   text-align     :   left;}

.successIcon {
    margin-bottom: 30px;
}

.checkmarkCircle {
    width: 80px;
  height     :  80px;
    border-radius:       50%;
    background: #28a745;
  position: relative;
  margin: 0;
    animation: checkmarkPop 0.8s ease-in-out;
}

.checkmarkStem, .checkmarkKick {
   position: absolute;
  background: white;
  border-radius: 3px;
}



.checkmarkStem		{
   width: 3px;
  height: 20px;
    top :35px;
  left: 40px;
  transform: rotate(45deg);
}

.checkmarkKick {


    width: 3px;
     height: 12px;
     top: 45px;
     left: 32px;
     transform: rotate(-45deg);

}@keyframes checkmarkPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}.thankYouTitle		{
    font-size: 42px;
     font-weight: 700;
      color: #1a1a1a;
   	margin-bottom: 20px;
      line-height: 1.2;
}



.thankYouMessage    {
  font-size: 18px;
   color: #666;
	line-height    :        1.7;
   margin-bottom    :40px;

}  

.nextStepsBlock {
    background     :        white;
	padding   :   35px;
  border-radius     :     12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.nextStepsHeading {
  font-size: 22px;
    font-weight: 600;
    margin-bottom :       25px;
  color: #1a1a1a;
}

.stepsList {
	display: flex;
   flex-direction: column;
   gap: 20px;
}

.stepItem 
 {
  align-items: flex-start;
    display :       flex;
    gap: 15px;
}  

.stepNumber {
	   width: 35px;
         height  :35px;
   background: #007bff;
  color: white;
    border-radius: 50%;
  display: flex;
    align-items: center;
  justify-content  : center;
    font-weight: 600;
   font-size: 14px;
    flex-shrink: 0;

}



.stepContent {
  flex: 1;
}

.stepTitle {
   font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
	color     :   #1a1a1a;
}

.stepDesc {
   color: #666;
   line-height: 1.6;
  font-size: 14px;
}

.actionButtons {
  display: flex;
   gap: 20px;
  flex-wrap: wrap;
}

.thankYouImage {
  width: 100%;
   height: auto;
    border-radius: 15px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.additionalInfo {
   padding     :       80px 0;
    background: #fff;
}

.infoGrid {
   display    :        grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 30px;
}

.infoCard {
	text-align: center;
        padding: 30px 25px;
  background: #f8f9fa;
   border-radius: 12px;
   transition: transform 0.3s ease;
}

.infoCard:hover {
  transform: translateY(-5px);
}

.infoCardTitle {
   font-size: 18px;
   font-weight   :     600;
	 margin-bottom: 15px;
  color: #1a1a1a;
}

.infoCardText {
	color: #666;
	line-height: 1.6;
    font-size: 15px;

}@media (max-width: 768px) {
    .aboutMainTitle {
        font-size: 32px;
    }
    
    .aboutHeroText {
        font-size: 18px;
    }
    
    .storyContent, .expertiseLayout, .thankYouContainer {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .methodGrid, .approachGrid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .thankYouTitle {
        font-size: 32px;
    }
    
    .thankYouContainer {
        text-align: center;
    }
    
    .thankYouContent {
        text-align: center;
    }
    
    .actionButtons {
        justify-content: center;
    }
    
    .stepItem {
        text-align: left;
    }
    
    .valuesList {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .aboutHero, .storySection, .methodologySection, 
    .expertiseSection, .approachSection, .valuesSection {
        padding: 60px 0;
    }
    
    .thankYouSection {
        padding: 60px 0;
    }
    
    .aboutMainTitle, .thankYouTitle {
        font-size: 28px;
    }
    
    .storyHeading, .methodTitle, .expertiseTitle, 
    .approachTitle, .valuesHeading {
        font-size: 26px;
    }
    
    .methodCard, .nextStepsBlock {
        padding: 25px;
    }
    
    .actionButtons {
        flex-direction: column;
        align-items: center;
    }
    
    .primaryButton, .secondaryButton {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
}