* {
   margin: 0px;
	padding: 0px;
    box-sizing: border-box;
}

body {
     font-family: 'Arial', sans-serif;
    line-height: 1.6;
   color: #2c3e50;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.primary-navigation {
   position: fixed;
  top: 0;
   width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
			z-index: 1000;
	padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-wrapper {
    max-width     : 1200px;
  margin: 0 auto;
  display: flex;
    justify-content: space-between;
   align-items: center;
	 padding: 0 24px;
}

.brand-container .company-logo {
	height: 42px; 
		width: auto;
}

.navigation-links {


   display: flex;
        gap: 32px;


}

.nav-item {
  font-weight: 500;
  text-decoration: none;
   transition     :     color 0.3s ease;
    color: #34495e;
   position: relative;
}

.nav-item:hover,
.nav-item.active 
 {
  color: #6c5ce7;
}

.nav-item::after {
  content: '';
                    position: absolute;
   width: 0;
   height: 2px;
      bottom: -5px;
  left: 0;
   background-color: #6c5ce7;
 transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
  width:  100%;
}

.burger-menu {
  display:   none;
          flex-direction: column;
			cursor    :     pointer;
  gap: 4px;
}

.burger-menu span {
  width    :25px;
  height     :      3px;
    background: #34495e;
  border-radius: 2px;
  transition: 0.3s;
}

.main-content {
  margin-top: 80px;
	}

.hero-section   {
	min-height: 90vh;
  display: flex;
    align-items: center;
  padding: 40px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-container {
  max-width: 1200px;
	margin: 0 auto;
   display    :      grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items :center;
  padding: 0 24px;
}

.hero-content h1
{
  font-size: clamp(2.5rem, 5vw, 3.5rem);
   font-weight: 700;
  color: white;
    margin-bottom: 24px;
  line-height: 1.2; 

}

.hero-subtitle {
    font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
               margin-bottom: 32px;
   max-width: 500px;
}

.hero-actions {
    display: flex;
   gap: 20px;
   flex-wrap: wrap;
}


.primary-btn,
.secondary-btn {
       padding: 14px 28px;
  text-decoration: none;
  border-radius: 8px;
    font-weight: 600;
  transition: all 0.3s ease;
                    display: inline-block;


}



.primary-btn {
   background: #00b894;
    color : white; 

}

.primary-btn:hover {
    background: #00a085;
  transform: translateY(-2px);
}

.secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.secondary-btn:hover {
  background: white;
   color: #6c5ce7;
}

.hero-image {
    width   :    100%;
  height    :        auto;
    border-radius  :    12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.methodology-section {
  padding: 80px 0;
    background: white;
}

.content-container {
  max-width: 1200px;
 margin: 0 auto;
    padding: 0 24px;
}

.methodology-section h2 {
	  text-align: center;
  font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;}

.methodology-grid {
   display    :   grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
	
}  

.methodology-card {
  background   :white;
   border-radius    :      12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition:      transform 0.3s ease; 

}

.methodology-card:hover {
  -moz-transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}

.card-image {
   width: 100%;
    height: 250px;
				 object-fit: cover;
}

.methodology-card h3 {
  font-size: 1.5rem;
      margin: 24px 24px 16px;
       color:     #2c3e50;
}



.methodology-card p {
    line-height: 1.6;
  margin   :  0 24px 24px;
 color: #7f8c8d;
}

.cta-section {
         padding: 80px 0;
  background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
	
}

.cta-container {
     max-width   : 1200px;
          margin: 0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 50px;
    align-items: center;
  padding: 0 24px;}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
  margin-bottom: 24px; 
	
}

.cta-content p {
	font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}

.cta-button {
   background     :   white;
    color  :        #00b894;
    padding: 16px 32px;
  text-decoration     : none;
  border-radius :  8px;
    font-weight: 600;
  display    :    inline-block;
   transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-image {
  width: 100%;
    height  :       auto;
  border-radius: 12px;
}

.expertise-section {
    padding: 80px 0;
                    background: #f8f9fa;
	
}

.expertise-section h2 {
    text-align: center;
   font-size: 2.5rem;
    margin-bottom: 50px;
  color: #2c3e50;
}

.expertise-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 32px;
}

.expertise-item {


      background: white;
    padding: 32px;
    border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);

}

.expertise-item h4 {
	font-size: 1.3rem;
  margin-bottom: 16px;
               color: #6c5ce7;
}

.expertise-item p {
  line-height: 1.6;
   color: #7f8c8d;
}

.contact-section {
  padding: 80px 0;
	 background: white;
}



.contact-container {
  max-width: 1200px;

	    margin :  0 auto;

	    display: grid;

	                    grid-template-columns: 1fr 1fr;

	  gap: 60px;

	   padding: 0 24px;
}

.contact-info h2		{
    font-size   :    2.5rem;
  margin-bottom: 24px;
  color: #2c3e50;
}

.contact-info p{
    font-size: 1.1rem; 
	         color: #7f8c8d; 
	   margin-bottom: 40px;
}

.contact-details {
  display:   flex;
    flex-direction  :        column;
  gap: 24px;

}

.contact-item strong {
    color: #6c5ce7;
   display: block;
    margin-bottom: 8px;
}

.contact-form {
	background: #f8f9fa;
    border-radius: 12px;
  padding: 40px;
} 

.form-group {
          margin-bottom: 24px;

}

.form-row     {
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
    display: block;
  margin-bottom: 8px;
    color: #2c3e50;
   font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {

	width: 100%;
	 padding: 12px 16px;
 border: 2px solid #e0e6ed;
   border-radius: 8px;
    font-size: 16px;
  transition: border-color 0.3s ease;
	
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: #6c5ce7;
}

.form-submit {
  background :  #6c5ce7;
   color     :white;
   padding: 16px 32px;
   border: none;
      border-radius: 8px;
   font-size: 16px;
  font-weight: 600;
         cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
    background: #5f3dc4;
  transform: translateY(-2px);
}

.site-footer {
    padding: 60px 0 20px;
      background: #2c3e50;
   color :       white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 3fr;
   gap: 50px;
    padding: 0 24px;
}

.footer-logo{
  height: 60px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-content {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
         gap: 40px;
}

.footer-section h4     {
   margin-bottom: 20px;
   color:   #6c5ce7;


}

.footer-section ul


{
    list-style: none;
}

.footer-section ul li {

  margin-bottom: 12px;}

.footer-section a {
    color: #bdc3c7;
                  text-decoration: none;
       transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
                    border-top: 1px solid #34495e;
   margin-top: 40px;
  padding-top: 20px;
   text-align: center;
   color: #bdc3c7;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex
    }
    
    .navigation-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease
    }
    
    .navigation-links.active {
        left: 0
    }
    
    .hero-container,
    .cta-container,
    .contact-container {
        grid-template-columns: 1fr;
        text-align: center
    }
    
    .form-row {
        grid-template-columns: 1fr
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center
    }
    
    .footer-content {
        grid-template-columns: 1fr
    }
}.burger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px); 
	
}

.burger-menu.active span:nth-child(2) {
	opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.about-hero-section {
   min-height: 70vh;
       display: flex;
       align-items: center;
      padding: 40px 0;
     background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

.about-hero-container {

  max-width: 1200px;
   margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap   :        50px;
   align-items: center;
   padding: 0 24px;
	}

.about-hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 700;
   color: white;
	 margin-bottom: 24px;
}

.about-hero-subtitle {
    font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
	line-height: 1.6;
  max-width: 450px;
}

.about-hero-image    {
    width: 100%;
          height     :        auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.company-story {
    padding     :80px 0;
    background: white;
}

.story-grid {
  grid-template-columns: 1fr 1fr;
  display: grid;
  align-items: center;
   gap:    60px;
}

.story-content h2 {
  font-size: 2.3rem;
	margin-bottom    :       32px;
    color: #2c3e50;
}

.story-content p {
  margin-bottom   :     24px;
    color: #7f8c8d;
    line-height: 1.7;
   font-size: 1.05rem;
}

.story-image {
	    width: 100%;
  height: auto;
   border-radius: 10px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
	} 

.methodology-deep {
   padding: 80px 0;
   background    :      #f8f9fa; 

}



.methodology-deep h2 {
    text-align: center;
   font-size: 2.5rem;
  margin-bottom: 50px;
  color: #2c3e50;
}

.methodology-explanation {
   display: grid;
    gap: 40px;
}

.method-item     {
  background: white;
    padding: 40px;
  border-radius  :     10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #6c5ce7;
}

.method-item h3 {
    margin-bottom: 20px;
	color: #6c5ce7;
   font-size: 1.4rem;
}

.method-item p {
	color: #7f8c8d;
    line-height: 1.6;
    font-size: 1.05rem;
}

.team-section {
  padding: 80px 0;
   background: white;
}

.team-section h2 {
      text-align: center;
   font-size: 2.5rem;
   margin-bottom: 40px;
     color: #2c3e50;


}

.team-intro {
  text-align    :      center;
    margin-bottom: 60px;
   max-width: 700px;
	margin-left: auto;
    margin-right: auto;
}

.team-intro p {
    font-size  :      1.15rem;
    color: #7f8c8d;
   line-height: 1.6;
}

.team-stats {
     grid-template-columns: repeat(4, 1fr);
   margin-top: 50px;
  display: grid;
   gap: 40px;
     }

.stat-item {
   	text-align: center;
   padding: 30px 20px;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
      border-radius: 12px;
  color: white;
}

.stat-number {
               font-size: 2.5rem;
  font-weight: 700;
   margin-bottom: 8px;
}

.stat-label {
       font-size   :     1rem;
         opacity    :        0.9;
	}

.values-section {

	    padding: 80px 0;
  background: #f8f9fa;
	}

.values-section h2
{
  text-align: center;
   font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-grid {
    display     :   grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.value-card {
  background: white;
   padding: 35px;
         border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.value-card h4 {
  font-size: 1.3rem;
         margin-bottom: 16px;
   color: #6c5ce7;
}

.value-card p {
  color   :       #7f8c8d;
   line-height: 1.6;
}

.approach-section {


   padding: 80px 0;
   background     :      white;
	}

.approach-grid {
       display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items   :      flex-start;
}

.approach-image {
  width: 100%;
    height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.approach-content h2 {
  font-size: 2.3rem;
  margin-bottom: 40px;
   color: #2c3e50;
}

.approach-steps {
  gap: 30px;
    display: flex;
  flex-direction: column;
}

.step-item	{
    display: flex;
   gap: 20px;
    align-items: flex-start;
}

.step-number {
                    width: 40px;
    justify-content   :       center;
	border-radius: 50%;
	 background: #6c5ce7;
   align-items: center;
    display :  flex;
  flex-shrink: 0;
  height: 40px;
    color: white;
    font-weight:600;
}

.step-text h4 {
	font-size: 1.2rem;
	margin-bottom: 8px;
	color: #2c3e50;
}

.step-text p    {
    color: #7f8c8d;

	   line-height: 1.5;
}

.thankyou-section {
	 min-height: 80vh;
   display: flex;
   align-items: center;
   padding: 60px 0;
  background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
}

.thankyou-container {
   max-width:1200px;
  margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items: center;
    padding: 0 24px;
}

.thankyou-content{
    color: white;
}

.success-indicator {
   margin-bottom: 40px;

}

.checkmark-circle {
    width: 80px;
   height: 80px;
    border-radius: 50%;
  background: rgba(255,255,255,0.2);
    display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 30px;
}

.checkmark   {
   width     :     30px;
	height: 15px;
  border: 4px solid white;
  border-top: none;
    border-right: none;
  transform: rotate(-45deg);
    margin-top: -8px;
}

.thankyou-content h1 {


  font-size: 2.8rem;
	font-weight: 700;
  margin-bottom: 24px;
     }

.thankyou-subtitle {
               font-size   :1.2rem;
    margin-bottom  :        40px;
  opacity: 0.95;
  line-height: 1.6;


}

.next-steps {
  margin :     50px 0;
}

.next-steps h3 {
	font-size: 1.5rem;
	margin-bottom: 30px;
}

.steps-list {
       display: flex;
   flex-direction: column;
    gap: 25px;
}

.step
	{
      display: flex;
	gap: 20px;
	 align-items: flex-start;
}

.step-icon {

	  background: rgba(255,255,255,0.2);
   color     :   white;
   width: 35px;
	 height: 35px;
   border-radius: 50%;
    display    :       flex;
    align-items     : center;
    justify-content: center;
  font-weight: 600;
   flex-shrink: 0;
    font-size     :      0.9rem;


}

.step-text h4 {
  font-size: 1.1rem;
      margin-bottom: 8px;
  font-weight    :   600;
}

.step-text p {

	  opacity: 0.9;
       line-height: 1.5;
      font-size: 0.95rem;
	}

.thankyou-actions 
 {
    display    :    flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.thankyou-image
	{
	width: 100%;
	 height     :     auto;
    border-radius    :        12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.contact-info-section {
    padding: 80px 0;
      background: white;
}

.contact-info-section h2 {
      text-align   :        center;
  font-size: 2.3rem;
   margin-bottom: 50px;
   color: #2c3e50;
}

.contact-grid {
    display  :        grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-card {
    text-align: center;
   padding: 35px 25px;
	 background: #f8f9fa;
    border-radius: 10px;
}

.contact-card h4 {
    font-size: 1.3rem;
   margin-bottom: 16px;
    color: #6c5ce7;
}

.contact-card p {
  color: #2c3e50;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-card small {
   color:    #7f8c8d;
    font-size: 0.9rem;
}

.additional-resources {
    padding: 80px 0;
    background :       #f8f9fa;
}



.additional-resources h2 {
   text-align: center;
	font-size: 2.3rem;
   margin-bottom    : 50px;
   color   : #2c3e50;
}

.resources-grid {
     display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.resource-item {
  background: white;
    padding: 30px;
	 border-radius   :        8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.resource-item h4 {
  font-size: 1.2rem;
   margin-bottom: 16px;
    color: #6c5ce7;
     }

.resource-item p {
  color     :     #7f8c8d;
   line-height: 1.6;
}@media (max-width: 768px) {
    .about-hero-container,
    .story-grid,
    .approach-grid,
    .thankyou-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }
    
    .values-grid,
    .contact-grid,
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 25px
    }
    
    .thankyou-actions {
        justify-content: 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;
    }
}