* {
  box-sizing:    border-box;
   padding: 0;
    margin   : 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
  color: #2c3e50;
          background: #ffffff;
	
}

img {
	   max-width: 100%;
  height: auto;
  display:     block;
     }

a
	{
	    text-decoration    :    none;
   color: inherit;
     }

ul {
  list-style     :none;
}

.topBar {
   background: #1a2332;
   padding: 1.2rem 0;
   position  :    sticky;
	top: 0;
    z-index  : 1000;
   transition: all 0.3s ease;
}

.topBar.scrolled {
	 padding: 0.8rem 0;

  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.navWrap {
  max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
   display: flex;
    justify-content: space-between;
  align-items: center; 
	
}

.brandSection {
	display: flex;
    align-items: center;
}

.siteLogo {
	    height: 45px;
  filter: brightness(0) invert(1);}

.navLinks {
       display: flex;
    gap: 35px;
}

.linkItem {
   color: #ecf0f1;
   font-size: 16px;
    font-weight: 500;
	transition: color 0.3s;
  position: relative;
}


.linkItem:hover {
    color: #3498db;
}

.linkItem::after   {
  content: "";
    position     :absolute;
	 bottom: -5px;
     left: 0;
    width: 0;
    height: 2px;
          background: #3498db;
	 transition: width 0.3s ease;
}

.linkItem:hover::after {
      width: 100%;
}

.menuToggler {
  display: none;
    flex-direction: column;
   gap     :   5px;
  background: none;
    border: none;
  cursor: pointer;
  padding: 8px;
}

.lineBar {
   width: 28px;
        height: 3px;
  background: #ecf0f1;
  transition: all 0.3s ease;
}

.menuToggler.active .lineBar:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menuToggler.active .lineBar:nth-child(2) {
   opacity: 0;
}

.menuToggler.active .lineBar:nth-child(3) {
	  transform: rotate(-45deg) translate(7px, -7px);


}

.heroBlock {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding    :     80px 20px;
   display: flex;
 align-items: center;
    min-height:  600px;
}

.heroBlock > * {
   max-width: 1200px;
  margin: 0 auto;
  width: 100%;
   display: flex;
    gap: 60px;
  align-items: center;
}

.heroContent {
   color    :  #ffffff;
   -ms-flex: 1;
   flex: 1;
}

.mainHeading    {
    font-size: 48px;

  font-weight: 700;

    margin-bottom: 25px;

   line-height: 1.2;
}

.heroText {
  font-size: 19px;
    margin-bottom  :   35px;
         opacity: 0.95;
		 line-height: 1.7;
}

.ctaButton  
  {

         display :    inline-block;
  background: #f39c12;
    color: white;
   padding: 16px 38px;
  border-radius     :     6px;
    font-size  :     17px;
    font-weight :      600;
   transition: all 0.3s;
        border: 2px solid #f39c12;


}

.ctaButton:hover {
       background: #e67e22;
  border-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}

.heroVisual {
  flex: 1;
}

.heroImg {
   border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.aboutSection,
.servicesBlock,
.workspaceSection,
.benefitsSection,
.gallerySection,
.contactSection
{
    padding: 85px 20px;
}

.sectionWrap {

	  max-width: 1200px;
                    margin: 0 auto;

}

.sectionTitle 
 {
  font-size  : 38px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
    color: #2c3e50;
}

.aboutGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 50px;
  align-items: center;
}

.aboutPara {
  margin-bottom: 22px;
  font-size: 17px;
    line-height:  1.8;
   color: #34495e;

}

.contentImg {

		border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
	}

.servicesGrid {
	display: grid;
   gap: 35px;
  grid-template-columns: repeat(3, 1fr);
}

.serviceCard {
  background: #f8f9fa;
    padding: 40px 30px;
	 border-radius: 10px;
    transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.serviceCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
   border-color: #3498db;
}

.serviceHeading {
          font-size: 24px;
   font-weight :     600;
    margin-bottom: 18px;
   color: #2c3e50;
}

.serviceDesc {
  color: #5a6c7d;
    line-height:        1.7;
 font-size: 16px; 

}  

.workspaceGrid {
   display:  grid;
    grid-template-columns: 1fr 1fr;
	 gap: 55px;
  align-items     :     center;
}

.workspaceSteps {
   display: flex;
    flex-direction: column;
    gap: 30px;
}

.stepItem {

	  background: #ecf0f1;
   border-left: 4px solid #3498db;
  border-radius: 8px;
   padding: 25px;}

.stepTitle {
   font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
     color: #2c3e50;
}

.stepText {
   font-size: 16px;

	    line-height: 1.7;

	   color: #5a6c7d;
}



.ctaSection {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); 
	  padding : 90px 20px; 
	  text-align :      center;
}

.ctaWrap {
    max-width: 900px;
   margin :   0 auto;
}

.ctaHeading {
	   font-size: 42px;
   font-weight: 700;
    margin-bottom: 25px;
	 color :       #ffffff;}

.ctaText {
  font-size: 19px;
   margin-bottom: 40px;
    color: #ffffff;
  opacity:       0.95;
                    line-height: 1.7;
}

.ctaButton.large {
      font-size: 19px;
  padding     :     18px 45px;
}

.benefitsGrid {
  grid-template-columns: repeat(3, 1fr);
    display: grid;
   gap: 40px;
}


.benefitBox {
   text-align: center;
   padding: 35px 25px;
}

.benefitTitle {
    font-size: 24px;
       font-weight: 600;
   margin-bottom: 18px;
  color: #2c3e50;
}

.benefitText {
  font-size  :       16px;
   line-height   :        1.7;
    color: #5a6c7d;
}

.galleryGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap :       40px;
}

.galleryItem {
    position: relative;
  overflow  :   hidden;
  border-radius: 10px;
}

.galleryImg {
    transition: transform 0.3s ease;
}

.galleryItem:hover .galleryImg {
  transform: scale(1.05);
}

.galleryCaption {
  text-align: center;
   margin-top: 15px;
  font-size     :      16px;
   color: #5a6c7d;
}

.contactSection {
  background: #f8f9fa;
}

.contactGrid {
   display: grid;
   grid-template-columns: 1fr 1.5fr;
  gap: 60px;


}

.infoHeading {
       font-size: 28px;
    font-weight    :   600;
   margin-bottom: 20px;
   color :     #2c3e50;
}

.infoText {

	  font-size: 17px;
   line-height: 1.7;
  margin-bottom: 30px;
  color: #5a6c7d;
}

.contactDetails {
    display: flex;
    flex-direction: column;
  gap: 15px;
}

.detailItem {
   color     :    #34495e;
   font-size: 16px;
}

.formContainer


{
   background: #ffffff;
    padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.formGroup {
   margin-bottom: 25px; 
	
}

.formLabel {
    display: block;
   margin-bottom: 8px;
   font-size:        15px;
   font-weight: 500;
	color: #2c3e50;
}

.formInput {
  width: 100%;
   padding: 13px 16px;
   border: 1.5px solid #dfe6e9;
  border-radius: 6px;
               font-size: 15px;
        font-family: inherit;
  transition: border-color 0.3s;
}

.formInput:focus {
    outline: none;
  border-color: #3498db;
}

.textArea   {
   resize: vertical;
	min-height: 120px;
}

.submitBtn {
    width: 100%;
          background: #3498db;
   color   : white;
    padding: 15px;
    border: none;
          border-radius: 6px;
    font-size: 17px;
  font-weight: 600;
  cursor: pointer;
          transition: all 0.3s;
}

.submitBtn:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(52, 152, 219, 0.3);
}

.siteFooter {
  background: #1a2332;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

.footerWrap {
   max-width: 1200px;
    margin :       0 auto;
}

.footerGrid     {
   display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap   :       40px;
   margin-bottom: 40px;
}

.footerLogo {

	 height  :   40px;
	 margin-bottom: 20px;
  filter: brightness(0) invert(1);
	}

.footerDesc {
   font-size: 15px;
  line-height   :        1.7;
   color: #bdc3c7;
}

.footerHeading {
    font-size :18px;
   font-weight   :  600;
          margin-bottom: 20px;
  color: #ffffff; 
	
}

.footerLinks {
   display: flex;
  flex-direction: column;
    gap: 12px;
}

.footerLink {
    font-size: 15px;
    color: #bdc3c7;
  transition: color 0.3s;
}

.footerLink:hover {
    color: #3498db;
}

.footerContact {

	  font-size: 15px;
   margin-bottom: 10px;
      color: #bdc3c7;
     }

.footerBottom {
   padding-top: 30px; 
  border-top: 1px solid rgba(255,255,255,0.1); 
     text-align: center; 

}

.copyrightText {
               font-size:  14px;
    color: #95a5a6;
}
@media (max-width: 992px) {
    .heroBlock > * {
        flex-direction: column;
        gap: 40px;
    }

    .mainHeading {
        font-size: 38px;
    }

    .aboutGrid,
    .workspaceGrid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .servicesGrid,
    .benefitsGrid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contactGrid {
        grid-template-columns: 1fr;
    }

    .footerGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menuToggler {
        display: flex;
    }

    .navLinks {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a2332;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        display: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .navLinks.active {
        display: flex;
    }

    .heroBlock {
        padding: 60px 20px;
        min-height: auto;
    }

    .mainHeading {
        font-size: 32px;
    }

    .heroText {
        font-size: 17px;
    }

    .sectionTitle {
        font-size: 30px;
    }

    .ctaHeading {
        font-size: 32px;
    }

    .galleryGrid {
        grid-template-columns: 1fr;
    }

    .footerGrid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}.policySection {
    background: #f8f9fa;

	  padding: 80px 2rem;
}

.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;
    }
}.aboutHero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 100px 20px 80px;
  text-align: center;
}

.aboutHeroContent {
     max-width: 900px;
	 margin: 0 auto;
}

.aboutMainTitle {

	   font-size: 52px;
  font-weight: 700;
   color: #ffffff;
   margin-bottom: 25px;
}

.aboutHeroText {
	 font-size: 20px;
   color: #ffffff;
  opacity: 0.95;
  line-height: 1.7;
}

.storySection		{
	   padding: 90px 20px;}

.storyLayout
	{
   display  :        grid;
       grid-template-columns: 1fr 1fr;
       gap     :  60px;
     align-items: center;
}

.storyPic {
   border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.storyHeading {
    font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2c3e50;
}  

.storyParagraph {
    margin-bottom: 20px; 
    font-size: 17px; 
   line-height: 1.8; 
   color: #5a6c7d;
}

.missionSection {
  background: #f8f9fa;

	  padding     :        90px 20px;
}

.missionGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
     gap: 40px;
}



.missionCard {
    background: white;
    padding: 45px 35px;
  border-radius: 10px;
    text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	transition: transform 0.3s ease;
} 

.missionCard:hover {
  transform: translateY(-8px);
}

.missionTitle {
    font-size: 26px;
   font-weight: 600;
   margin-bottom     :   18px;
    color: #2c3e50;
}

.missionText {
   font-size: 16px;
  line-height    :        1.7;
    color    :    #5a6c7d;


}

.valuesSection {
  padding: 90px 20px;
}

.valuesList {
   max-width: 1000px;
    margin: 0 auto;
}

.valueItem {
  -o-transition: all 0.3s ease;
	display: flex;
               -webkit-transition: all 0.3s ease;
    gap: 30px;
        margin-bottom: 45px;
               padding: 35px;
   background: #f8f9fa;
    border-radius: 10px;
    transition    : all 0.3s ease;
}

.valueItem:hover
	{
  background: #ecf0f1;
  -moz-transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}

.valueNumber {
   	font-size: 48px;
	    font-weight: 700;
	  color     :      #3498db;
	      line-height :1;
		min-width: 80px;
     }

.valueTitle {
    font-size:24px;
  font-weight: 600;
   margin-bottom: 12px;
   color: #2c3e50;
}

.valueDesc {
    font-size     :        16px;
   line-height: 1.7;
   color: #5a6c7d;


}

.approachSection {
   background    :       #ecf0f1;
   padding: 90px 20px;
}

.approachLayout {
  display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items: center;
}

.approachHeading {
   font-size: 36px;
  font-weight: 700;
   margin-bottom: 30px;
   color: #2c3e50; 
	
}

.approachText   {
    margin-bottom: 20px;
   font-size: 17px;
    line-height   :     1.8;
    color   : #5a6c7d;


}

.approachPic     {
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.experienceSection {

   padding: 90px 20px;
}

.experienceGrid {
  display: grid;

	  grid-template-columns: repeat(3, 1fr);

	  gap: 40px;
}

.experienceBox {
	  text-align: center;
   padding: 40px 25px;


}

.experienceIcon {
    display: flex;
  margin-bottom: 25px;
    justify-content:   center;
}

.iconCircle {
  width: 80px;
   height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 50%;
}

.experienceTitle {
  font-size: 22px;
  font-weight: 600;
    margin-bottom: 15px;
   color: #2c3e50;
}

.experienceText {
	 font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.whyUsSection {

	   background: #f8f9fa;
   padding: 90px 20px;


}

.whyUsContent {
      display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap :       40px;
   max-width: 1000px;
  margin   : 0 auto;
}

.whyUsItem {
  padding: 30px;
   background: white;
  border-radius: 8px;
  border-left:      4px solid #3498db;
}

.whyUsHeading {
    font-size: 22px;
  font-weight: 600;
    margin-bottom     : 15px;
        color: #2c3e50;}

.whyUsText {
  font-size: 16px;
    line-height: 1.7;
	color: #5a6c7d;
	
}

.ctaBanner {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 90px 20px;
     text-align: center;
}

.ctaBannerWrap {
    max-width: 900px;
    margin: 0 auto;
}

.ctaBannerTitle {
    font-size: 42px;
 font-weight: 700;
   color  :white;
    margin-bottom: 25px;
}

.ctaBannerText {
  font-size: 19px;
   color: white;
   opacity: 0.95;
      margin-bottom: 40px;
        line-height:   1.7;
}

.thankyouHero {
   padding: 100px 20px 90px;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.thankyouContainer {
 max-width: 1200px;
  margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  gap: 60px;
   align-items    :  center;
}

.thankyouContent {
	text-align: center;
}

.checkmarkWrapper {
  margin-bottom   :    35px;
     display: flex;
    justify-content: center; 

}

.checkmarkCircle {
   width: 120px;
    height: 120px;
    background: #27ae60;
  border-radius: 50%;
          display: flex;
  align-items   :       center;
  justify-content: center;
   animation: scaleIn 0.5s ease;
}@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}.checkmarkIcon {
      width: 50px;
  height: 30px;
   border-left: 6px solid white;
  border-bottom: 6px solid white;
  transform: rotate(-45deg);
    margin-top: -10px;
	}

.thankyouTitle {
	    font-size: 48px;
  font-weight   :   700;
  color: #2c3e50;
    margin-bottom: 25px;
     }

.thankyouMessage {
   font-size: 19px;
    color: #5a6c7d;
  margin-bottom: 50px;
	 line-height: 1.7;
}

.thankyouInfo {
   background: white;
    padding: 40px;
  border-radius: 12px;
        margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08); 

}

.infoTitle {
       font-size: 28px;
	 font-weight: 600;
	 margin-bottom: 30px;
    color: #2c3e50;


}

.stepsContainer {
    display: flex;
  gap: 25px;
  justify-content: space-between;
}

.stepBox {
	flex: 1;
   text-align: center;
}

.stepNumber {
   width    :  50px;
    height: 50px;
         background :   #3498db;
  color: white;
  border-radius: 50%;
    display: flex;
  align-items: center;
    justify-content: center;
   font-size: 24px;
	font-weight: 700;
    margin: 0 auto 15px;
}

.stepDescription {
    font-size: 15px;
    color: #5a6c7d;
	line-height: 1.6;
}

.thankyouActions {
					display: flex;
    gap: 20px;
   justify-content: center;
}

.primaryBtn {
  display: inline-block;
    background: #3498db;
  color: white;
	 padding: 16px 35px;
    border-radius  :6px;
	font-size: 17px;
   font-weight: 600;
               transition: all 0.3s ease;}

.primaryBtn:hover     {
    background    :  #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.secondaryBtn {
		display: inline-block;
   background: transparent;
  color: #2c3e50;
    padding: 16px 35px;
   border-radius: 6px;
    font-size: 17px;
   font-weight: 600;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease;
}

.secondaryBtn:hover {
   background: #2c3e50;
  color: white;
  transform: translateY(-2px);
}

.thankyouVisual    {
     display   :        flex;
  align-items: center;
}

.thankyouImage {
     border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);}

.whileYouWait    {
	 padding: 90px 20px;
   background :      #f8f9fa;
}

.waitIntro {
   text-align: center;
    font-size: 18px;
  color: #5a6c7d;
   margin-bottom: 50px;
  max-width: 800px;
    margin-left: auto;
  margin-right: auto;
}

.waitGrid {

	   display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 35px;

}


.waitCard {
    background: white;
    border-radius: 10px;
	overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
		transition: transform 0.3s ease;
}

.waitCard:hover {
  transform: translateY(-8px);
}

.waitImage {
    width: 100%;
   height: 220px;
   object-fit :   cover; 

}

.waitCardTitle {
	font-size: 22px;
     font-weight: 600;
   margin: 25px 25px 15px;
    color    :  #2c3e50;
}

.waitCardText {
   margin: 0 25px 25px;
  font-size: 16px;
    line-height: 1.7;
  color: #5a6c7d;
}

.contactInfo {
  padding: 80px 20px;
  background  :       white;
}

.contactInfoWrap {
    max-width: 800px;
   	margin: 0 auto;
   	 text-align: center;
}

.contactInfoTitle {
    font-size: 36px;
    font-weight: 700;
   color: #2c3e50;
  margin-bottom: 20px;
}

.contactInfoText {
    font-size: 18px;
    color: #5a6c7d;
   margin-bottom: 45px;
}

.contactInfoDetails {
   display: flex;
    gap: 50px;
   justify-content: center;
}

.infoBlock {
  padding: 30px 40px;
	background: #f8f9fa;
	 border-radius: 8px;
}

.infoBlockTitle {


   font-size: 20px;
    font-weight: 600;
   margin-bottom: 12px;
  color: #2c3e50;
     }

.infoBlockText {
  font-size: 17px;
  color: #5a6c7d;
}@media (max-width: 992px) {
    .aboutMainTitle {
        font-size: 42px;
    }

    .storyLayout,
    .approachLayout,
    .thankyouContainer {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .missionGrid,
    .experienceGrid,
    .waitGrid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whyUsContent {
        grid-template-columns: 1fr;
    }

    .stepsContainer {
        flex-direction: column;
        gap: 30px;
    }

    .contactInfoDetails {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .aboutHero {
        padding: 80px 20px 60px;
    }

    .aboutMainTitle {
        font-size: 36px;
    }

    .thankyouTitle {
        font-size: 36px;
    }

    .ctaBannerTitle {
        font-size: 32px;
    }

    .thankyouActions {
        flex-direction: column;
    }

    .primaryBtn,
    .secondaryBtn {
        width: 100%;
        text-align: center;
    }

    .valueItem {
        flex-direction: column;
        gap: 20px;
    }

    .valueNumber {
        text-align: center;
    }
}