* {
    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: #f8f9fa;
}

.nav-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.2rem 0;
    position: sticky;
	top: 0;
   z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,.1);

}

.nav-wrapper {
    max-width: 1200px;
  margin: 0 auto;
  display: flex;
                    justify-content: space-between;
	align-items: center;
  padding: 0 20px;
	
}

.brand-section .site-brand-img {
       height: 45px;
  width: auto;
}

.nav-links {
  display    :    flex;
    gap: 2rem;
}

.nav-links a {
   color: white; 
	       text-decoration: none; 
	   font-weight: 500; 
	  transition: opacity .3s; 
	    font-size: 1.05rem;
}

.nav-links a:hover {

    opacity: .75;
	}

.nav-toggle {
   display: none;
  background: none;
    border: none;
  cursor  :    pointer;
   flex-direction: column;
  gap: 5px;
}

.toggle-line  {
	height: 3px;
	background: white;
    width: 28px;
   transition: all .3s ease;
}

.hero-section {
  max-width: 1200px;
   margin: 60px auto;
  padding: 0 20px;
   display:     grid;
  grid-template-columns: 1fr 1fr;
   gap: 50px;
   align-items: center;
}

.hero-content h1 {
  font-size: 2.8rem;
    color: #1a202c;
 margin-bottom     :     25px;
  line-height: 1.2;
}

.hero-desc {

	 font-size: 1.15rem;
               color: #4a5568;
   margin-bottom: 35px;
	}

.primary-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
	font-weight:     600;
  transition: transform .3s, box-shadow .3s;
  font-size: 1.1rem;
}

.primary-btn:hover    {
  transform: translateY(-2px);
	  box-shadow: 0 10px 25px rgba(102,126,234,.4);
}

.hero-visual img {
   width: 100%;
               border-radius  :    15px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.benefits-area {
	background: white;
  padding: 80px 20px;
  margin: 60px 0;


}

.benefits-area h2

{
    text-align: center;
	font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a202c;
}

.benefits-grid {
  max-width: 1200px;
   margin: 0 auto;
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.benefit-item {
  padding: 35px;
      background   :#f7fafc;
    border-radius: 12px;
   transition: transform .3s;
}

.benefit-item:hover {
  transform: translateY(-8px);
}

.benefit-item h3 {
    font-size: 1.6rem;
   margin-bottom: 18px;
  color: #667eea;
}

.benefit-item p {
   color: #4a5568;
     line-height: 1.7;
}

.methodology-zone {
   max-width: 1200px;
    margin: 80px auto;
   padding: 0 20px;
	 display: grid;
  grid-template-columns: 45% 50%;
    gap    :5%;
  align-items: center;
}

.method-visual img {

	  width: 100%;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
	}

.method-text h2 {
   font-size: 2.3rem;
	 margin-bottom    :     25px;
  color: #1a202c;


}

.method-text p {
   font-size: 1.05rem;
   color: #4a5568;
    margin-bottom: 20px;
               line-height: 1.8;
}

.cta-special  
  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding  :        90px 20px;
    text-align: center;
  margin   :    60px 0;
}

.cta-content h2 {
    color: white;
    font-size: 2.6rem;
   margin-bottom  :     25px;
}

.cta-content p {
  color: rgba(255,255,255,.9);
   font-size:    1.2rem;
	 max-width: 700px;
  margin: 0 auto 40px;
}

.cta-button {
    display: inline-block;
  background: white;
               color: #667eea;
	padding: 18px 50px;
    text-decoration: none;
    border-radius: 8px;
   font-weight: 700;
               font-size: 1.15rem;
	 transition: all .3s;
	
}

.cta-button:hover {

	  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);}

.services-display    {
    max-width: 1200px;
  margin    :    80px auto;
   padding: 0 20px;
}

.services-display h2 {

	  text-align: center;
  font-size: 2.5rem;
                    margin-bottom: 60px;
                    color: #1a202c;}

.services-container {
   display :grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 40px;
}

.service-box {
      background: white;
    border-radius    :    15px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  transition: transform .3s;
}



.service-box:hover {
  transform: translateY(-10px);
}

.service-box img {
	width: 100%;
   height    :   220px;
        object-fit: cover;
}

.service-box h3 {
   padding: 25px 25px 15px;
  font-size: 1.6rem;
  color: #667eea;
}

.service-box p {
  padding: 0 25px 25px;
  color: #4a5568;
        line-height: 1.7;
}

.contact-zone {
   max-width: 700px;
	margin: 80px auto;
    padding    :    50px;
   background: white;
    border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,.1);
}

.contact-zone h2

{


  text-align: center;
  font-size: 2.4rem;
    margin-bottom :40px;
  color: #1a202c;

}

.contact-form .form-row  {
  margin-bottom  :   25px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
   font-size: 1rem;
    border: 2px solid #e2e8f0;
   border-radius: 8px;
   width: 100%;
  font-family: inherit;
  transition: border-color .3s;
  padding: 15px;
     }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
   outline :    none;
  border-color: #667eea;
}


.submit-btn {
  width: 100%;
    padding: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
	 font-weight: 600;
   cursor: pointer;
   transition: transform .3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.footer-main  {
   background: #1a202c;
  color: white;
  padding: 60px 20px 20px;
}

.footer-container {
   max-width: 1200px;
  margin: 0 auto;
  display  :        grid;
               grid-template-columns: 1fr 2fr;
   gap: 50px;
    margin-bottom: 40px;
}

.footer-brand img {
  height: 50px;
  width: auto;
}

.footer-info {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 40px; 
	
}

.footer-col h4 {
   margin-bottom: 20px;
   font-size: 1.2rem;
}

.footer-col a {
    display: block;
   color: #cbd5e0;
   text-decoration: none;
    margin-bottom: 10px;
       transition: color .3s;
} 

.footer-col a:hover {
  color: white;
}

.footer-col p
{
  color     :        #cbd5e0;
    margin-bottom: 8px;


}

.footer-bottom {
   text-align   :     center;
    padding-top:    30px;
   border-top:1px solid #2d3748;
   color: #a0aec0;
}@media (max-width: 968px) {
    .hero-section {
        grid-template-columns: 1fr;
    }
    
    .methodology-zone {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: #667eea;
        flex-direction: column;
        padding: 30px;
        transition: left .4s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,.2);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .toggle-line:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active .toggle-line:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .toggle-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .benefits-area h2,
    .services-display h2 {
        font-size: 2rem;
    }
    
    .contact-zone {
        padding: 30px 20px;
    }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 100px 20px;
    text-align: center;
   color: white;
}

.about-hero-content {
  max-width: 900px;
	margin: 0 auto; 

}

.about-hero h1 {
    font-size: 3rem;
         margin-bottom: 25px;
}


.about-lead {
  font-size: 1.25rem;
  line-height: 1.8;
   opacity: .95;
}

.story-section    {
    max-width  :     1200px;
      padding: 0 20px;
    margin: 80px auto;
}

.story-container {
  align-items: center;
  gap: 5%;
   display: grid;
   grid-template-columns: 55% 40%;
}

.story-text h2 {
   font-size: 2.4rem;
  color: #1a202c;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
                    color: #4a5568;
   margin-bottom: 22px;
    line-height: 1.8;
}

.story-image img {
  width: 100%;
    border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.values-zone		{
    background: #f7fafc;
	 padding: 80px 20px;
}

.values-zone h2 {
  text-align: center;
  font-size: 2.5rem;
    color: #1a202c;
   margin-bottom    :   60px;
} 

.values-grid {
    max-width: 1200px;
    margin     :  0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.value-card {

	    background: white;
  padding: 40px;
	border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,.08);
		 transition: transform .3s;}

.value-card:hover   {
  transform: translateY(-8px);
}

.value-card h3 {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 18px;
}

.value-card p {
    color: #4a5568;
     line-height  :  1.7;
}

.approach-display {

	   max-width: 1200px; 
	  margin: 80px auto; 
	   padding: 0 20px;


}

.approach-wrapper    {

                    display: grid;
    grid-template-columns: 45% 50%;
    gap: 5%;
   align-items: center;
	}

.approach-img img {
    width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.approach-content h2 
 {
	font-size: 2.3rem;
                    color: #1a202c;
    margin-bottom: 25px;
}

.approach-content p {

	  font-size: 1.05rem;
  color :        #4a5568;
	margin-bottom: 20px;
   line-height: 1.8;}

.stats-showcase {
   background: white;
        padding: 80px 20px;
}

.stats-showcase h2 {
  text-align: center;
	margin-bottom: 60px;
  color: #1a202c;
  font-size: 2.5rem;
}

.stats-container {

	  max-width: 1100px;
  margin     :     0 auto;
    display :        grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 40px;


}

.stat-item {
   text-align: center;
}

.stat-number {
   font-size: 3.5rem;
   font-weight: 700;
    color    :    #667eea;
         margin-bottom:      15px;
} 

.stat-label {
    font-size: 1.1rem;
	color: #4a5568;
}

.expertise-area {
    max-width: 1200px;
	margin: 80px auto;
       padding    : 0 20px;
}



.expertise-area h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a202c;
   margin-bottom: 60px;
}

.expertise-list {
   display: flex;
  flex-direction: column;
	gap: 50px;
}

.expertise-block {
  display: grid;
	grid-template-columns: 40% 55%;
   gap: 5%;
  align-items: center;


}

.expertise-block:nth-child(even) {
   grid-template-columns: 55% 40%;
}

.expertise-block:nth-child(even) img {
	order: 2;
}

.expertise-block img {


   width: 100%;
                    border-radius:15px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);

}

.expertise-info h3 {
  font-size: 1.8rem;
    color  : #667eea;
  margin-bottom: 20px;
}

.expertise-info p {
    font-size: 1.05rem;
  color:       #4a5568;
  line-height: 1.8;
}

.cta-about {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 80px 20px;
    margin    :  60px 0 0;
}

.cta-about-inner {
   max-width    :   800px;
  margin: 0 auto;
					text-align: center;
	
}

.cta-about h2 {
    color: white;
    font-size: 2.6rem;
    margin-bottom: 20px;
}



.cta-about p {
  color: rgba(255,255,255,.9);
		font-size: 1.2rem;
	 margin-bottom :       40px; 
	
}

.cta-about-btn {
  display: inline-block;
   background     :  white;
	color: #667eea;
  padding    :        18px 45px;
   text-decoration: none;
   border-radius: 8px;
    font-weight: 700;
  font-size: 1.1rem;
    transition    :all .3s;
}

.cta-about-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.thankyou-wrapper {
    max-width: 900px;
     margin: 80px auto;
   padding: 0 20px;


}

.thankyou-content {
  background     :   white;
    padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,.1);
  text-align: center;
}

.success-icon {
	          margin-bottom: 30px;



}

.thankyou-content h1 {
  font-size: 2.8rem;
   color    :    #1a202c;
   margin-bottom: 25px;
}

.thankyou-message {
  font-size: 1.15rem;
	color: #4a5568;
    line-height   :        1.8;
 margin-bottom: 50px;
}

.next-steps


{
   text-align     :  left;
    margin-bottom: 50px;
}

.next-steps h2 {
   font-size: 2rem;
    text-align: center;
	color: #1a202c;
  margin-bottom: 30px;
}

.steps-list {
    display: flex;
    flex-direction: column;
       gap: 25px;
}

.step-item {
	   display: flex;
   gap: 20px;
   align-items: flex-start;}

.step-number {
   display: flex;
	 align-items: center;
    justify-content    :  center;
  width: 45px;
  height    :        45px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  border-radius: 50%;
    font-weight: 700;
    font-size: 1.3rem;
  flex-shrink  :   0;
}

.step-item p {

    flex: 1;
   color: #4a5568;
  line-height: 1.7;
	padding-top: 8px;
	}

.thankyou-actions {
   display: flex;
   gap     :      20px;
  justify-content: center;
  flex-wrap: wrap;
}

.primary-action {
    display   :inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 15px 40px;
   text-decoration: none;
   border-radius: 8px;
          font-weight: 600;
    transition     :  transform .3s;
}

.primary-action:hover {
  transform: translateY(-2px);
}

.secondary-action {

	               display:  inline-block;
      background: #f7fafc;
   color: #667eea;
  padding: 15px 40px;
   text-decoration: none;
  border-radius  : 8px;
    font-weight: 600;
          transition: all .3s;
   border:      2px solid #667eea;


}

.secondary-action:hover {
    background  :  #667eea;
	color:      white;
}

.additional-info {
   margin: 60px auto 80px;
    max-width: 900px;
   padding: 0 20px;
}

.info-container {
    background: #f7fafc;
 padding: 50px 40px;
  border-radius: 15px;
}

.info-container h2 {
         font-size:        2.2rem;
   color: #1a202c;
         margin-bottom: 20px;
  text-align: center;
}

.info-container > p {
    text-align: center;
    font-size: 1.1rem;
   color: #4a5568;
   margin-bottom: 40px;
   line-height: 1.7;
}

.contact-quick {
  display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
}

.quick-item {
   padding: 30px;
  background: white;
      border-radius: 10px;
    text-align: center;
}

.quick-item h3 {
    font-size: 1.4rem;
   margin-bottom     :        15px;
	color: #667eea;
	
}

.quick-item p {
	   color: #4a5568;
               line-height: 1.6;



}@media (max-width: 968px) {
    .story-container,
    .approach-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expertise-block,
    .expertise-block:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .expertise-block:nth-child(even) img {
        order: 0;
    }
    
    .about-hero h1 {
        font-size: 2.3rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .thankyou-content {
        padding: 40px 25px;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
    }
    
    .primary-action,
    .secondary-action {
        width: 100%;
        text-align: center;
    }
    
    .info-container {
        padding: 35px 25px;
    }
}.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;
    }
}