* {
   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  :      #f8f9fa;


}


.mainNavigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   position: fixed;
  top: 0;
	width    :     100%;
   z-index: 1000;
   border-bottom: 1px solid #e0e0e0;
}

.navContainer 
 {
    max-width: 1200px;
  margin: 0 auto;
   display  : flex;
  justify-content: space-between;
     align-items: center;
   padding     :       1rem 2rem;
}

.companyLogo {
   height: 45px;
   width: auto;
}

.navLinks {

          display: flex;
    list-style  :     none;
    gap: 2rem;
}

.navLinks a {
   text-decoration :        none;
	color :       #2c3e50;
  font-weight: 500;
   transition: color 0.3s ease; 
	
}

.navLinks a:hover {
               color: #3498db;
}

.mobileMenuToggle {
   display: none;
   flex-direction: column;
    cursor: pointer;
   gap: 4px;


}

.mobileMenuToggle span {
        width: 25px;
   height: 3px;
    background: #2c3e50;
   transition: 0.3s;
}

.heroSection {
    margin-top: 80px;
	padding  :    4rem 2rem;
  max-width: 1200px;
   margin-left: auto;
   margin-right: auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: center;
	min-height: 60vh;
}

.heroContent h1 {
  font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom    : 1rem;
  line-height     :       1.2; 

}

.heroSubtitle   {
 font-size: 1.2rem; 
   color: #666; 
    margin-bottom: 2rem;
}

.heroActions {
  display: flex;
 gap: 1rem;
    flex-wrap: wrap;}

.primaryButton, .secondaryButton     {
  text-decoration: none;
   transition: all 0.3s ease;
	display: inline-block;
   border-radius: 6px;
   padding: 12px 24px;
          font-weight: 600;
}

.primaryButton {
     background: #3498db;
  color: white;

}

.primaryButton:hover {
  -moz-transform: translateY(-2px);
	  -ms-transform: translateY(-2px);
	    background: #2980b9;
	  transform: translateY(-2px);
}

.secondaryButton {
         background    :        transparent;
    color: #3498db;
   border: 2px solid #3498db;
	
}

.secondaryButton:hover {
        background: #3498db;
   color: white;
}

.heroImage img	{
   width: 100%;
  height: auto;
          border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featuresGrid {
   padding: 5rem 2rem;
   background  :     white;
	
}

.containerWrapper {
    margin: 0 auto;
  max-width: 1200px;
}

.featuresGrid h2 {
    text-align: center;
    font-size :    2.2rem;
     color: #2c3e50;
   margin-bottom     :      3rem;
}

.serviceGrid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.serviceCard {
		background: #f8f9fa;
  padding: 2rem;
      border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;}

.serviceCard:hover {
  transform: translateY(-5px);
}

.serviceCard img {

		 width: 100%;
    height: 200px;
   object-fit: cover;
        border-radius: 8px;
   margin-bottom   :        1.5rem;
     }

.serviceCard h3 {
  margin-bottom: 1rem;
    font-size: 1.3rem;
   color: #2c3e50;
}

.aboutPreview {

    padding: 5rem 2rem;
   max-width: 1200px;
	margin     :  0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
}

.aboutContent h2{
  color: #2c3e50;
    font-size: 2rem;
  margin-bottom: 1.5rem;
}



.aboutContent p {
  color: #666;
  margin-bottom: 2rem;
               font-size: 1.1rem;

}

.statsSection{
   gap     : 2rem;
   display: flex;
  flex-wrap: wrap;
}

.statItem {
    text-align: center;
}

.statNumber {
   display: block;
  font-size: 2rem;
  font-weight: bold;
    color: #3498db;
	
}

.statLabel     {
    font-size: 0.9rem;
  color: #666;
}

.aboutImage img

{
	width: 100%;
	height: auto;
          border-radius: 12px;
    -webkit-border-radius: 12px;
}

.ctaSection	{
  background: linear-gradient(135deg, #3498db, #2c3e50);
   color: white;
    padding: 4rem 2rem;
   text-align   :center;
}

.ctaContent h2 {
			 font-size: 2.2rem;
  margin-bottom    :  1rem;
}

.ctaContent p {
    margin-left: auto;
  font-size: 1.1rem;
  margin-right: auto;
  margin-bottom: 2rem;
    max-width: 600px;
}

.ctaButton    {
   padding: 15px 30px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #3498db;
	display   :       inline-block;
    background: white;
    font-weight: 600;
}

.ctaButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contactSection {
    padding: 5rem 2rem;
   background: white; 
	
}

.contactContainer {
  max-width: 600px;
  margin: 0 auto;
    text-align: center;
}

.contactContainer h2 {
   font-size     :      2.2rem;
   color: #2c3e50;
   margin-bottom     :    1rem;
}

.contactContainer p {
  margin-bottom: 2rem;
   color: #666;
}

.contactForm {
   display: grid;
   gap: 1.5rem;
                    text-align: left; 

}

.formGroup {
  display: flex;
       flex-direction: column;
}

.formGroup label {

	    margin-bottom: 0.5rem;
    color: #2c3e50;
   font-weight: 500;
     }

.formGroup input,
.formGroup select,
.formGroup textarea {
    padding: 12px;
    -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
   border   : 2px solid #e0e0e0;
  border-radius  :     6px;
   -moz-transition  :border-color 0.3s ease;
   font-size: 1rem;
   -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submitButton {
    background: #3498db;
  color: white;
  padding: 15px;
    border     :  none;
  border-radius  :    6px;
	font-size: 1.1rem;
               font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;


}

.submitButton:hover {
   background: #2980b9;
}

.siteFooter {
    background:     #2c3e50;
   color    :    white;
  padding: 3rem 2rem 1rem;

}

.footerContent {
   max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
}

.footerLogo {
  height:  40px;
   width    :   auto;
  filter: brightness(0) invert(1);
       margin-bottom: 1rem;
}

.footerBrand p {
  color: #bdc3c7;
}

.footerLinks h4,
.footerContact h4 {
     margin-bottom:     1rem;
    color   : #ecf0f1;
}

.footerLinks ul {
   list-style: none;
}

.footerLinks a {
	    color: #bdc3c7;
			text-decoration: none;
   transition: color 0.3s ease;

}  

.footerLinks a:hover {

  color: #3498db; 

     }

.footerContact p {
    color  :      #bdc3c7;
  margin-bottom: 0.5rem;
}

.footerBottom
	{
   padding-top     :      2rem;
   color: #95a5a6;
  text-align: center;
   margin-top: 2rem;
  border-top: 1px solid #34495e;
}@media (max-width: 768px) {
    .mobileMenuToggle {
        display: flex;
    }
    
    .navLinks {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        border-top: 1px solid #e0e0e0;
    }
    
    .navLinks.active {
        display: flex;
    }
    
    .heroSection {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .heroContent h1 {
        font-size: 2rem;
    }
    
    .aboutPreview {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .statsSection {
        justify-content: center;
    }
    
    .heroActions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navContainer {
        padding: 1rem;
    }
    
    .heroSection {
        padding: 2rem 1rem;
    }
    
    .heroContent h1 {
        font-size: 1.8rem;
    }
    
    .featuresGrid,
    .aboutPreview,
    .contactSection {
        padding: 3rem 1rem;
    }
    
    .serviceGrid {
        grid-template-columns: 1fr;
    }
}.activeLink {
    color: #3498db !important;
    font-weight: 600;
}

.aboutHeroSection {
        margin-top: 80px;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin-left :  auto;
       margin-right: auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap   :   3rem;
   align-items: center;
   min-height: 50vh;
}

.aboutHeroContent h1 {
    font-size: 2.8rem;
    color    :        #2c3e50;
   margin-bottom: 1.5rem;
   line-height: 1.2;
}

.aboutHeroSubtitle {
	line-height: 1.6;
      font-size: 1.3rem;
      color: #666;
}

.aboutHeroImage img {

		width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);

}

.companyStorySection {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	}

.storyContainer
{
    max-width: 800px;
    margin: 0 auto;
  text-align: center;
}

.storyContainer h2 {
   font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 3rem;
}

.storyContent p {
    font-size: 1.1rem;
   color: #555;
   margin-bottom: 2rem;
   line-height    :       1.8;
   text-align   :    left;
}

.teamExpertiseSection {

	   padding: 5rem 2rem;
  background: white;}

.expertiseContainer {
  max-width: 1200px;
    margin:       0 auto;
}

.expertiseContainer h2 {
	               text-align: center;
  font-size: 2.3rem;
  color: #2c3e50;
  margin-bottom: 3rem;
     }

.expertiseGrid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.expertiseCard {
   background: #f8f9fa;
	padding: 2.5rem;
  border-radius: 15px;
   text-align: center;
    transition: all 0.3s ease;
  border: 1px solid #e9ecef; 
	
}

.expertiseCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.expertiseCard img {
    width: 100%;
    height: 220px;
       object-fit: cover;
  border-radius: 10px;
                    margin-bottom: 1.8rem;
}

.expertiseCard h3 {
   color: #2c3e50;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.expertiseCard p {
               color: #666;
  line-height: 1.6;
}

.achievementsSection {
   padding    :       5rem 2rem;
      background: #2c3e50;
       color: white;
}

.achievementsContent {
    max-width: 1200px;
   margin: 0 auto;

}

.achievementsContent h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.achievementsGrid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
}

.achievementItem {
  text-align: center;
    padding: 2rem;
}

.achievementNumber {
      display    :      block;
    font-size: 3rem;
  font-weight: bold;
   color: #3498db;
    margin-bottom:    0.5rem;
     }

.achievementLabel {
       display: block;
         font-size   :1.1rem;
  font-weight: 600;
    margin-bottom: 1rem;
     color: #ecf0f1;
	}

.achievementItem p {
	   font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.5;

}

.valuesSection {
	       padding: 5rem 2rem;
   background: white;


	}

.valuesContainer {
    max-width: 1000px;
   margin: 0 auto;
}

.valuesContainer h2 {
  text-align: center;
   font-size: 2.3rem;
   color: #2c3e50;
   margin-bottom :      3rem;
}

.valuesGrid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap:      2rem;
}

.valueItem {
  padding: 2rem;
  background: #f8f9fa;
     border-radius: 12px;
   border-left: 4px solid #3498db;
}

.valueItem h4 {
   color: #2c3e50;
   margin-bottom: 1rem;
        font-size     :        1.2rem;
}

.valueItem p {
    color: #666;
	line-height: 1.6;
}

.missionSection {
  padding  :       5rem 2rem;
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
	
}

.missionContainer

{
   max-width   :  1200px;
    margin: 0 auto;
    display:    grid;
   grid-template-columns     :      1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.missionContent h2 {
         font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 2rem;
}

.missionContent p {
  font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
   margin-bottom: 1.5rem;
}

.missionImage img {
   width: 100%;
  height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	
}

.thankYouHero {
  margin-top  :      80px;
  padding: 4rem 2rem;
       min-height     : 70vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); 
	
}

.thankYouContainer {
  max-width: 1200px;
          margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
	gap: 4rem;
    align-items: center;
}

.thankYouContent h1 {
  font-size: 2.8rem;
  color: #27ae60;
   margin-bottom: 1.5rem;

}

.thankYouSubtitle		{
   font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.confirmationDetails {
  margin-bottom: 3rem;

}

.confirmationDetails h3     {
  font-size:    1.5rem;
    color  :   #2c3e50;
  margin-bottom: 2rem;
}

.nextStepsGrid {
    display: grid;
  gap: 2rem;
}

.stepItem {
 display :     flex;
          align-items: flex-start;
  gap: 1rem;
   padding: 1.5rem;
    background: white;
   border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stepNumber {
	 background    :      #3498db;
    color : white;
    width: 40px;
    height: 40px;
	border-radius: 50%;
    display: flex;
  align-items: center;
   justify-content: center;
	 font-weight: bold;
   flex-shrink: 0;
}

.stepItem h4 {

       color: #2c3e50;
   margin-bottom: 0.5rem;
    font-size: 1.1rem;

     }

.stepItem p {
	  color: #666;
	   line-height:     1.5;
	    font-size: 0.95rem;
}

.additionalInfo {
  margin-bottom: 3rem;
    padding :    2rem;
   background: white;
   border-radius: 10px;
   border-left: 4px solid #3498db;
}

.additionalInfo h3 {
    color: #2c3e50; 
  margin-bottom: 1rem;
}

.additionalInfo p {
   color: #666;
   line-height: 1.6;
}

.thankYouActions {
  display: flex;

	    gap: 1rem;

	  flex-wrap: wrap;
}

.thankYouImage img {
  width: 100%;
	    height     :     auto;
		 border-radius: 15px;
	  box-shadow: 0 20px 40px rgba(0,0,0,0.1);


}

.emergencyContact {
    padding: 3rem 2rem;
    background: #34495e;
    color   : white;
  text-align: center;
}

.emergencyContainer h3 {
  font-size: 1.5rem;
   margin-bottom: 1rem;
  color: #ecf0f1;
}

.emergencyContainer p {
   margin-bottom: 1.5rem;
    color: #bdc3c7;
}

.emergencyDetails .phoneNumber {
    font-size: 1.5rem;
  font-weight: bold;
  color: #3498db;
    margin-bottom: 0.5rem;
}

.emergencyDetails .officeHours {
    color: #95a5a6;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .aboutHeroSection,
    .missionContainer,
    .thankYouContainer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .aboutHeroContent h1,
    .thankYouContent h1 {
        font-size: 2.2rem;
    }
    
    .achievementsGrid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .valuesGrid {
        grid-template-columns: 1fr;
    }
    
    .expertiseGrid {
        grid-template-columns: 1fr;
    }
    
    .nextStepsGrid {
        grid-template-columns: 1fr;
    }
    
    .thankYouActions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .aboutHeroSection,
    .companyStorySection,
    .teamExpertiseSection,
    .achievementsSection,
    .valuesSection,
    .missionSection,
    .thankYouHero {
        padding: 3rem 1rem;
    }
    
    .aboutHeroContent h1,
    .thankYouContent h1 {
        font-size: 2rem;
    }
    
    .storyContainer h2,
    .expertiseContainer h2,
    .achievementsContent h2,
    .valuesContainer h2,
    .missionContent h2 {
        font-size: 2rem;
    }
    
    .stepItem {
        flex-direction: column;
        text-align: center;
    }
    
    .thankYouActions {
        flex-direction: column;
        align-items: center;
    }
}.policySection {
  padding     :        80px 2rem;
   background:#f8f9fa;
}

.policyContainer {
  max-width: 800px;
   margin: 0 auto;
   text-align: left;
}

.policyContainer h2 {
  font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom :    1.5rem;
    font-weight :    700;
}

.policyContainer p {
   color: #7f8c8d;
         margin-bottom: 1.5rem;
  line-height: 1.7;
    font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}