* {

	    padding: 0;
    box-sizing: border-box;
  margin: 0;}

body {
  font-family: 'Arial', sans-serif;
    line-height: 1.6;
	color: #333;
  background-color: #fff;
	
}

.container {
  max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
}

.navigationBar {
               position: fixed;
   top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
	z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
  border-bottom   :    1px solid #e0e0e0;
}

.navigationBar.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navContainer {

	 max-width: 1200px;
	margin: 0 auto;
  padding:        0 20px;
    display: flex;
  justify-content: space-between;
    align-items: center;
}

.logoSection {
  flex: 0 0 auto;
}

.companyLogo {
    height: 45px;
  width  :        auto;
}

.menuItems     {

	       display: flex;
   gap: 30px;
    align-items: center;
	}

.navLink {
   text-decoration: none;
   color: #333;
  font-weight: 500;
    transition: color 0.3s ease;
   position: relative;
}

.navLink:hover,
.navLink.active {
   color: #007bff;
}



.navLink.active::after {
  content: '';
	left: 0;
   height: 2px;
  background-color: #007bff;
    width: 100%;
   bottom:     -5px;
   position: absolute;
}

.burgerMenu {
  display   :  none;

  flex-direction: column;

    cursor: pointer;

    width: 25px;

    height: 20px;

  justify-content: space-between;}

.burgerMenu span {
   width: 100%;
	 height: 3px;
                    background-color: #333;
    transition: all 0.3s ease;
	border-radius: 2px;
}



.burgerMenu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
	
}

.burgerMenu.active span:nth-child(2) {
   opacity     :  0;
}

.burgerMenu.active span:nth-child(3) {
	  transform: rotate(-45deg) translate(7px, -6px);

}

.heroSection {
  margin-top: 80px;
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.heroContent {
       max-width: 1200px;
   margin: 0 auto;
          padding: 0 20px;
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 50px;
	align-items: center;}

.heroText h1 {
  font-size: 3rem;
  font-weight: 700;
   color: #2c3e50;
   margin-bottom: 20px;
    line-height: 1.2;
}



.heroText p {
	  font-size: 1.2rem;
   color: #5a6c7d;
   margin-bottom: 30px;
    line-height: 1.6;

}

.ctaButton {
  display: inline-block;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
   color: white;
       padding: 15px 30px;
	 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);
}

.ctaButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.heroImage img{
    width: 100%;
	height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.servicesSection
{
	padding: 80px 0;
   background-color: #fff;
}

.servicesSection h2 {

	    text-align: center;
  font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
   font-weight: 700;}

.servicesGrid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 30px;
    margin-top: 40px;


}

.serviceCard {
   background: white;
  border-radius: 12px;
    padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
} 

.serviceCard:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.serviceCard img {
  height: 200px;
   width: 100%;
    margin-bottom: 20px;
   object-fit: cover;
    border-radius: 8px;
}

.serviceCard h3 {
  color: #2c3e50;
          font-weight: 600;
    font-size: 1.5rem;
  margin-bottom :    15px;
}

.serviceCard p {
    color: #5a6c7d;
   line-height: 1.6;
}

.featuresSection {
          padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.featuresSection h2     {
    text-align: center;
  font-size: 2.5rem;
   color     :      #2c3e50;
   margin-bottom: 50px;
   font-weight: 700;
}

.featuresGrid {
		display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.featureItem {
   text-align  :     center;
    padding: 30px 20px;
}

.featureItem h3 {
    font-size: 1.4rem;
    color: #2c3e50;
   margin-bottom: 15px;
  font-weight: 600;
}

.featureItem p {

  color: #5a6c7d;
  line-height: 1.6;

}

.ctaSection {
	padding: 80px 0;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
}

.ctaContent     {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
     align-items  :      center;
}

.ctaText h2 {
  font-size: 2.5rem;
   margin-bottom: 20px;
   font-weight: 700;
}

.ctaText p {
    font-size    :  1.2rem;
   margin-bottom: 30px;
	 line-height: 1.6;
  opacity: 0.9;
}

.ctaSection .ctaButton {
   background: white;
     color: #007bff;
}

.ctaSection .ctaButton:hover
	{

               background   :        #f8f9fa;}

.ctaImage img {
    width: 100%;
   border-radius   :      12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contactSection {
  padding: 80px 0;
  background-color :       #f8f9fa;
}

.contactSection h2 {
  text-align     :center;
    font-size : 2.5rem;
    color: #2c3e50;
   margin-bottom: 50px;
  font-weight: 700;
}

.contactContent {
          display: grid;
    grid-template-columns: 2fr 1fr;
   gap :   50px;
}



.contactForm {
    background: white;
    padding: 40px;
    border-radius  :        12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.formGroup {
  margin-bottom: 25px;
    position: relative;
}

.formGroup label {
	display: block;
    margin-bottom: 8px;
 font-weight: 600;
   color  :        #2c3e50;
}

.formGroup input,
.formGroup select,
.formGroup textarea {
		width: 100%;
   padding: 12px 15px;
   border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
	transition: border-color 0.3s ease;
   background-color: #fff;
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
  outline     :        none;
  border-color: #007bff;
}

.formGroup input.error,
.formGroup select.error,
.formGroup textarea.error {
  border-color: #dc3545;
}

.submitButton {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); 
	    color: white; 
	    padding: 15px 30px; 
	  border: none; 
	    border-radius: 8px; 
	   font-size: 1.1rem; 
	       font-weight: 600; 
		cursor: pointer; 
	  transition: all 0.3s ease; 
		width :        100%; 
	  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.submitButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
	
}

.contactInfo {
  background: white;
          padding: 40px;
   border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  height: fit-content;
}

.contactInfo h3 {

	 font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
                    font-weight: 600;
     }

.contactItem {
  margin-bottom: 25px;
}

.contactItem strong {
   display: block;
  color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.contactItem p {
    color: #5a6c7d;
    line-height: 1.6;
}

.footerSection  
  {
  background-color: #2c3e50;
    color: white;
   padding: 50px 0 30px;
}

.footerContent     {
      display: grid;
                    grid-template-columns: 1fr 2fr;
   gap  :      50px;
    margin-bottom:30px;
}  

.footerLogo img {

	  height: 50px;
	width: auto;
}

.footerInfo {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footerColumn h4 {
  font-size: 1.2rem;
    margin-bottom: 20px;
   font-weight: 600;
  color: #fff;
}

.footerColumn ul {


  list-style:        none;
     }

.footerColumn ul li {
	margin-bottom :     10px;
}

.footerColumn ul li a {
          color: #bdc3c7;
	text-decoration: none;
    transition: color 0.3s ease;

}

.footerColumn ul li a:hover {
   color: #007bff;
}

.footerColumn p 
 {

	    color: #bdc3c7;
   line-height: 1.6;}

.footerBottom {
   text-align: center;
  padding-top: 30px;
   border-top: 1px solid #34495e;
  color: #bdc3c7;
}@media (max-width: 768px) {
    .burgerMenu {
        display: flex;
    }
    
    .menuItems {
        position: fixed;
        top: 76px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: right 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .menuItems.active {
        right: 0;
    }
    
    .heroContent {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .heroText h1 {
        font-size: 2.2rem;
    }
    
    .servicesGrid {
        grid-template-columns: 1fr;
    }
    
    .featuresGrid {
        grid-template-columns: 1fr;
    }
    
    .ctaContent {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contactContent {
        grid-template-columns: 1fr;
    }
    
    .footerContent {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footerInfo {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .heroText h1 {
        font-size: 1.8rem;
    }
    
    .heroText p {
        font-size: 1rem;
    }
    
    .servicesSection h2,
    .featuresSection h2,
    .contactSection h2 {
        font-size: 2rem;
    }
    
    .ctaText h2 {
        font-size: 2rem;
    }
    
    .contactForm,
    .contactInfo {
        padding: 25px;
    }
    
    .container {
        padding: 0 15px;
    }
}.aboutHero {
   margin-top: 80px;
   padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
   text-align     :        center;
}

.aboutHeroContent h1 {
   font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
  color: white;
}

.aboutHeroContent p {
	    font-size: 1.3rem;
   max-width: 800px;
    margin: 0 auto;
  line-height: 1.7;
	 opacity: 0.9;
	

}

.storySection {

  padding: 100px 0;
   background-color: #fff;
}

.storyContent {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}  

.storyText h2
	{
  font-weight:   700;
    margin-bottom: 30px;
    color    :        #2c3e50;
  font-size: 2.5rem;
}

.storyText p {
  color: #5a6c7d;
   line-height: 1.8;
   margin-bottom: 20px;
  font-size: 1.1rem;
}

.storyImage img 
 {
  width:        100%;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.valuesSection {
	padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.valuesSection h2
{
  text-align: center;
  font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.valuesGrid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;


}

.valueCard {
  background: white;
    padding: 40px 30px;
    border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
   opacity: 0;
  transform: translateY(30px);
  border-left: 4px solid transparent;
}

.valueCard h3 {
   font-size: 1.4rem;
   color: #2c3e50;
   margin-bottom: 20px;
 font-weight: 600;
}

.valueCard p {
    color: #5a6c7d;
        line-height: 1.7;
}

.approachSection {
    padding: 100px 0;
    background-color: #fff;
}

.approachContent {
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
	align-items: center;
}

.approachText h2 {
   font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 25px;
   font-weight: 700;
}

.approachText > p
	{
	  color: #5a6c7d;
  line-height: 1.8;
	margin-bottom: 40px;
    font-size: 1.1rem;}

.approachPoints {
    display: flex;
   flex-direction: column;
  gap: 25px;
}

.approachPoint {
  padding: 20px;
   border-radius: 10px;
   transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.approachPoint h4 {
   font-size: 1.2rem;
        color: #2c3e50;
         margin-bottom: 10px;
  font-weight: 600;
}

.approachPoint p

{
  color: #5a6c7d;
  line-height: 1.6;
}

.approachImage img {
    width: 100%;

    border-radius: 15px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.experienceSection {
   padding: 100px 0;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
}

.experienceSection h2 {
	text-align: center;
    font-size: 2.5rem;
	margin-bottom  : 60px;
  font-weight: 700;
    color: white;
}

.experienceStats {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

   gap : 40px;
}

.statItem {
    text-align: center;
  padding: 30px 20px;
}

.statItem h3 {
   margin-bottom     :      15px;
   color: white;
    font-weight: 700;
  font-size: 3rem;
}

.statItem p {
	font-size: 1.2rem; 
	   opacity: 0.9;
}



.missionSection {
  padding: 100px 0;
   background-color: #fff; 
	
}

.missionContent {
  display: grid;
   grid-template-columns    :   1fr 1fr;
  gap: 60px;
   align-items: center;
}

.missionText h2 {
   font-size: 2.5rem;
 color: #2c3e50;
    margin-bottom: 30px;
   font-weight   :     700;
}

.missionText p {
    color: #5a6c7d;
  line-height: 1.8;
   margin-bottom: 20px;
    font-size :1.1rem;


}



.missionImage img {
  width     :  100%;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.thankyouSection {

	  margin-top: 80px;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 70vh;

}

.thankyouContent {
    display: grid;
 grid-template-columns: 2fr 1fr;
  gap  : 60px;
  align-items: center;
}

.thankyouMain


{
    text-align: center;
}

.successIcon {
   margin-bottom: 30px;
}

.checkmarkCircle {
     width: 80px; 
  height: 80px; 
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%); 
   border-radius: 50%; 
   margin: 0 auto; 
    position: relative; 
  transform: scale(0); 
	transition: transform 0.6s ease;
	}

.checkmarkCircle.animate {

  transform: scale(1);
     }

.checkmark {
    position: absolute;
   top:      50%;
   left: 50%;
  transform: translate(-50%, -50%);
    width: 20px;
    height: 35px;
	 border: solid white;
   border-width: 0 4px 4px 0;
  transform: translate(-50%, -60%) rotate(45deg);
  opacity: 0;
   transition: opacity 0.4s ease;}

.checkmark.animate     {
   opacity: 1;
}

.thankyouMain h1 {
	font-size: 2.8rem; 
	    color: #2c3e50; 
	    margin-bottom: 25px; 
	                    font-weight   :  700;
}

.thankyouMessage {
	 font-size    :  1.2rem;
    color: #5a6c7d;
    line-height :       1.7;
    max-width: 600px;
		 margin: 0 auto 50px;


}

.nextSteps {
   margin: 50px 0;
}

.nextSteps h2 {


  font-size: 2rem;
  color  : #2c3e50;
	 margin-bottom: 40px;
    font-weight: 600;

}

.stepsList {
   display  :  flex;
    flex-direction: column;
    gap     :       30px;
  max-width: 500px;
  margin: 0 auto;
}

.step {
  display :        flex;
   align-items: flex-start;
   gap: 20px;
    text-align    :      left;
} 

.stepNumber {
   flex   :       0 0 40px;
  width: 40px;
    height: 40px;
    background: #e9ecef;
    border-radius  :   50%;
    display: flex;
    align-items: center;
    justify-content: center;
   font-weight: 700;
    color   :       #2c3e50;
  transition: all 0.3s ease;
}

.stepContent h3 {
	 font-size :      1.3rem;
    color   :   #2c3e50;
   margin-bottom: 8px;
   font-weight :       600;
}

.stepContent p {


 line-height     :      1.6;
  color: #5a6c7d;
}

.actionButtons
{
    display  : flex;
   gap: 20px;
   justify-content: center;
    margin-top: 40px;
}

.primaryButton {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
	color    :white;
    padding    :15px 30px;
         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);
}

.secondaryButton {
   background: transparent;
   color: #007bff;
  padding: 15px 30px;
  text-decoration: none;
    border :   2px solid #007bff;
  border-radius: 8px;
   font-weight: 600;
   transition: all 0.3s ease; 

}

.thankyouImage img {
   width: 100%;
   border-radius : 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.additionalInfo {
   padding: 80px 0;
   background-color: #fff;
}

.infoGrid {
   display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
   gap: 30px;
}

.infoCard {
    background: #f8f9fa;
   padding: 30px;
   border-radius: 12px;
  text-align: center;
   border-left: 4px solid #007bff;
}

.infoCard h3 {
  font-size: 1.4rem;
  color: #2c3e50;
         margin-bottom    :    15px;
   font-weight: 600;
}

.infoCard p {
  color: #5a6c7d;
   line-height: 1.7;
}@media (max-width: 768px) {
    .aboutHeroContent h1 {
        font-size: 2.2rem;
    }
    
    .aboutHeroContent p {
        font-size: 1.1rem;
    }
    
    .storyContent,
    .approachContent,
    .missionContent {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .valuesGrid {
        grid-template-columns: 1fr;
    }
    
    .experienceStats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .thankyouContent {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .actionButtons {
        flex-direction: column;
        align-items: center;
    }
    
    .stepsList {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .aboutHeroContent h1 {
        font-size: 1.8rem;
    }
    
    .storyText h2,
    .approachText h2,
    .missionText h2,
    .valuesSection h2,
    .experienceSection h2 {
        font-size: 2rem;
    }
    
    .thankyouMain h1 {
        font-size: 2.2rem;
    }
    
    .experienceStats {
        grid-template-columns: 1fr;
    }
    
    .statItem h3 {
        font-size: 2.5rem;
    }
    
    .valueCard,
    .infoCard {
        padding: 25px 20px;
    }
}.pol {
    margin: 7% 15%;
}