* {
	   margin: 0;
  padding: 0;
    box-sizing: border-box;


}

body {
  font-family: 'Arial', sans-serif;
   line-height: 1.6;
   color: #333;
    overflow-x: hidden;
}

.container {
   max-width: 1200px;
  margin: 0 auto;
  padding  : 0 20px;
}

.primary-navigation   {
  position: fixed;
   top: 0;
	 width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
               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: 15px 20px;
	
}

.brand-container .brand-logo {
    height: 45px;
  width: auto;
}

.nav-links {
               display: flex;

 list-style: none;

   gap  :   2rem;
}

.nav-links a {
   text-decoration: none;
   color  :#333;
 font-weight: 500;
    transition: color 0.3s ease;
}  

.nav-links a:hover {
               color: #6366f1;
}

.mobile-menu-toggle {
	 display: none;
          flex-direction: column;
   cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
   width: 25px;
    height: 3px;
   background: #333;
    transition: all 0.3s ease;

}

.hero-section {
  display: flex;
   align-items: center;
    min-height: 100vh;
  padding: 100px 20px 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content {
		flex: 1;
    max-width: 600px;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
	 line-height: 1.2;
    animation: fadeInUp 1s ease-out;}

.hero-subtitle{
  font-size: 1.3rem;
   margin-bottom:    2rem;
    opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-actions {
   display: flex;
    gap: 1rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.primary-btn, .secondary-btn {
   padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
   font-weight     :        600;
	transition     :       all 0.3s ease;
	 display: inline-block;
}

.primary-btn {
   background: #fff;
   color: #667eea;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.secondary-btn {

  background :        transparent;
  color: white;
   border: 2px solid white; 
	}  

.secondary-btn:hover {
     background: white;
  color: #667eea;


}

.hero-visual {
  flex    :  1;
	 text-align: center;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-visual img {
          max-width: 100%;
       height: auto;
	 border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.services-overview {
    padding: 80px 0;
	 background: #f8fafc;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
   color: #2d3748;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
    margin-top: 2rem; 
	
}

.service-card   {
  background: white; 
   padding: 2rem; 
  border-radius : 12px; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover		{
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: #4c51bf;

  font-size: 1.4rem;

  margin-bottom: 1rem;
}

.methodology-section {
   padding     :        80px 20px;
}

.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: #2d3748;

} 

.methodology-text p {
   font-size  :   1.1rem;
   margin-bottom: 2rem;
   color: #4a5568;
}

.methodology-points {
   list-style: none;
}

.methodology-points li {
   padding: 0.5rem 0;
   position: relative;
                    padding-left: 1.5rem;
}

.methodology-points li:before {
  content: '→';
    position    :      absolute;
   left: 0;
   color: #4c51bf;
  font-weight   : bold;
}

.methodology-image img {
   width     :    100%;
   height: auto;
	 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.testimonials-section {


    padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;


}


.testimonials-section h2 {

   text-align: center;
    font-size: 2.5rem;
  margin-bottom: 3rem;

}

.testimonials-carousel {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.testimonial-item {
  background: rgba(255,255,255,0.1);
   padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.testimonial-item blockquote


{
    font-style: italic;
   font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.testimonial-item cite {
    font-weight: 600;
  opacity: 0.8;
}

.cta-section	{
   position: relative;
   padding: 100px 20px;
   text-align: center;
	 background: #2d3748;
  color: white;
   overflow: hidden;
}

.cta-background {
  width: 100%;
  z-index: -1;
    position:   absolute;
   height: 100%;
   top: 0;
   opacity: 0.3;
    left: 0;
}

.cta-background img {
   width: 100%;
    height: 100%;
   object-fit: cover;
}

.cta-content {
    max-width    :       600px;
       margin: 0 auto;
    position: relative;
       z-index: 2;
}

.cta-content h2 {

		font-size: 2.8rem;
	margin-bottom: 1rem; 
}

.cta-content p {
  font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding     :18px 35px;
    background: #4c51bf;
   color: white;
                    text-decoration: none;
  border-radius: 8px;
   font-weight: 600;
                    font-size: 1.1rem;
	transition    :      all 0.3s ease;
	
}

.cta-button:hover {
    background :       #5a67d8;
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(76,81,191,0.4);
}

.expertise-showcase	{
	   padding: 80px 0;}

.expertise-showcase h2
{
   text-align   :        center;
 font-size: 2.5rem;
   margin-bottom: 3rem;
   color: #2d3748;
}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.expertise-item {
  text-align    :     center;
}

.expertise-item img {
   width: 100%;
    height: 250px;
   object-fit: cover;
    border-radius: 12px;
  margin-bottom: 1.5rem; 
	
}

.expertise-item h3 
 {
	   font-size: 1.5rem;
    color: #4c51bf;
   margin-bottom: 1rem;
     }

.expertise-item p {


  color:      #4a5568;
	line-height: 1.7;
}

.contact-section {
    padding: 80px 0;
   background: #f7fafc;
}

.contact-section h2 {
  text-align: center;
   font-size    : 2.5rem;
  margin-bottom: 3rem;
   color: #2d3748;


}

.contact-wrapper {
  display: grid;
   grid-template-columns: 1fr 2fr;
	gap: 3rem;
    max-width: 1000px;
  margin: 0 auto; 
	
}

.contact-info h3 {
	    color: #4c51bf;
    margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 2rem; 
	
}

.contact-item strong {
    display  :      block;
  margin-bottom: 0.5rem;
  color: #2d3748;
}

.contact-form {
 background: white;
  padding: 2rem;
	border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-row{
  margin-bottom    : 1.5rem;
}

.form-row input,
.form-row select,
.form-row textarea {
       width: 100%;
    padding: 12px 15px;
   border:2px solid #e2e8f0;
  border-radius: 8px;
   font-size: 1rem;
  transition: border-color 0.3s ease;
}  

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
   border-color: #4c51bf;
}

.submit-btn {
   font-weight: 600;
   color  :        white;
	background: #4c51bf;
          border-radius: 8px;
	 padding: 15px;
  width: 100%;
   cursor: pointer;
   font-size: 1.1rem;
    border: none;
   transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #5a67d8;


} 

.site-footer {
    background: #2d3748;
    color: white;
   padding: 50px 0 20px;
}

.footer-content {
      max-width:        1200px;
	 margin: 0 auto;
    padding: 0 20px;
   display: grid;
  grid-template-columns :     1fr 2fr;
   gap: 3rem;
}

.footer-brand img {
   height: 50px;
   width: auto;
}

.footer-info {
  display:      grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {

    margin-bottom   :     1rem;
   color: #a0aec0;


}

.footer-section ul {
   list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
  text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section a:hover {
      color: white;
}

.footer-bottom {
  border-top :       1px solid #4a5568;
    padding-top: 20px;
    margin-top: 30px;
  text-align: center;
   max-width: 1200px;
	 margin-left: auto;
  margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}.nav-links a.active-nav {
  font-weight    :        600;
     color: #6366f1;
}

.page-hero-section {
	display  : flex;
    align-items: center;
   min-height: 70vh;
    padding: 120px 20px 60px;
  background: linear-gradient(135deg, #4c51bf 0%, #6366f1 100%);
  color     :   white;
}  

.page-hero-content {
   flex: 1;
   max-width:600px;
}

.page-hero-content h1
{
         line-height: 1.2;
    margin-bottom: 1.5rem;
  font-size: 2.8rem;
}

.page-hero-subtitle {
   font-size: 1.2rem;
          opacity: 0.9;
	line-height: 1.6;
}

.page-hero-visual  
  {
  -ms-flex: 1; 
  flex: 1; 
    -webkit-flex: 1; 
   text-align: center;
}

.page-hero-visual img


{
   max-width :      100%; 
	   height: auto; 
	   border-radius: 12px; 
	  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.company-story	{
   padding: 80px 0;
  background: #f8fafc;
}

.story-content h2 {
    font-size: 2.4rem;
	 margin-bottom: 2rem;
  color: #2d3748;
    text-align: center;
}

.story-content > p {
  line-height: 1.8;
	 margin-bottom: 3rem;
        font-size :   1.1rem;
    text-align: center;
                    max-width: 800px;
   color: #4a5568;
               margin-right: auto;
    margin-left: auto;


}

.mission-values {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  margin-top  :        2rem;
}

.value-item {
   background: white;
  padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   text-align: center;
  transition: transform 0.3s ease;
	
}

.value-item:hover {
  transform: translateY(-5px); 

}

.value-item h3		{
  color: #4c51bf;
	   font-size: 1.3rem;
	    margin-bottom: 1rem;
}

.value-item p {
   color: #4a5568;
  line-height: 1.6;
}

.expertise-details {
    padding: 80px 0;
}

.expertise-details h2

{
   text-align: center;
    font-size: 2.4rem;
   margin-bottom: 3rem;
  color: #2d3748;
}


.expertise-breakdown {
  max-width: 1200px;

	    margin: 0 auto;
}

.expertise-column {
	  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;
  margin-bottom: 4rem;


}

.expertise-column.reverse {
    direction: rtl;

}

.expertise-column.reverse * {
  direction: ltr;
}

.expertise-column img {
 width   :100%;
  height: 300px;
  object-fit    : cover;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.expertise-text h3 {
    color: #4c51bf;
      font-size: 1.6rem;
     margin-bottom: 1rem;
}

.expertise-text p {
    color: #4a5568;
    line-height: 1.7;
  margin-bottom: 1.5rem;
}  

.specialty-list
	{
    list-style: none;

	  padding: 0;
}

.specialty-list li {
  padding: 0.5rem 0;
   position :       relative;
  padding-left: 1.5rem;
         color: #4a5568;
}


.specialty-list li:before {
  content: '✓';
    position: absolute;
  left: 0;
    color: #4c51bf;
   font-weight: bold;
}

.methodology-deep-dive {
    padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.methodology-deep-dive h2 {

	  text-align: center;
                    font-size: 2.4rem;
   margin-bottom: 3rem;
	}

.methodology-explanation {
    max-width: 800px;
    margin: 0 auto;
}

.method-phase {
    margin-bottom   :3rem;
    position: relative;
   padding-left  :   4rem;
}

.phase-number {
     position :     absolute;
   left:     0;
   top: 0;
    width: 3rem;
  height: 3rem;
  background: rgba(255,255,255,0.2);
   border-radius: 50%;
    display: flex;
    align-items: center;
          justify-content: center;
   font-weight: bold;
  font-size: 1.2rem;
}

.method-phase h3 {
  font-size: 1.4rem;
   margin-bottom: 0.5rem;
}

.method-phase p {
   line-height: 1.7;
    opacity: 0.9; 

}

.results-showcase {

	   padding: 80px 0;
  background: #f8fafc;
	}

.results-showcase h2 {

	       text-align: center;
    font-size: 2.4rem;
	 margin-bottom: 3rem;
   color: #2d3748;
	}


.results-stats {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
	
}

.stat-item {
    text-align: center;
  padding: 2rem;
    background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stat-number {


  font-size: 2.5rem;
   font-weight: bold;
   color: #4c51bf;
    margin-bottom:    0.5rem;
     }

.stat-label {
   color :     #4a5568;
   font-weight    :     500;
	
}


.results-description {
    max-width: 700px;
    margin: 0 auto;
	text-align: center; 
	
}

.results-description p {
    font-size: 1.1rem;
   line-height: 1.7;
  color: #4a5568;
}

.about-cta {
   padding: 80px 0;
	   background: #2d3748;
	  color: white;
	   text-align: center;
}

.cta-wrapper h2 {
      font-size: 2.2rem;
   margin-bottom: 1rem;
}

.cta-wrapper p {
    font-size: 1.1rem;
    opacity   :0.9;
  margin-bottom: 2rem;
	max-width: 600px;
    margin-left  :auto;
  margin-right: auto;
}

.about-cta-btn {
  display: inline-block;
    padding: 15px 30px;
         background: #4c51bf;
   color: white;
  text-decoration  :   none;
    border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-cta-btn:hover {
    background: #5a67d8;
  transform: translateY(-2px);
}

.thankyou-hero {
   padding: 120px 0 80px;
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
	color: white;
    text-align: center;
}

.thankyou-content
	{
         max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 2rem; 
	
}

.checkmark-circle {
		width: 80px;
    height: 80px;
  background: rgba(255,255,255,0.2);
    border-radius: 50%;
   display     : flex;
  align-items: center;
  justify-content: center;
   margin: 0 auto;
  animation: pulse 2s infinite;
}

.checkmark {
    width: 25px;
   height: 15px;
  border: 3px solid white;
  border-top: none;
  border-right:        none;
  transform: rotate(-45deg);
}

.thankyou-content h1 {
        font-size: 2.5rem;
    margin-bottom :   1rem;
}

.thankyou-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
	margin-bottom: 3rem;
   line-height: 1.6;
}

.next-steps {
   margin-bottom: 3rem;
}

.next-steps h2 {
   font-size: 1.8rem;
    margin-bottom: 2rem;
}

.steps-container {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
    margin-top: 2rem;
}

.step-item {
  background: rgba(255,255,255,0.1);
  padding:   1.5rem;
    border-radius: 12px;
  backdrop-filter: blur(10px);
}

.step-number{
     width: 40px;
    height: 40px;
    background: white;
      color: #38a169;
         border-radius: 50%;
   display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
   margin: 0 auto 1rem;
	

}

.step-content h3 {
  font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-content p{
        line-height: 1.5;
  opacity: 0.9;
    font-size: 0.95rem;
}

.contact-reminder {
  background: rgba(255,255,255,0.1);
       padding: 2rem;
  border-radius: 12px;
  margin-bottom:     3rem;
  backdrop-filter: blur(10px);
}

.contact-reminder h3 {
  font-size: 1.3rem;

	       margin-bottom: 1rem;
}

.contact-reminder p {
                    margin-bottom: 0.5rem;
}

.office-address {
   opacity: 0.8;
  font-size: 0.95rem;
}

.thankyou-actions {
  display: flex;
    gap: 1rem;
  justify-content: center;
   flex-wrap: wrap;
}

.thankyou-visual {
   margin-top: 3rem;
}

.thankyou-visual img
	{
       max-width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);


}

.additional-resources {
     padding: 80px 0;
    background: #f8fafc; 

}

.additional-resources h2 {
   text-align: center;
  font-size: 2.2rem;
       margin-bottom: 3rem;
    color: #2d3748;
}

.resources-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: white;
   padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
 transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
} 

.resource-card h3 {
    color: #4c51bf;
   font-size: 1.3rem;
  margin-bottom: 1rem;
}

.resource-card p {
  color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-card a {
                    color: #4c51bf;
    text-decoration    :    none;
	 font-weight: 600;
    transition: color 0.3s ease;
}

.resource-card a:hover  
  {
    color: #5a67d8;
}

.resource-tip {
          background: #fef5e7;
  color: #d69e2e;
        padding: 0.3rem 0.8rem;
   border-radius: 20px;
  font-size: 0.85rem;
    font-weight: 600;
}@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .page-hero-section {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }
    
    .page-hero-content {
        margin-bottom: 2rem;
    }
    
    .page-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .expertise-column,
    .expertise-column.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .method-phase {
        padding-left: 0;
        text-align: center;
    }
    
    .phase-number {
        position: relative;
        margin: 0 auto 1rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .results-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-values {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}.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;
    }
}