* {
  padding: 0;
    margin: 0;
   box-sizing   :     border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif; 
	  line-height: 1.6; 
	  color :     #2c3e50; 
	   background: #ffffff;
}

.main-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   position: fixed;
  width: 100%;
  top: 0;
          z-index  :   1000;
    border-bottom: 1px solid #eee;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
  display: flex;
  justify-content: space-between;
   align-items: center;
  padding   :      1rem 2rem;
}

.brand-section .brand-logo {

	   height: 45px;
    width: auto;
     }

.navigation-links   {
  display: flex;
       gap: 2.5rem;
}

.nav-item {
   text-decoration: none;
  color: #2c3e50;
   font-weight: 500;
  transition: color 0.3s;
   position: relative;
}

.nav-item:hover {
   color: #3498db;
} 

.nav-item::after     {
  content: '';
   position: absolute;
	width: 0;
    height: 2px;
    bottom: -5px;
  left: 0;
    background-color  :   #3498db;
	transition: width 0.3s;

}

.nav-item:hover::after {
	width :        100%;

}

.burger-menu {


  display: none;
  flex-direction :       column;
  cursor: pointer;
   gap   :       4px;
     }

.burger-menu span {

  width: 25px;
   height     :      3px;
   background: #2c3e50;
   transition: 0.3s;


}

.hero-area {
   padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.hero-content {
  max-width: 1200px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
                    align-items: center;
}

.hero-text h1 {
   font-size   :    3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
   line-height: 1.2;
	
}

.hero-text p {
          font-size: 1.2rem;
       margin-bottom:      2.5rem;
        opacity: 0.9;
}

.hero-buttons {
      display: flex;
  gap: 1.5rem;
}

.primary-btn, .secondary-btn{
	   padding: 0.875rem 2rem;
    text-decoration :   none;
  border-radius: 8px;
   font-weight: 600;
  transition: all 0.3s;
   display: inline-block;

}

.primary-btn {
    border: 2px solid #ff6b6b;
               color: white;
	background: #ff6b6b;
}

.primary-btn:hover {
  background     :       #ff5252;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.secondary-btn {
   background: transparent;
  color    :    white;
   border: 2px solid white;
}

.secondary-btn:hover {
                    background: white;
    color: #667eea;
	
}

.hero-image img {
    width   :  100%;
  height: auto;
         border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services-overview {
   padding: 100px 2rem;
	background: #f8f9fa;
}

.section-container {
  max-width :       1200px;
        margin   :    0 auto;}

.services-overview h2


{
	text-align: center; 
	    font-size: 2.5rem; 
	   margin-bottom: 3rem; 
	  color: #2c3e50;
} 

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap:       3rem;
}

.service-item {
   background :       white;
    padding: 2.5rem;
   border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
		 text-align: center;

}  

.service-item:hover {
  transform: translateY(-10px);
}

.service-item img {
   width: 100%;
  height: 200px;
  object-fit: cover;
                    border-radius :    12px;
  margin-bottom: 1.5rem;
}

.service-item h3

{
	  font-size: 1.5rem;
    margin-bottom: 1rem;
  color: #2c3e50;
}


.service-item p {
  color :   #6c757d;
    line-height :  1.6;
	
}


.cta-section  {

	         padding: 80px 2rem;
     background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
     color: white;
       text-align: center;


}

.cta-content h2 {
         font-size: 2.8rem;
	margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {

	 color:     #ff6b6b;
     font-weight: 700;
    text-decoration: none;
  border-radius: 50px;
	background: white;
  padding: 1rem 3rem;
   font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.methodology-section {
   padding: 100px 2rem;

	   background: white;
}

.content-wrapper {
   max-width: 1200px;
       margin:    0 auto;
   	 display     :      grid;
     grid-template-columns: 1fr 1fr;
            gap: 4rem;
      align-items: center;


}

.methodology-text h2  
  {
    font-size   :  2.5rem;

  margin-bottom: 1.5rem;

          color: #2c3e50;
}

.methodology-text > p


{
  font-size: 1.1rem;
	 margin-bottom: 2.5rem;
  color     :   #6c757d;
	
}



.methodology-points {
    display: flex;
    flex-direction: column;
	gap: 2rem;
}

.method-point h4 {
	font-size: 1.3rem;
   margin-bottom:  0.5rem;
	color: #3498db;
}

.method-point p   {
    color: #6c757d;

}

.methodology-image img {
  width: 100%;
   height: auto;
   border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-section {
   padding: 100px 2rem;
	   background: #f8f9fa;
} 

.contact-container    {
    max-width: 800px;
   margin     :   0 auto;
   text-align: center;
}

.contact-container h2 {
    font-size:    2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}


.contact-container > p		{
   font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #6c757d;
}

.contact-form {
         background: white;

	  padding: 3rem;

	    border-radius: 20px;

	  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-row		{
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap     :       1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea


{
   width: 100%;
   padding: 1rem;
  border: 2px solid #e9ecef;
    border-radius: 10px;
	font-size :     1rem;
   transition: border-color 0.3s;
	 font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
}

.full-width {
    grid-column: 1 / -1;
}

.submit-btn {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   border  :      none;
    padding: 1rem 3rem;
   font-size: 1.1rem;
          font-weight: 600;
	border-radius: 50px;
    cursor: pointer;
      transition: all 0.3s;
	}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);

}

.main-footer {
  background: #2c3e50;
     color: white;
  padding: 60px 2rem 20px;
}

.footer-content {
     max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-brand p {
   color     :#bdc3c7;
    line-height: 1.6;
}

.footer-links {

   display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;


}


.footer-column h4 {

  margin-bottom: 1rem;
  font-size: 1.2rem;

}

.footer-column a,
.footer-column p  {
   display: block;
   color: #bdc3c7;
    text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-column a:hover     {
  color: white;
}

.footer-bottom {
  max-width    :  1200px;
  margin   :       3rem auto 0;
   padding-top: 2rem;
  border-top: 1px solid #34495e;
  text-align: center;
}

.footer-bottom p {

	 color: #bdc3c7;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .navigation-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .navigation-links.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .methodology-image {
        order: -1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 1rem;
    }
    
    .hero-area {
        padding: 100px 1rem 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .services-overview,
    .methodology-section,
    .contact-section {
        padding: 60px 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}.nav-item.active {
       color: #3498db;
	}

.nav-item.active::after {
   width: 100%;

}

.about-hero {
   padding: 140px 2rem 100px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
   max-width: 800px;
    margin-left :  auto;
    margin-right: auto;
}

.about-hero-content p {
	margin: 0 auto;
	 max-width: 600px;
	opacity: 0.9;
    font-size     :      1.3rem;
}

.our-story {
    padding: 100px 2rem;
   background  :      white;
}

.story-container {
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid; 
  grid-template-columns: 1fr 1fr; 
   gap: 4rem; 
     align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
	margin-bottom: 2rem;
  color: #2c3e50;
} 

.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
   margin-bottom: 1.5rem;
  color: #6c757d;
}

.story-image img {

	  width: 100%;
   height: auto;
                    border-radius    :16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);

	}

.our-approach {
    padding: 100px 2rem;
    background: #f8f9fa;

}

.approach-wrapper {


   max-width: 1200px;
    margin: 0 auto;}

.approach-wrapper h2 
 {
   color  :   #2c3e50;
  margin-bottom: 4rem;
    text-align: center;
  font-size: 2.5rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}


.approach-item {
  background: white;
	padding: 2.5rem;
  border-radius   :        16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
}

.approach-number {

  position: absolute;
   top: -20px;
    left: 2.5rem;
    width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
    border-radius: 50%;
     display: flex;
	align-items: center;
  justify-content    : center;
    font-weight     :        700;
    font-size: 1.2rem; 
	
	}

.approach-item h3 {
    font-size     : 1.5rem; 
  margin-bottom: 1rem; 
	 color  :     #2c3e50; 
    margin-top     :    1rem;
}

.approach-item p     {
	color: #6c757d;
  line-height: 1.6;
}

.expertise-areas {
  padding: 100px 2rem;
   background: white;
}

.expertise-container {
	max-width   :       1200px; 
	                    margin: 0 auto; 
	 display     :       grid; 
	   grid-template-columns: 1fr 1fr; 
	   gap: 4rem; 
	  align-items: start;
}

.expertise-text h2 {
   font-size: 2.5rem;
  margin-bottom     :     2.5rem;
    color: #2c3e50;
}

.expertise-list {
	 flex-direction: column;
      gap     :    2rem;
    display: flex;
}

.expertise-point h4 {
  font-size: 1.3rem;
    margin-bottom: 0.8rem;
  color: #3498db;
}

.expertise-point p {
  color: #6c757d;
                    line-height: 1.6;
}

.expertise-images {
  display: grid;
    gap: 2rem;

}

.expertise-images img {
	width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.results-section {
	padding: 80px 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.results-wrapper {
	max-width: 1000px;
   margin   :     0 auto;
    text-align: center;
}

.results-wrapper h2 {
   font-size: 2.5rem;
	margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap: 2rem;

}

.stat-item {
  text-align: center;
    padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
		font-weight: 700;
	  margin-bottom: 0.5rem;
}

.stat-label {
  opacity: 0.9;
    font-size: 1rem;
}

.values-section {


   padding: 100px 2rem;
   background: #f8f9fa;}

.values-container {
        max-width: 1000px;
   margin: 0 auto;
}

.values-container h2 {
    text-align: center;
   font-size   :2.5rem;
	margin-bottom: 3rem;
   color: #2c3e50;
}

.values-grid {
	 display: grid; 
	  grid-template-columns: repeat(3, 1fr); 
	   gap: 2.5rem;
}

.value-card {
   background: white;
    padding: 2.5rem;
   border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.value-card h3 {
      font-size: 1.5rem;
    margin-bottom: 1rem;
          color: #2c3e50;
	}

.value-card p {
    color    :        #6c757d;
  line-height: 1.6; 

}

.cta-about {
   padding: 80px 2rem; 
	  background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%); 
	    color: white; 
	    text-align: center;
}

.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;
}

.cta-about-btn {
   padding:        1rem 2.5rem;
	background:white;
    color: #ff6b6b;
   text-decoration     :    none;
   border-radius  :       50px;
  font-weight:   600;
 font-size: 1.1rem;
    transition: all 0.3s;
   display: inline-block;
}

.cta-about-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.thankyou-hero {
    padding: 140px 2rem 100px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
	 color :        white;
    min-height: 100vh;
               display: flex;
	align-items  :       center;
}

.thankyou-container {


        max-width    :  1000px;
  margin: 0 auto;
      text-align: center;

}

.success-icon {
    margin-bottom: 2rem;
  display     :        flex;
    justify-content :   center;
}

.checkmark {

	   width: 80px;
    height: 80px;
    border-radius: 50%;
    display  : block;
   stroke-width: 3;
    stroke: #fff;
  stroke-miterlimit: 10;
	box-shadow: inset 0px 0px 0px #27ae60;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
	position     :    relative;
}  

.checkmark-circle {
   stroke-dasharray: 166;
          stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
   stroke: #fff;
	fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    position :    absolute;
   top   :0;
    left: 0;
        width: 80px;
  height     :    80px;
  border-radius: 50%;
  border: 3px solid #fff;
}

.checkmark-stem {
  transform-origin: 50% 50%;
	 stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  position: absolute;
   top: 37px;
	left: 28px;
  width: 22px;
   height: 2px;
    background: #fff;
  transform: rotate(45deg);
}

.checkmark-kick {
   transform-origin: 50% 50%;
         stroke-dasharray: 48;
   stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
   position: absolute;
  top: 44px;
    left: 18px;
	width: 12px;
  height: 2px;
  background: #fff;
  transform: rotate(-45deg);
}@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 80px #27ae60;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}.thankyou-content h1 {
   font-size:      3rem;
  font-weight:     700;
  margin-bottom: 1.5rem;
}

.thankyou-message {
	 font-size: 1.3rem;
  margin-bottom: 4rem;
    opacity: 0.9;
   max-width: 700px;
    margin-left: auto;
   margin-right: auto;
}

.next-steps {
  background: rgba(255,255,255,0.1);
    padding: 3rem;
	border-radius: 20px;
  margin-bottom: 4rem;
  backdrop-filter: blur(10px);
}

.next-steps h2 {
   font-size: 2rem;
   margin-bottom: 2.5rem;

} 

.steps-grid {

	  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;

}

.step-item {

    text-align: center;
   padding: 1.5rem;

}

.step-number {
 width: 50px;

   height: 50px;

  background: rgba(255,255,255,0.2);

  color: white;

  border-radius: 50%;

    display: flex;

    align-items: center;

  justify-content: center;

  font-weight: 700;

   font-size: 1.3rem;

   margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.3rem;
	margin-bottom: 0.8rem;
}

.step-item p {
      opacity: 0.9;
     }

.helpful-resources {


    background: white;
  color: #2c3e50;
  padding: 3rem;
  border-radius     : 20px;
  margin-bottom: 3rem;

}

.helpful-resources h2 {
  font-size :   2rem;
  margin-bottom: 2rem;
   text-align: center;
}

.resources-list {
	display: grid;
  gap: 2rem;
}

.resource-item {
   display  :    flex;
    gap     :2rem;
	 align-items: center;
  padding :1.5rem;
	background: #f8f9fa;
               border-radius  :   12px;
}

.resource-item img  
  {
   width : 120px;
   height: 80px;
	 object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.resource-content h3   {
	font-size: 1.3rem;
    margin-bottom: 0.5rem;
   color: #2c3e50;
	
}

.resource-content p {
    color: #6c757d;
  line-height: 1.6;
}

.thankyou-actions {
  display: flex;
  gap: 1.5rem;
      justify-content: center;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .story-container {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-container {
        grid-template-columns: 1fr;
    }
    
    .expertise-images {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .resource-item {
        flex-direction: column;
        text-align: center;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 120px 1rem 80px;
    }
    
    .our-story,
    .our-approach,
    .expertise-areas,
    .values-section {
        padding: 60px 1rem;
    }
    
    .results-section,
    .cta-about {
        padding: 60px 1rem;
    }
    
    .thankyou-hero {
        padding: 120px 1rem 80px;
    }
    
    .next-steps,
    .helpful-resources {
        padding: 2rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}.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;
    }
}