* {
   margin: 0;
          padding: 0;
  box-sizing: border-box;
}

body
	{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
	 color: #2c3e50;
  background     :   #ffffff;
}

.main-navigation {
  background: #1a252f;
    padding: 1rem 0;
               position: sticky;
  top: 0;
	z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
	       max-width: 1400px;
    margin: 0 auto;
   padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
	}

.brand-section .logo-link {
    display: block;}

.brand-logo {
         height: 45px;
		width: auto;
}

.primary-nav {
	 display: flex;
    gap : 2.5rem;
}

.nav-item {
    color: #ecf0f1;
    text-decoration: none;
    font-size :  1.05rem;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-item:hover, .nav-item.active{
    color: #3498db;
}

.menu-toggle {
		display: none;
               background: none;
   border: none;
  cursor: pointer;
    flex-direction: column;
  gap: 5px;
     }


.burger-line {
    width: 25px;
    height: 3px;
	 background: #ecf0f1;
  transition: 0.3s;
	
}@media (max-width: 768px) {
.menu-toggle {
display: flex;
}

.primary-nav {
position: fixed;
top: 70px;
right: -100%;
background: #1a252f;
flex-direction: column;
width: 70%;
max-width: 300px;
padding: 2rem;
transition: right 0.3s;
box-shadow: -2px 0 10px rgba(0,0,0,0.2);
height: calc(100vh - 70px);
gap: 1.5rem;
}

.primary-nav.active {
right: 0;
}

.menu-toggle.active .burger-line:nth-child(1) {
transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active .burger-line:nth-child(2) {
opacity: 0;
}

.menu-toggle.active .burger-line:nth-child(3) {
transform: rotate(-45deg) translate(7px, -7px);
}
}.hero-presentation {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          padding: 5rem 2rem;
  color :      white;

}

.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
                    display: grid;
    grid-template-columns:       1fr 1fr;
    gap   : 4rem;
	align-items     :center; 
	
}



.text-column h1 
 {
    font-size: 3rem;
  margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lead-description {
  font-size: 1.2rem;
 margin-bottom: 2rem;
    line-height: 1.8;
   opacity: 0.95;
}

.action-buttons {
  display: flex;
   gap: 1rem;
    flex-wrap: wrap;
}

.primary-button, .secondary-button {
	    padding :        0.9rem 2rem;
  text-decoration: none;
	 border-radius: 5px;
	font-weight:    600;
   transition: all 0.3s;
  display     :inline-block;
	}

.primary-button {
    background: #ffffff;
  color: #667eea;
}

.primary-button:hover {

	    background     :#f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
	
     }

.secondary-button {
    border: 2px solid white;
   background: transparent;
    color: white;
}

.secondary-button:hover {
  background: rgba(255,255,255,0.1);
}

.visual-column .hero-visual
{
  width: 100%;
		border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}@media (max-width: 968px) {
.hero-content-wrapper {
grid-template-columns: 1fr;
gap: 2rem;
}

.text-column h1 {
font-size: 2.2rem;
}
}.services-showcase {
  padding: 5rem 2rem; 
   background: #f8f9fa; 

}

.section-container {
    margin: 0 auto; 
	    max-width: 1400px;
}

.section-heading {


     font-size: 2.5rem;
    text-align: center;
	margin-bottom: 1rem;
        color: #1a252f;}

.section-intro {
   text-align: center;
    max-width: 800px;
    color: #546e7a;
      margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.services-grid {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
     }

.service-card   {
    background: white;
 padding: 2rem;
   border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {

  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}  

.service-card h3 {
         color: #667eea;

  margin-bottom: 1rem;

    font-size: 1.4rem;
}

.service-card p


{
   color:     #546e7a;
    line-height: 1.7;


}

.approach-methodology {
      padding: 5rem 2rem;
   background: white;
}

.content-layout {
  max-width: 1400px;
   margin: 0 auto;
  display: grid;
		grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items: center;
}

.methodology-image {
    width: 100%;
   border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.text-side h2		{
     font-size: 2.3rem;
    color: #1a252f;
  margin-bottom: 1.5rem;
}

.text-side > p {
   font-size: 1.1rem;
   color: #546e7a;
   margin-bottom: 2rem;
  line-height: 1.8;
}

.methodology-steps {
    display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
	border-left: 4px solid #667eea;
  padding-left: 1.5rem;
}

.step-item h4 {
          color    :#1a252f;
   font-size: 1.2rem;
	margin-bottom: 0.5rem;
} 

.step-item p {
  color: #546e7a;
   line-height: 1.7;


}@media (max-width: 968px) {
.content-layout {
grid-template-columns: 1fr;
}
}.testimonials-section {
    padding: 5rem 2rem;

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	  color: white;


}

.testimonials-wrapper


{
   max-width:   1400px;
  margin: 0 auto;
}

.testimonials-title {
       font-size: 2.5rem;
   text-align: center;
	margin-bottom: 3rem;
}

.testimonials-container {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-box {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
   border-radius: 8px;
  backdrop-filter: blur(10px);
}

.testimonial-text {
   font-style: italic;
   font-size: 1.05rem;
	margin-bottom: 1.5rem;
   line-height: 1.7;
}

.client-name   {
  font-weight: 600;
   font-size: 1.1rem; 
	
	}

.cta-section {

  padding: 5rem 2rem;
 background: #1a252f;
   text-align: center;
      color: white; 

     }

.cta-content {
  max-width: 900px;
	 margin: 0 auto;
}

.cta-content h2 {
          font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p

{
	font-size: 1.2rem;
    margin-bottom: 2rem;
  line-height: 1.8;
  opacity: 0.9;
}

.cta-button {
   background: #667eea;

		 border-radius: 5px;

	   transition: all 0.3s;

	  padding: 1rem 2.5rem;

	  color: white;

	   text-decoration: none;

	   font-weight: 600;

	  font-size  :      1.1rem;

	    display: inline-block;
}

.cta-button:hover {
   background: #5568d3;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(102,126,234,0.4);
}

.expertise-areas {
  padding: 5rem 2rem;
    background: #f8f9fa;
}

.expertise-container {
  max-width: 1400px;
  margin: 0 auto;
}

.expertise-container h2 {
  font-size: 2.5rem;
	text-align: center;
    margin-bottom: 3rem;
  color: #1a252f;
}

.expertise-grid {
    display     :       grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.expertise-item  {
  background     :   white; 
	    border-radius: 8px; 
	  overflow: hidden; 
	  box-shadow: 0 3px 15px rgba(0,0,0,0.1); 
	    transition: transform 0.3s;
	}

.expertise-item:hover {
  transform: translateY(-5px);
}

.expertise-photo {
    width: 100%;
                    height: 250px;
  object-fit    :  cover;
}

.expertise-item h3 {
     padding: 1.5rem 1.5rem 0.5rem;

	  color: #1a252f;

	  font-size: 1.5rem;
}

.expertise-item p 
 {
    padding: 0 1.5rem 1.5rem;
   color :   #546e7a;
  line-height   :   1.7;
}



.contact-section {
  padding: 5rem 2rem;
   background: white; 
	
}

.contact-wrapper {
    grid-template-columns   :     1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
  display: grid;
   margin: 0 auto;
}

.contact-info h2 {
  font-size: 2.3rem;
   color     : #1a252f;
    margin-bottom: 1rem;
}

.contact-info > p {
    color : #546e7a;
	font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.info-blocks {
          display: flex;
   flex-direction: column;
	 gap: 1.5rem;
}

.info-block h4 {
    color: #667eea;
  margin-bottom   :        0.5rem;
   font-size: 1.2rem;
}

.info-block p {

	   color: #546e7a;
  line-height: 1.6;
	}

.inquiry-form {
   background: #f8f9fa;
  padding    :   2.5rem;
  border-radius: 8px;
}

.form-group {
         margin-bottom     : 1.5rem;
}  

.form-group label {
   font-weight: 500;
		 color: #1a252f;
	margin-bottom: 0.5rem;
    display: block;
}

.form-group input, .form-group select, .form-group textarea {
	    border-radius: 5px;
  width: 100%;
   border: 1px solid #dce0e3;
	transition: border-color 0.3s;
  font-family: inherit;
  padding:0.8rem;
   font-size: 1rem;
	}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline  :none;
   border-color: #667eea;
}

.submit-btn {
  border: none;
  font-size: 1.1rem;
  transition  :  all 0.3s;
    background: #667eea;
      cursor: pointer;
    color: white;
  border-radius: 5px;
         padding: 1rem 3rem;
    font-weight: 600;
}

.submit-btn:hover {
   background     :      #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102,126,234,0.3);
}@media (max-width: 968px) {
.contact-wrapper {
grid-template-columns: 1fr;
gap: 2rem;
}
}.site-footer {
  background: #1a252f;

   color: #ecf0f1;

  padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
     margin: 0 auto;
	 display: grid;
    grid-template-columns: 2fr 1fr 1fr;
   gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
   height: 40px;
    margin-bottom: 1rem;
}

.footer-description {
   color: #bdc3c7;
  line-height: 1.7;
   font-size:  0.95rem;
}

.footer-column h4 {
	 color :     #3498db;
  margin-bottom: 1rem;
   font-size: 1.2rem;


}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem; 
	
}

.footer-links a {
		color: #bdc3c7;
  text-decoration: none;
   transition: color 0.3s;


}

.footer-links a:hover {
 color: #3498db;
}

.footer-column p {
   color: #bdc3c7;
    line-height: 1.7;
}

.footer-bottom {
   max-width: 1400px;
    margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  text-align: center;
    color: #7f8c8d;
}@media (max-width: 768px) {
.footer-content {
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 {
     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;
    }
}.page-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 4rem 2rem;
    text-align: center;
   color: white;
}

.banner-content h1 {
   font-size: 3rem;
	        margin-bottom: 0.5rem;
}

.banner-content p  {
	font-size: 1.3rem;
   opacity :       0.9;
}

.story-section {
    padding  :      5rem 2rem;
    background: #ffffff;
} 

.story-wrapper {
	 max-width: 1400px;
  margin: 0 auto;
  display: grid;
   grid-template-columns: 1.2fr 1fr;
   gap   :       4rem;
    align-items: center;
	}

.story-text h2
	{
  font-size: 2.5rem;
    color: #1a252f;
   margin-bottom: 1.5rem;
}


.story-text p {
    color: #546e7a;
	font-size  :    1.1rem;
   line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-photo {
  width    :  100%;
   border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}@media (max-width: 968px) {
.story-wrapper {
grid-template-columns: 1fr;
}

.banner-content h1 {
font-size: 2rem;
}
}.mission-vision {

	 padding: 4rem 2rem;
   background:        #f8f9fa;}

.mv-container {
    max-width: 1400px;
       margin: 0 auto;
      display  :   grid;
      grid-template-columns: 1fr 1fr;
       gap     :    3rem;
}

.mission-block, .vision-block {


   background: white;
   padding: 3rem;
    border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
     }

.mission-block h3, .vision-block h3 {
	 font-size: 1.8rem;
    color     :       #667eea;
   margin-bottom: 1rem;


}

.mission-block p, .vision-block p {
  color: #546e7a;
	line-height: 1.8;
  font-size: 1.05rem;
}@media (max-width: 768px) {
.mv-container {
grid-template-columns: 1fr;
}
}.values-section {
    padding     :        5rem 2rem;
    background: white;
}

.values-container
	{
    max-width   :   1400px; 
    margin: 0 auto;
}

.values-container h2 {
    font-size: 2.5rem;
   text-align: center;
   color: #1a252f;
    margin-bottom: 3rem;
}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
	
}

.value-card {
  border-radius: 8px;
   transition: transform 0.3s;
    padding: 2rem;
     background: #f8f9fa;
  border-left: 4px solid #667eea;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h4 {
    font-size:1.3rem; 
	color: #1a252f; 
  margin-bottom: 0.8rem;
}

.value-card p		{
  color: #546e7a;
    line-height: 1.7;
}

.approach-section {

   padding: 5rem 2rem;
    background: #f8f9fa;
	}

.approach-wrapper{
    max-width: 1200px;
    margin: 0 auto;
}

.approach-wrapper h2 
 {
  font-size: 2.5rem;
  text-align: center;
   color: #1a252f;
  margin-bottom: 3rem;
}

.approach-content   {
  display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
	      gap: 2.5rem;
	
}

.approach-point h4 {
		 margin-bottom :       0.8rem;
  color: #667eea;
   font-size: 1.3rem;

}

.approach-point p {
        color: #546e7a;
	 line-height: 1.7;
}

.timeline-section {
      padding  :5rem 2rem;
  background: white;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-container h2 {
   font-size: 2.5rem;
  text-align: center;
  color: #1a252f;
  margin-bottom: 4rem;
}

.timeline {
 position: relative;
   padding-left: 2rem;
}

.timeline::before {
     content: '';
   position: absolute;
         left     :      0;
    top    :        0;
  bottom: 0;
   width: 3px;
    background: #667eea;


}

.timeline-item {
   position: relative;
    margin-bottom: 3rem;
   padding-left: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
    top: 5px;
   width: 15px;
	height: 15px;
    border-radius: 50%;
   background: #667eea;
  border: 3px solid white;
   box-shadow: 0 0 0 3px #667eea;


}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
  color: #667eea;
	margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size  : 1.3rem;
   color: #1a252f;
  margin-bottom: 0.5rem;
}

.timeline-content p {
    color  :#546e7a; 
  line-height: 1.7;
}

.stats-section {
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		 color: white;
}

.stats-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
}

.stat-box {
    text-align: center;
   padding :        2rem 1rem;
}

.stat-number {
  font-size: 3.5rem;

	    font-weight: 700;

	   margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
	
}

.cta-about {
   padding: 5rem 2rem;
   background: #1a252f;
	 text-align :     center;
    color  :white;
}



.cta-about-content {


  margin: 0 auto;
 max-width: 800px;}

.cta-about-content h2 {
	font-size: 2.5rem;

	   margin-bottom: 1rem;
}

.cta-about-content p {
	font-size: 1.2rem;
   margin-bottom: 2rem;
   opacity: 0.9;
    line-height: 1.8;
}

.cta-about-btn {
   display: inline-block;
	background: #667eea;
       color :       white;
   padding: 1rem 2.5rem;
    text-decoration: none;
   border-radius: 5px;
   font-weight   :    600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-about-btn:hover {
	  background: #5568d3;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(102,126,234,0.4);} 

.thankyou-hero {
    padding: 6rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   min-height: 60vh;
   display: flex;
    align-items :  center;
}

.thankyou-container {
	        max-width: 900px;
   margin: 0 auto;
   text-align: center;

} 

.success-icon {
  margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
}

.thankyou-container h1 {
    font-size: 3rem;
	margin-bottom: 1.5rem;
}

.thankyou-message {
  font-size: 1.2rem;
   line-height: 1.8;
  margin-bottom: 3rem;
    opacity: 0.95;
}

.next-steps


{
  background: rgba(255,255,255,0.1);
   padding: 2.5rem;
	 border-radius: 8px;
  margin-bottom: 3rem;
  backdrop-filter: blur(10px);


}

.next-steps h3 {
    font-size: 1.8rem;
   margin-bottom: 2rem;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
   text-align: left;
}

.step-box {
	    display: flex;
         gap: 1rem;
    align-items: flex-start;


}

.step-num


{
  background: white;
    color     :     #667eea;
  width: 40px;
    height: 40px;
        border-radius: 50%;
  display: flex;
   align-items: center;
 justify-content: center;
	font-weight: 700;
    font-size: 1.2rem;
   flex-shrink: 0;
}

.step-box p {
      line-height: 1.7;
    margin-top: 0.5rem;
}

.thankyou-actions {
   display: flex;
	    gap: 1rem;
	    justify-content: center;
	 flex-wrap: wrap;
}

.btn-primary-ty, .btn-secondary-ty {

    padding: 1rem 2rem;
   display: inline-block;
  border-radius: 5px;
	 transition: all 0.3s;
  font-weight: 600;
       text-decoration: none;
     }

.btn-primary-ty {
    color: #667eea;
  background: white;
}

.btn-primary-ty:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary-ty {
   background: transparent;
  color: white;
   border: 2px solid white;
}

.btn-secondary-ty:hover {
  background: rgba(255,255,255,0.1);
}

.useful-resources {
  padding: 5rem 2rem;
      background: white;
}

.resources-container {
	margin: 0 auto;
        max-width: 1200px;}

.resources-container h2 {
  font-size: 2.5rem;
  text-align: center;
   color: #1a252f;
  margin-bottom     :   1rem;
}

.resources-intro {
   text-align: center;
    font-size: 1.1rem;
  color: #546e7a;
			margin-bottom: 3rem;
                    max-width: 700px;
   margin-left: auto;
    margin-right: auto;
}

.resources-grid {
   display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

	  gap  :      2rem;
}

.resource-item {
    background: #f8f9fa;
    padding: 2rem;
  border-radius  :   8px;
         border-top: 4px solid #667eea;
}

.resource-item h4 {
    font-size: 1.3rem;
   color: #1a252f;
  margin-bottom: 1rem;
}

.resource-item p {
  color: #546e7a;
   line-height: 1.7;


}

.contact-info-ty {
   padding: 4rem 2rem;
	 background: #f8f9fa;
}

.contact-ty-wrapper {
    max-width: 800px;
   margin: 0 auto;
   text-align: center;

}

.contact-ty-wrapper h3 {
  font-size: 2rem;
    color: #1a252f;
    margin-bottom: 1rem;


}

.contact-ty-wrapper > p {
     font-size: 1.1rem;
    color   :       #546e7a;
  margin-bottom: 2rem;
}


.contact-details-ty {
   display  :  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
    margin-top: 2rem;
}

.contact-detail-item {
  background: white;
   padding: 1.5rem;
   border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-detail-item strong {
    color: #667eea;
               display: block;
   margin-bottom: 0.5rem;
   font-size: 1.1rem;
	
}

.contact-detail-item p {
  color: #546e7a;
   line-height: 1.6;
}@media (max-width: 768px) {
.thankyou-container h1 {
font-size: 2rem;
}

.steps-list {
grid-template-columns: 1fr;
}
}