* {
  padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	 line-height: 1.6;
   color: #2c2c2c;
   background  :#fafafa;
}

.mainNav {
  background: #ffffff;
   padding: 1.2rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
                    position: sticky;
    top: 0;
   z-index: 1000;
}

.navWrapper {
  max-width: 1280px;
   margin: 0 auto;
  padding: 0 2rem;
  display: flex;
    justify-content: space-between;
    align-items: center;
}

.brandLogo img 
 {
     height: 48px;
   width: auto;
}

.navLinks {
          display: flex;
     gap  :2.5rem;
}

.navLinks a {
  color: #2c2c2c;
          text-decoration: none;
  font-weight: 500;
   transition: color 0.3s ease;
   font-size: 1.05rem;
}


.navLinks a:hover {
   color: #d4af37;
}

.burgerBtn {
  display: none;
   flex-direction: column;
  gap: 5px;
  background: none;
  border   :   none;
    cursor: pointer;
    padding: 5px;
}

.burgerBtn span {
    width: 28px;
   height: 3px;
    background: #2c2c2c;
  transition: all 0.3s;
	
}

.heroSection {
    max-width: 1280px;
 margin   :3rem auto;
    padding: 4rem 2rem;
	display: grid;
    grid-template-columns: 1fr 1fr;
    gap     :   4rem;
   align-items: center;
}

.heroContent h1

{
    font-size: 3.2rem;
   color: #1a1a1a;
    margin-bottom: 1.5rem;
   line-height: 1.2;

}

.heroContent p {
	font-size: 1.3rem;
  color   :        #555;
    margin-bottom: 2rem;
}

.heroButtons {


    display: flex;
    gap: 1.5rem;

}

.primaryBtn, .secondaryBtn {
    padding: 1rem 2.5rem;
   text-decoration: none;
   border-radius: 6px;
         font-weight: 600;
  transition: all 0.3s;
               display: inline-block;
}

.primaryBtn {
	background :  #d4af37; 
   color: #fff;
}

.primaryBtn:hover {
	    background: #b8941f;
  transform: translateY(-2px);

}

.secondaryBtn 
 {
   background: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
}

.secondaryBtn:hover {
  background: #2c2c2c;

  color: #fff;
}

.heroVisual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.servicesOverview {
	padding: 5rem 2rem;
   background   :     #fff;
}

.sectionContainer {
  max-width: 1280px;
  margin: 0 auto;
}

.sectionContainer h2 {
		 text-align: center;
  font-size: 2.8rem;
	 margin-bottom: 3.5rem;
  color: #1a1a1a;
}

.servicesGrid {
   display:      grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.serviceCard {
   background: #fafafa;
     border-radius: 10px;
      overflow: hidden;
     transition: transform 0.3s;
}

.serviceCard:hover {
  transform: translateY(-8px);
  -ms-transform: translateY(-8px);
}

.serviceImage {
   width: 100%;
   height: 240px;
  overflow: hidden;
}

.serviceImage img {
   width: 100%;
   object-fit  :       cover;
  height: 100%;
}

.serviceCard h3     {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
   color  : #1a1a1a;
}

.serviceCard p {
  padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.7;


}

.whyChooseUs {

	         padding: 5rem 2rem;
	 max-width     :1280px;
   margin: 0 auto;


}

.contentWrapper {
   display: grid; 
  grid-template-columns:     1fr 1fr; 
  gap: 4rem; 
    align-items: center;
}

.textColumn h2 {
  font-size: 2.5rem;
    margin-bottom: 1.5rem;
   color :#1a1a1a;


}

.textColumn p {
  margin-bottom: 1.2rem;
   color: #555;
    font-size: 1.1rem;


}

.benefitsList {
    list-style   :    none;
	margin-top: 2rem;
}

.benefitsList li    {
  padding: 0.8rem 0;
     padding-left     :2rem;
       position: relative;
   					color: #2c2c2c;
}

.benefitsList li:before {
  content: "✓";
	position: absolute;
 left: 0;
    color: #d4af37;
   font-weight: bold;
                    font-size: 1.3rem;
}

.imageColumn img {

    width: 100%;
    border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	}

.ctaSection   {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.ctaContent h2 {
  font-size: 3rem;
   color: #fff;
  margin-bottom: 1rem;
}

.ctaContent p {
    font-size     :1.3rem;
    color: #fff;
    margin-bottom: 2.5rem;
   max-width: 700px;
  margin-left: auto;
               margin-right: auto;
}

.ctaButton {
    display: inline-block;
        padding: 1.2rem 3rem;
    background: #fff;
  color: #d4af37;
       text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
    font-size: 1.1rem;
  transition: all 0.3s;
}

.ctaButton:hover {
	  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);

}

.programsSection {
   padding   :5rem 2rem;
  background    :        #fff;
}

.programsContainer {
   max-width: 1280px;
   margin: 0 auto;
}

.programsContainer h2 {
  text-align    :       center;
    font-size: 2.8rem;
	 margin-bottom: 3.5rem;
   color: #1a1a1a;
}

.programsLayout {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.programBox {


  background: #fafafa;
      border-radius: 10px;
		 border-left: 4px solid #d4af37;
   padding: 2.5rem;
      position :       relative;
	}

.programBox h3 {
    font-size:    1.6rem;
    margin-bottom: 1rem;
   color: #1a1a1a;

}

.programBox p

{
    color: #666;
   line-height: 1.7;
  margin-bottom: 1.5rem;
}

.programDuration {
    display: inline-block;
  padding: 0.5rem 1rem;
  background: #d4af37;
    color    :        #fff;
  border-radius: 4px;
  font-size: 0.9rem;
    font-weight: 600;
}

.contactSection {
  padding :      5rem 2rem;
   background: #f5f5f5;
}

.formContainer {
  max-width: 800px;
  margin:       0 auto;
}

.formContainer h2 {
	text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
     color: #1a1a1a;
}

.formContainer > p {
   text-align: center;
   color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contactForm {
   background   :      #fff;
    padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	}

.formRow {
         display: grid;
         grid-template-columns: 1fr 1fr;
  gap: 2rem;
   margin-bottom: 1.5rem;
}

.inputGroup{
   display: flex;
    flex-direction: column;
}

.inputGroup.fullWidth	{
   margin-bottom: 1.5rem;
}

.inputGroup label	{
   margin-bottom  :        0.5rem;
  color: #2c2c2c;
               font-weight: 500;
}

.inputGroup input,
.inputGroup select,
.inputGroup textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
  font-size  :     1rem;
    font-family: inherit;
  transition: border-color 0.3s;
}

.inputGroup input:focus,
.inputGroup select:focus,
.inputGroup textarea:focus {
    outline:none;
    border-color: #d4af37;

}

.submitBtn {
    width: 100%;
   padding: 1.2rem;
   background: #d4af37;
    color :        #fff;
   border   :none;
    border-radius: 6px;
	font-size: 1.1rem;
	 font-weight: 600;
    cursor: pointer;
   transition: all 0.3s;
}

.submitBtn:hover {
    background: #b8941f;
  transform: translateY(-2px);

}

.siteFooter 
 {
  background: #1a1a1a;
    color: #fff;
   padding: 4rem 2rem 2rem;
}


.footerContent {


	max-width:      1280px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap:        3rem;
   margin-bottom: 3rem;
     }

.footerColumn h4 {
  font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.footerColumn p {
   line-height: 1.8;
          color: #ccc;
}

.footerColumn ul {
   list-style: none;
}

.footerColumn ul li {
    margin-bottom: 0.8rem;
}

.footerColumn ul li a {
    color: #ccc;
    text-decoration: none;
    transition   :     color 0.3s;
}

.footerColumn ul li a:hover
{
   color   : #d4af37;
}

.footerLogo img {
  height: 42px;
  margin-bottom: 1rem;
}

.footerBottom {
   max-width: 1280px;
    margin: 0 auto;
    padding-top  :      2rem;
	border-top: 1px solid #333;
  text-align: center;
  color: #999;
     }@media (max-width: 768px) {
    .burgerBtn {
        display: flex;
    }

    .navLinks {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        display: none;
    }

    .navLinks.active {
        display: flex;
    }

    .heroSection {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .heroContent h1 {
        font-size: 2.2rem;
    }

    .heroButtons {
        flex-direction: column;
    }

    .servicesGrid {
        grid-template-columns: 1fr;
    }

    .contentWrapper {
        grid-template-columns: 1fr;
    }

    .programsLayout {
        grid-template-columns: 1fr;
    }

    .formRow {
        grid-template-columns: 1fr;
    }

    .footerContent {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}.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 {
    font-size: 1.1rem;

	margin-bottom :   1.5rem;

   line-height: 1.7;

    color: #7f8c8d;


}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.aboutHero {


  background: linear-gradient(to right, #1a1a1a 0%, #2c2c2c 100%);
       padding: 6rem 2rem;
       text-align: center;
             color: #fff;}

.aboutHeroContent h1 {
    font-size     : 3.5rem;
  margin-bottom: 1.5rem;
  color: #d4af37;
}

.aboutHeroContent p {
  font-size: 1.4rem;
    max-width: 800px;
   margin: 0 auto;
   line-height: 1.8;
}

.storySection {
	  padding: 5rem 2rem;
    max-width   : 1280px;
  margin: 0 auto;
     }

.storyContainer {
  display: grid;
   grid-template-columns: 1.2fr 1fr;
   gap   :   4rem;
  align-items: center; 
	
}

.storyText h2 {
   font-size: 2.8rem;
   margin-bottom: 2rem;
    color: #1a1a1a;
}

.storyText p{
		margin-bottom: 1.5rem;
  line-height: 1.8;
    color    :   #555;
  font-size: 1.1rem;


}

.storyImage img {

	  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.valuesSection	{
  background: #f8f8f8;

	    padding :      5rem 2rem;
}

.valuesWrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.valuesWrapper h2 {
   text-align: center;
   font-size: 2.8rem;
   margin-bottom: 3.5rem;
   color:     #1a1a1a;
}

.valuesGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 2.5rem;
}

.valueCard {
	   background: #fff;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
     }

.valueCard h3 {
  font-size     :    1.6rem;
   margin-bottom: 1rem;
    color     :       #d4af37;
}

.valueCard p {
    color: #666;
  line-height: 1.7;
}

.approachSection {
	padding: 5rem 2rem;
   max-width: 1280px;
   margin   :  0 auto;
}

.approachContent h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
  color: #1a1a1a;
}

.approachLayout {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
					gap: 3rem;

}

.approachItem {
    position     :relative;
   padding-left: 5rem;
}

.stepNumber  {
  position: absolute;
         left  :0;
    top: 0;
         font-size: 3rem;
    font-weight: bold;
    color: #d4af37;
  opacity: 0.3;
}

.approachItem h3 {
   font-size: 1.6rem;
      margin-bottom: 1rem;
      color: #1a1a1a;
}

.approachItem p {
    line-height: 1.7;
  color: #666;
}

.experienceSection {
   background: #fff;
   padding: 5rem 2rem;
}

.experienceWrapper {
    max-width: 1280px;
    margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1.2fr;
      gap: 4rem;
	 align-items: center;
} 

.experienceImage img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.experienceText h2 {
   font-size: 2.5rem;
   margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.experienceText p {
  margin-bottom: 1.5rem;
	line-height: 1.8;
    color:        #555;
	 font-size: 1.1rem;
}

.statsRow {
   display: flex;
   gap: 3rem;
  margin-top: 3rem;
}

.statItem {
    display: flex;
  flex-direction: column;
}

.statNumber {
          font-size: 2.5rem;
    font-weight: bold;
   color  :    #d4af37;
    line-height: 1;
}



.statLabel  {
    margin-top     :  0.5rem;
	 color: #666;
   font-size :  0.95rem;
}

.whoWeWorkSection {
  padding: 5rem 2rem;
  background: #f8f8f8;
}

.whoWeWorkContainer {
  max-width :     1280px;
    margin    :  0 auto;
}

.whoWeWorkContainer h2 {
  color: #1a1a1a;
    font-size: 2.8rem;
	margin-bottom: 1.5rem;
   text-align: center;
}

.sectionIntro {
   text-align: center;
   font-size: 1.2rem;
   color: #666;
    max-width: 700px;
  margin: 0 auto 3.5rem;
}

.industriesGrid {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
	 gap: 2rem; 

}

.industryBox {
               background: #fff;
  padding: 2rem;
   border-radius:  10px;
   border-top: 3px solid #d4af37;
}

.industryBox h4 {
   font-size     :   1.3rem;
        margin-bottom: 0.8rem;
  color :  #1a1a1a;
}

.industryBox p {
  color:   #666;
                    line-height: 1.6;
   font-size: 0.95rem;
}

.ctaBanner {


  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
   padding: 5rem 2rem;
   text-align: center;
	}

.ctaBannerContent h2 {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.ctaBannerContent p {
  font-size: 1.3rem;
   color: #ccc;
  margin-bottom: 2.5rem;
}  

.bannerButton {
   display: inline-block;
    padding: 1.2rem 3rem;
   background: #d4af37;
   color: #fff;
        text-decoration: none;
	border-radius: 6px;
     font-weight: 700;
  font-size: 1.1rem;
    transition    :   all 0.3s;
}

.bannerButton:hover {
   background: #b8941f;
  transform: scale(1.05); 
	
}

.thankyouSection     {
  padding: 5rem 2rem;
    min-height: 60vh; 
	
}

.thankyouContainer {
    max-width: 1280px;
	margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.thankyouCard
{
		background: #fff;

	   padding: 3rem;

	  border-radius   :       12px;

	  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.successIcon {


   text-align     :        center;
   margin-bottom:2rem;}

.thankyouCard h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
  margin-bottom: 1.5rem;
    text-align: center;
}

.mainMessage {
   	 font-size: 1.2rem;
	color: #555;
  text-align    :  center;
    line-height: 1.8;
      margin-bottom:    2.5rem;

}

.infoBox {
	 margin-bottom: 2.5rem;
   background: #f8f8f8;
   padding: 2rem;
	 border-radius: 8px;
}

.infoBox h3 {
	font-size: 1.4rem; 
	  color: #1a1a1a; 
	  margin-bottom: 1rem;
} 

.nextSteps {
  list-style: none;
    padding-left: 0;
}

.nextSteps li {
  padding: 0.8rem 0;
  padding-left: 2rem;
    position: relative;
    color: #555;
  line-height: 1.6;
}

.nextSteps li:before {


  content: "→";

  position: absolute;

   left: 0;

   color:     #d4af37;

                    font-weight: bold;

}

.actionButtons {
  display: flex;
      gap: 1.5rem;
  margin-bottom: 2rem;
}

.primaryActionBtn, .secondaryActionBtn {
  flex: 1;
        padding: 1rem;
  text-align: center;
   text-decoration :        none;
	border-radius   :   6px;
    font-weight: 600;
    transition: all 0.3s;
}

.primaryActionBtn  
  {
    color:      #fff;
  background: #d4af37;
}

.primaryActionBtn:hover {
    background: #b8941f;
}

.secondaryActionBtn {
          background    :       transparent;
  color: #2c2c2c;
   border     : 2px solid #2c2c2c;
}  

.secondaryActionBtn:hover {
   background: #2c2c2c;
   color: #fff;
}

.additionalInfo {
        text-align: center;
    color    :      #999;
  font-size: 0.95rem;
}

.thankyouImage {
                    position: sticky;
   top :       100px;
}

.thankyouImage img {

   width: 100%;
    border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	}

.quickLinks {
    padding    :4rem 2rem;
  background: #f8f8f8;
}

.quickLinksWrapper {
    max-width: 1280px;
   margin: 0 auto;
}

.quickLinksWrapper h2{

	    font-size: 2.5rem;
		margin-bottom: 3rem;
   text-align: center;
    color: #1a1a1a;}

.linksGrid {
        display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;

}

.linkCard {
   background: #fff;
  padding :   2rem;
   border-radius: 10px;
  text-decoration: none;
    transition: all 0.3s;
    border-top   :  3px solid #d4af37;
}

.linkCard:hover {
	  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
     }

.linkCard h4 {
	font-size:        1.4rem;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}

.linkCard p  {
	color: #666;
  line-height: 1.6;
}@media (max-width: 768px) {
    .aboutHeroContent h1 {
        font-size: 2.5rem;
    }

    .storyContainer {
        grid-template-columns: 1fr;
    }

    .valuesGrid {
        grid-template-columns: 1fr;
    }

    .approachLayout {
        grid-template-columns: 1fr;
    }

    .experienceWrapper {
        grid-template-columns: 1fr;
    }

    .statsRow {
        flex-direction: column;
        gap: 1.5rem;
    }

    .industriesGrid {
        grid-template-columns: 1fr;
    }

    .thankyouContainer {
        grid-template-columns: 1fr;
    }

    .actionButtons {
        flex-direction: column;
    }

    .linksGrid {
        grid-template-columns: 1fr;
    }
}