* {
        margin: 0;
   padding: 0;
    box-sizing: border-box;
}

body    {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
	    line-height: 1.6; 
	    color: #333;
}

.container {
  max-width: 1200px;
        margin: 0 auto;
  padding: 0 20px;
}

.main-navigation {
    background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
   top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-wrapper {
    max-width: 1200px;
   margin: 0 auto;
   display: flex;
	 justify-content: space-between;
  align-items: center;
   padding: 0 20px;
   height     :        70px;
}

.logo-section .brand-logo {
    height: 45px;
    width: auto;
}

.desktop-menu {
  display: flex;
     list-style: none;
          gap:  30px;
}

.desktop-menu a {
   text-decoration: none;

	   color: #333;

	    font-weight: 500;

	  transition :        color 0.3s ease;
}

.desktop-menu a:hover {
   color: #2563eb;
}

.mobile-toggle {
  display: none;
   flex-direction: column;
    cursor: pointer;
	gap: 4px;
}

.mobile-toggle span

{
  width: 25px;
     height: 3px;
     background: #333;
     transition: 0.3s;

}

.mobile-menu {
  display: none;
  background: #fff;
   position: absolute;
    top: 100%;
  left  :0;
    width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   padding: 20px;
}

.mobile-menu a	{
    display: block;
  padding: 10px 0;
   text-decoration: none;
    color: #333;
   border-bottom:        1px solid #eee;
}


.hero-segment


{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color   :    white;
  padding: 120px 0 80px;
   display: flex;
	align-items: center;
   min-height: 600px;
}

.hero-segment .container {
    display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 50px;
  align-items: center;
}

.hero-content h1 {
               font-size  :  3.2em;
  margin-bottom: 20px;
    font-weight: 700;
	line-height: 1.2;

}

.hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
  opacity: 0.9;
}

.hero-actions     {

		flex-wrap: wrap;
   gap: 20px;
  display: flex;
}

.primary-button, .secondary-button {
   -o-transition: all 0.3s ease;
    padding: 15px 30px;
    -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
        display: inline-block;
}  

.primary-button {
  background: #fff;
    color     :  #2563eb;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.secondary-button {
   background    :     transparent;
  color  :       #fff;
  border: 2px solid #fff;
}

.secondary-button:hover {
 background: #fff;
   color: #2563eb;
}

.hero-visual img {
  width: 100%;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.features-area  
  {
    padding: 80px 0;

	background: #f8fafc;
}

.features-area h2 {
    text-align: center;
   font-size :2.5em;
   margin-bottom: 50px;
  color: #1e293b;
}

.features-grid  {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap  : 30px;
}

.feature-card {
  background: white;
  border-radius: 12px;
    padding: 30px;
    text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition:   transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
    width: 100%;
   height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;


}

.feature-card h3 {
    color: #1e293b;
   font-size     :     1.4em;
   margin-bottom: 15px;
}

.feature-card p {
               color: #64748b;
    line-height: 1.6;
}

.cta-section {
  background: #1e293b;
    color: white;
    padding: 80px 0;
}

.cta-section .container {

	               display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
   align-items     :       center;

}

.cta-content h2 {
    font-size: 2.5em;
		 margin-bottom     :        20px;
}

.cta-content p {
  font-size: 1.1em;

    margin-bottom: 30px;

    opacity: 0.9;
}

.cta-button {
    background: #3b82f6;
    color: white;
   padding: 15px 35px;
    text-decoration: none;
   border-radius: 8px;
   font-weight: 600;
   transition: all 0.3s ease;
  display: inline-block; 
	
}

.cta-button:hover {
               background: #2563eb;
  transform: translateY(-2px);
}

.cta-image img {


  width: 100%;
    border-radius    :    12px;


	}

.methodology-section {
    padding: 80px 0;
   background: white;
}

.methodology-section h2 {
	  text-align     :  center;

	  font-size: 2.5em;

	   margin-bottom:    50px;

	               color   :#1e293b;


}

.method-blocks {
  display:   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.method-item


{
  text-align     : center; 
    padding: 30px;
}

.method-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   width: 60px;
   height: 60px;
	border-radius: 50%;
          display: flex;
   align-items: center;
    justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
   margin: 0 auto 20px;
}

.method-item h3 {
  font-size: 1.3em;
    margin-bottom: 15px;
        color :#1e293b;
}

.method-item p {
  color: #64748b;
	line-height: 1.6;
}

.contact-section {
   background: #f1f5f9;
    padding: 80px 0;
}

.contact-section h2 {
  text-align: center;
   font-size: 2.5em;
  margin-bottom     :50px;
  color    :  #1e293b;
}

.contact-wrapper {
        display: grid;
  grid-template-columns: 1fr 1fr;
    gap :   50px;
   align-items: start;
}

.contact-info h3 {
   font-size: 1.5em;
  margin-bottom: 20px;
   color: #1e293b;
}

.contact-info p

{
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 20px;

}

.contact-details p {
		margin-bottom: 10px; 
		color: #475569;
}

.contact-form	{
   background: white;
    padding: 40px;
  border-radius   :        12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
               grid-template-columns: 1fr 1fr;
  gap: 20px;
   margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 15px;
  border: 2px solid #e2e8f0;
   border-radius: 8px;
    font-size:16px;
    transition: border-color 0.3s ease; 
	
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
   border-color: #3b82f6;
}

.contact-form textarea {
	grid-column: 1 / -1;
   resize: vertical;
   min-height: 100px;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 15px 40px;
		border: none;
   border-radius :8px;
    font-size: 16px;
    font-weight: 600;
  cursor: pointer;
   transition: all 0.3s ease;
   width   :     100%;
}

.submit-btn:hover {

  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
	}

.main-footer {
    background: #1e293b;
   color: white;
  padding: 50px 0 20px;
}

.footer-content {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo  
  {
    height: 40px;
	   width: auto;
	  filter: brightness(0) invert(1);
	    margin-bottom: 15px;
}

.footer-section h4 {
    margin-bottom: 20px;
  font-size: 1.2em;
}

.footer-section ul {
   list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
  color: #94a3b8;
   text-decoration: none;
    transition: color 0.3s ease;
}



.footer-section a:hover {
  color: white;
}

.footer-section p {
  color: #94a3b8;
   line-height: 1.6;
}

.footer-bottom {
   border-top: 1px solid #334155;

   padding-top: 20px;

  text-align: center;

    color: #94a3b8;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .hero-segment .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5em;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .method-blocks {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }
    
    .contact-form {
        padding: 25px;
    }
}.desktop-menu a.active {
  color: #2563eb;

   font-weight: 600; 

}

.about-hero {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
       color: white;
  padding: 120px 0 80px;
  min-height: 500px;
}

.about-hero .container {
   gap: 50px;
  grid-template-columns: 1fr 1fr;
   align-items   :   center;
   display: grid;
}

.about-content h1 {
  font-size: 3em;
          margin-bottom  :25px;
  font-weight: 700;
}

.about-lead {
    font-size: 1.3em;
    line-height: 1.7;
  opacity: 0.95;
}

.about-image img {
    width: 100%;

	   border-radius: 15px;

	  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.company-story    {
   padding: 80px 0;
      background: #f8fafc;
}

.story-grid {
  display:      grid;
   grid-template-columns: 1fr 1fr;
  gap  : 60px;
   align-items: center;
}

.story-text h2 {
                    font-size    :2.5em;
  margin-bottom: 30px;
	 color: #1e293b;
}

.story-text p {
  margin-bottom: 20px;
   line-height: 1.8;
   color: #475569;
    font-size: 1.1em;
}

.story-visual img {
  width: 100%;
    border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.team-values {
  padding: 80px 0;
    background: white;
}

.team-values h2
	{
   text-align: center;
   font-size: 2.5em;
   margin-bottom     :  60px;
    color: #1e293b;

}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 40px;
}

.value-item {
   text-align: center;
    padding: 30px 20px;
}

.value-icon {
   margin-bottom: 25px;

}

.icon-circle	{
    width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius :        50%;
   display: flex;
   align-items: center;
  justify-content: center;
   color     :      white;
	 font-size: 1.8em;
  font-weight: bold;
   margin: 0 auto;
}

.value-item h3 {
  font-size: 1.4em;
          margin-bottom   :   15px;
   color: #1e293b;
}

.value-item p {
  color: #64748b;
  line-height: 1.6;
}

.expertise-section {
    padding: 80px 0;
   background: #f1f5f9;
}

.expertise-section h2 {
   text-align: center;
  font-size: 2.5em;
    margin-bottom: 50px;
    color: #1e293b;
}



.expertise-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap  :      50px;
   align-items: center;
}

.expertise-text h3 {
	 font-size    :1.6em;
   margin-bottom: 25px;
    color: #1e293b;
}

.expertise-list {
  list-style: none;
   padding: 0;

}

.expertise-list li {
  padding: 12px 0;
   border-bottom: 1px solid #e2e8f0;
   color: #475569;
	font-size: 1.1em;
 position: relative;
                    padding-left: 25px;
}

.expertise-list li::before {
  left:    0;
  font-weight: bold;
   position: absolute;
  content: "→";
   color: #3b82f6;

}

.expertise-visual img {
    width: 100%;
  border-radius    :   12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.approach-methodology {

	    padding: 80px 0;
  background: white;


}

.approach-methodology h2 {
   text-align: center;
  font-size: 2.5em;
 margin-bottom: 50px;
               color: #1e293b;
}

.approach-blocks {
   display:        grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
}

.approach-item {
	    background: #f8fafc;
    padding: 35px;
  border-radius     :  12px;
  border-left: 4px solid #3b82f6;


     }



.approach-item h3 {
  font-size: 1.4em;
    margin-bottom: 20px;
   color: #1e293b;
}

.approach-item p {
  color: #64748b;
   line-height: 1.7;
}

.achievements-section {
   padding: 80px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
   color: white;
}

.achievements-section h2 {
    text-align: center;

    font-size: 2.5em;

	margin-bottom: 50px;
}

.stats-container {
  display  :      grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
   text-align: center;
  padding: 20px;
}

.stat-number {
   font-size: 3.5em;
  font-weight: bold;
   color   :  #60a5fa;
   margin-bottom: 10px;
}



.stat-label {
  font-size: 1.1em;
   opacity: 0.9;
}  

.working-process {
  padding     :   80px 0;
   background: #f8fafc;
}

.working-process h2


{
    text-align  :     center;
        font-size: 2.5em;
  margin-bottom: 60px;
  color: #1e293b;
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
	gap: 30px;
   margin-bottom: 50px;
  align-items   :flex-start;
     }

.timeline-marker {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
   height: 50px;
    border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
    font-size: 1.3em;
  font-weight: bold;
   flex-shrink: 0;
}  

.timeline-content h3 {
   font-size: 1.4em;
      margin-bottom: 15px;
     color: #1e293b;
}

.timeline-content p     {
     color    :      #64748b;
    line-height: 1.6;
}

.thankyou-hero {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
   color: white;
   padding: 120px 0 80px;
    text-align: center;
   min-height: 500px;
	display: flex;
   align-items: center;
}

.thankyou-content h1  
  {
   font-size: 3.2em;

   margin-bottom: 25px;

   font-weight    :700;
}

.thankyou-message {
    line-height: 1.7;
  max-width: 600px;
    opacity    :   0.95;
  margin: 0 auto;
  font-size: 1.3em;
}

.success-icon {
    margin-bottom:     40px;
}

.checkmark-circle {
    width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
                    display: flex;
    align-items: center;
    justify-content: center;
   margin: 0 auto;
    position: relative;
}

.checkmark
	{
    width: 30px;
   height: 15px;
   border :       4px solid white;
	border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}

.next-steps {
    padding  : 80px 0; 
	    background: #f8fafc;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5em;
   margin-bottom: 50px;
	color: #1e293b;
}

.steps-grid {
     display  :     grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;}

.step-item {
    background: white;
    padding: 35px;
       border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.step-number {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
   color: white;
  width: 50px;
    height    :        50px;
   border-radius: 50%;
	display: flex;
	align-items: center;
  justify-content: center;
    font-size: 1.4em;
   font-weight: bold;
   margin: 0 auto 20px;
}

.step-item h3 {
     font-size: 1.4em;
  margin-bottom: 15px;
  color: #1e293b;


}

.step-item p {
   color: #64748b;
   line-height   :     1.6;
}

.interim-resources {
  padding: 80px 0;
    background: white;
}

.interim-resources h2    {
   text-align: center;
   font-size: 2.5em;
  margin-bottom: 50px;
  color: #1e293b;
}

.resources-content {
    display :    grid;
   grid-template-columns    :    1fr 1fr;
    gap: 50px;
    align-items: center;
}

.resource-text h3 {
      font-size :      1.6em;
  margin-bottom: 25px;
    color: #1e293b;
}

.resource-text p {
  color: #64748b;
    line-height: 1.7;
  margin-bottom: 25px;
}

.preparation-list {
   list-style: none;
  padding: 0;
}

.preparation-list li {
    padding: 10px 0;
   border-bottom: 1px solid #e2e8f0;
    color: #475569;
   position: relative;
  padding-left: 25px;
}

.preparation-list li::before {
  content: "✓";
    position: absolute;
      left: 0;
   color: #10b981;
    font-weight: bold;
}

.resource-visual img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.contact-reminder {


   padding: 80px 0;
          background: #f1f5f9;




}

.reminder-content     {

	  margin: 0 auto;
    text-align: center;
	 max-width: 800px;
	}

.reminder-content h2

{
    font-size: 2.2em;
  color: #1e293b;
  margin-bottom: 20px;
}

.reminder-content p	{
	font-size: 1.1em;
	color: #64748b;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-info-reminder {
  display:       grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
   margin-top: 40px;
}

.contact-detail {
    background: white;
    padding: 30px;
   border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); 

}

.contact-detail h4 {
  font-size: 1.3em;
   margin-bottom: 15px;
  color: #1e293b;
}

.contact-detail p {
    color: #475569;
    margin: 0;
    font-weight  :    500;
}

.back-to-site {
 padding: 60px 0;
       background: white;
}

.navigation-links {
  display:       flex;
   justify-content: center;
      gap  :        20px;
  flex-wrap: wrap;
}@media (max-width: 768px) {
    .about-hero .container,
    .story-grid,
    .expertise-content,
    .cta-section .container,
    .resources-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content h1,
    .thankyou-content h1 {
        font-size: 2.5em;
    }
    
    .values-grid,
    .approach-blocks,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-info-reminder {
        grid-template-columns: 1fr;
    }
    
    .navigation-links {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-content h1,
    .thankyou-content h1 {
        font-size: 2em;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.8em;
    }
    
    .checkmark-circle {
        width: 80px;
        height: 80px;
    }
    
    .checkmark {
        width: 25px;
        height: 12px;
    }
}.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;
    }
}