* {
   margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {


  font-family: 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.6;
   color: #2c3e50;
               background: #ffffff;
     }

.main-nav {
    background: #1a1a2e;
   padding: 1.2rem 0;
               position: sticky;
  top   :       0;
       z-index   :     1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
    margin: 0 auto;
   padding: 0 20px;
          max-width: 1200px;
  justify-content: space-between;
  align-items: center;
   display: flex;
}

.logo-section .brand-logo {
	height: 45px;
   width: auto;
}

.burger-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction     :     column;
      gap: 5px;
}

.burger-toggle span {
         width: 28px;
	 height: 3px;
   background: #e94560;
   transition:   0.3s;
  border-radius :        2px;
}

.nav-links {
	   display: flex;
    gap: 2.5rem;
    align-items     :      center;
     }

.nav-links a {
  color: #f1f1f1;
  text-decoration: none;
  font-weight: 500;
   transition: color 0.3s;
    font-size: 1.05rem;
}

.nav-links a:hover {
    color: #e94560;
}

.nav-links .cta-link {
  background: #e94560;
   padding: 0.6rem 1.5rem;
  border-radius: 5px;
   color: white;
}

.nav-links .cta-link:hover {

		background: #d63651;
    color: white;
     }

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5rem 20px;
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
    max-width: 1200px;
    margin :0 auto;
}

.hero-content h1 {
   font-size: 2.8rem;
  color: white;
   margin-bottom  :   1.2rem;
   line-height: 1.2;
}

.hero-desc {
   color:      #f0f0f0;
    font-size: 1.15rem;
  margin-bottom: 2rem;
}

.hero-actions {
	display: flex;
   gap: 1.2rem;
}

.primary-btn, .secondary-btn {
       padding: 0.9rem 2rem; 
    text-decoration:     none; 
   border-radius: 6px; 
   font-weight: 600; 
   transition: all 0.3s; 
    display: inline-block;
}

.primary-btn {
  background: #e94560;
    color: white;
}

.primary-btn:hover {
        background     :   #d63651;
  transform: translateY(-2px);
}

.secondary-btn {
  background: white;
    color: #667eea;
}

.secondary-btn:hover {
    background: #f0f0f0;
}

.hero-visual img  {
  width: 100%;
   border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);

}

.benefits-area   {
  padding: 5rem 20px;
  background: #f8f9fa;
}

.content-container {
   max-width: 1200px; 
	   margin    :    0 auto;
}

.benefits-area h2 {
  text-align  :   center;
		font-size: 2.5rem;
  margin-bottom  :      3rem;
  color   :      #1a1a2e;
}

.benefits-grid {
	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;

}

.benefit-card {
    background   :     white;
  padding: 2rem;
   border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
	
} 

.benefit-card h3 {
     color: #667eea;
  font-size: 1.5rem;
  margin-bottom: 1rem;
	}

.benefit-card p {
    color: #555;
  line-height: 1.7;
} 

.services-showcase {
  background     :        white; 
  padding: 5rem 20px; 

}

.services-showcase h2 {
     text-align     :   center;
  font-size: 2.5rem;
   margin-bottom  :     3rem;
    color: #1a1a2e;
     }

.services-layout {
    display    : flex;
  flex-direction: column;
    gap: 3rem;


}

.service-item {
	display: grid;
   grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: center;
}

.service-item:nth-child(even) {


   grid-template-columns: 1.5fr 1fr;
	
	}

.service-item:nth-child(even) img {
   order: 2;
}

.service-item img {
    width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-details h3		{
  font-size: 1.8rem;
          color: #1a1a2e;
  margin-bottom  :   1rem;
}

.service-details p {
   color     : #555;
 line-height: 1.7;
   font-size: 1.05rem;}

.cta-section 
 {
     background: linear-gradient(135deg, #e94560 0%, #d63651 100%);
  padding: 5rem 20px;
    color: white;
     }

.cta-wrapper {
   max-width: 1200px;
   margin: 0 auto;
   text-align: center;
} 

.cta-text h2 {
    font-size: 2.5rem;
  margin-bottom :  1.5rem;
}

.cta-text p {
   max-width: 800px; 
	    margin-right:   auto; 
	  margin-bottom: 2rem; 
	    font-size: 1.15rem; 
		margin-left: auto;
}

.cta-image {
   margin   :        2rem 0;
	
}

.cta-image img
{
                    max-width: 600px;
               width: 100%;
   border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-button {
   color: #e94560;
    padding  :        1rem 2.5rem;
   background: white;
  transition: all 0.3s;
    border-radius: 6px;
   font-weight: 700;
    display: inline-block;
	 text-decoration: none;
    font-size: 1.1rem;
}

.cta-button:hover {
   background: #f8f8f8; 
  transform: translateY(-3px); 
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.process-explanation {
  padding: 5rem 20px;

    background: #f8f9fa;
}

.process-explanation h2 {
    text-align: center;
    font-size: 2.5rem;
     margin-bottom: 3rem;
       color: #1a1a2e;
}

.process-steps {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
     }

.step-box {
   background: white;
   padding: 2rem;
	 border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	 text-align: center;
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
  color: #667eea;
    margin-bottom: 1rem;
}

.step-box h3 {
   font-size: 1.5rem; 
	 color: #1a1a2e; 
  margin-bottom: 1rem;
}

.step-box p {
    color: #555;
    line-height: 1.7;
}

.contact-section     {
   padding: 5rem 20px;
	 background: white;
}

.contact-section h2 {
   text-align:      center;
   font-size :        2.5rem;
    margin-bottom: 3rem;
   color: #1a1a2e;
}


.contact-layout {
	display: grid;
  grid-template-columns: 2fr 1fr;
   gap: 3rem;
   max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  background: #f8f9fa;
	 -moz-border-radius: 8px;
  padding: 2rem;
    border-radius: 8px;


}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
   display: block;
   margin-bottom: 0.5rem;
   color: #1a1a2e;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
  border     :   2px solid #ddd;
   border-radius: 5px;
   font-size: 1rem;
               font-family: inherit;
   transition   :    border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; 
  border-color: #667eea;
}

.submit-btn {

    border: none;
   border-radius: 5px;
    padding: 1rem 2rem;
     background: #667eea;
   font-size: 1.05rem;
  color: white;
   font-weight:        600;
    transition: all 0.3s;
   width: 100%;
    cursor: pointer;

}

.submit-btn:hover {
  background  :     #5568d3;
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
      flex-direction: column;
       gap: 2rem;
	}  

.info-block h3 {
   color: #1a1a2e;
  font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.info-block p {
    color: #555;
  line-height: 1.7;
}

.main-footer {
    background: #1a1a2e;
   color     :     #f1f1f1;
   padding: 3rem 20px 1rem;
}

.footer-content {
   max-width   :        1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
   margin-bottom: 2rem;
}

.footer-logo {
      height: 40px;
    margin-bottom     :     1rem;
  filter: brightness(0) invert(1);
}

.footer-desc {
  color    :      #bbb;
    line-height: 1.7;
  font-size: 0.95rem;
}

.footer-column h4 {
   color: #e94560;
  margin-bottom: 1rem;
   font-size: 1.2rem;
}

.footer-links {


   list-style: none;}

.footer-links li


{
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
  color     :    #e94560;
}

.footer-column p {
  color: #bbb;
               line-height: 1.7;
   margin-bottom: 0.5rem; 
	
}

.footer-bottom {
	  text-align: center;
   padding-top: 2rem;
   border-top: 1px solid #333;
	 color: #888;
}  @media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        background: #1a1a2e;
        flex-direction: column;
        width: 70%;
        height: calc(100vh - 70px);
        padding: 2rem;
        transition: right 0.3s;
        box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .service-item,
    .service-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-item:nth-child(even) img {
        order: 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }
}.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;
    }
}.page-header {


  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
       padding: 4rem 20px;
  text-align: center;
   color: white; 
	
	}

.header-content h1 {
    font-size: 3rem;
  margin-bottom: 1rem;

}

.header-content p {
  font-size: 1.2rem;
  color: #ddd;
    max-width: 700px;
    margin: 0 auto;
}


.story-section		{
   padding: 5rem 20px;
     background: white;
}

.story-layout   {


   grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
	display: grid;
   align-items: center;


}

.story-text h2 {
    font-size: 2.3rem;
  color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.story-text p {
       color: #555;
	 line-height: 1.8;
  margin-bottom: 1.2rem;
                    font-size: 1.05rem;
}

.story-image img {
   width: 100%;
   border-radius     : 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.values-section {
    padding: 5rem 20px;
	background: #f8f9fa;
}

.values-section h2 {
    text-align   :     center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
                    color: #1a1a2e;
}

.values-grid {
         display  :      grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
   background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   border-left: 4px solid #667eea; 

}



.value-card h3 {
     color: #667eea;
  font-size: 1.5rem;
   margin-bottom: 1rem;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}



.approach-section {
   padding: 5rem 20px;
  background: white;
}

.approach-section h2 {

     text-align:    center;
  font-size: 2.5rem;
    margin-bottom: 3rem;
    color     :  #1a1a2e;


}



.approach-content {
   display: grid;
		grid-template-columns: 1fr 1.3fr;
   gap: 3rem;
    align-items: start;
}

.approach-visual img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.method-item {
	 margin-bottom: 2rem;
  padding-left: 1.5rem;
    border-left: 3px solid #e94560;
}

.method-item h3 {


	 color: #1a1a2e;
   font-size: 1.4rem;
  margin-bottom: 0.8rem;


}

.method-item p {
	   color: #555;
      line-height: 1.7;


}

.expertise-section {
   padding: 5rem 20px;
  background: #f8f9fa;
}

.expertise-section h2	{
   text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
   color: #1a1a2e; 
	
}

.expertise-layout {
  display: grid;
   grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;}

.expertise-text p {
    color: #555;
    line-height: 1.8;
  margin-bottom: 1.2rem;
      font-size: 1.05rem;
}

.expertise-visual img {

   width: 100%;
	 border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.results-showcase {
    padding: 5rem 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.results-showcase h2 {
   text-align: center;
 font-size: 2.5rem;
   margin-bottom: 3rem;
}

.results-grid {

	    display :      grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
}

.result-box {
   text-align: center;
   padding: 2rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.result-number    {

	  display: block;
   font-size: 3rem;
   font-weight: 700;
  margin-bottom: 0.5rem;
	color: #fff;
	}


.result-box p
	{


  font-size: 1.1rem;
    color: #f0f0f0;
	}

.mission-section {
               padding: 5rem 20px;
    background: white;
}

.mission-wrapper {
    display: grid;
       grid-template-columns  :   1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.mission-image img {
   width: 100%;
   border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.mission-content h2 {
     font-size: 2.3rem;
    color: #1a1a2e;
      margin-bottom: 1.5rem;}

.mission-content p 
 {
               color: #555;
          line-height  :  1.8;
   margin-bottom: 1.2rem;
   font-size: 1.05rem;
}

.mission-cta {
   display     :     inline-block;
    background: #e94560;
   color: white;
    padding: 0.9rem 2rem;
    border-radius: 6px;
   text-decoration: none;
                    font-weight: 600;
    margin-top: 1rem;
   transition: all 0.3s;
}

.mission-cta:hover {
    background: #d63651; 
	  transform: translateY(-2px);
}

.thankyou-wrapper {


    min-height: 70vh;
   display: flex;
  align-items: center;
     padding: 4rem 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

}

.thankyou-container {
          margin: 0 auto;
   display: grid;
       max-width: 1200px;
    gap : 3rem;
    grid-template-columns  :  1.5fr 1fr;
	align-items: center;
}

.thankyou-content {
  background  :  white;
    padding: 3rem;
   border-radius : 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.success-icon {
     text-align: center;
   margin-bottom: 1.5rem;
}

.thankyou-content h1 {
    color: #1a1a2e;
  margin-bottom: 1rem;
    font-size: 2.5rem;
                    text-align: center;
	
     }

.thankyou-message
	{
	text-align: center;
  color: #555;
    font-size: 1.1rem;
               line-height: 1.7;
          margin-bottom    :        2rem;
}

.next-steps {
  margin    :      2rem 0;
   padding: 2rem;
  background: #f8f9fa;
	 border-radius     :   8px;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom :        1.5rem;
  text-align: center;
}

.steps-list {
   display: flex;
    flex-direction: column;
   gap: 1rem;
}

.step-item    {
    display   :    flex;
   align-items: start;
  gap: 1rem;
}

.step-num {
  background: #667eea;
   color     :       white;
  width: 35px;
   height: 35px;
    border-radius: 50%;
      display: flex;
    align-items     :    center;
    justify-content: center;
   font-weight: 700;
      flex-shrink: 0;
}

.step-item p {

  color: #555;

   line-height: 1.7;

  padding-top: 0.3rem;
     }

.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content    :      center;
   margin: 2rem 0;
}

.primary-action, .secondary-action
	{
    padding: 0.8rem 1.8rem;
  border-radius: 6px;
    text-decoration :  none;
               font-weight: 600;
   transition: all 0.3s;
}

.primary-action {
  background     :   #667eea;
  color: white;
}

.primary-action:hover {
  background: #5568d3;
  transform: translateY(-2px);
}

.secondary-action {
			background: #e94560;
      color: white;
}

.secondary-action:hover {
      background: #d63651;
  transform: translateY(-2px);
	
}

.additional-info		{
    margin-top: 2rem;
   padding-top   :      2rem;
    border-top: 2px solid #f0f0f0;
}

.additional-info h3 {
   color: #1a1a2e;
  font-size   :  1.3rem;
 margin-bottom   :  0.8rem;
}

.additional-info p {
    color: #555;
    line-height  :    1.7; 
	
}

.thankyou-visual img {

	     width:     100%;
        border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);


}

.contact-info-section {
    padding: 4rem 20px; 
	   background: white;}  

.contact-info-section h2 {
	 text-align   :        center;
    font-size   :    2.3rem;
  margin-bottom: 2rem;
    color: #1a1a2e;
}

.contact-boxes     {
   display   :   grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
   max-width: 800px;
    margin: 0 auto; 
	
}

.contact-box     {
    background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
   text-align: center;}

.contact-box h3 {
      color: #667eea;
          font-size: 1.4rem;
          margin-bottom: 1rem;
}

.contact-box p {
  color: #555;
  line-height: 1.7;
}
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 20px;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .story-layout,
    .approach-content,
    .expertise-layout,
    .mission-wrapper,
    .thankyou-container {
        grid-template-columns: 1fr;
    }

    .approach-content {
        grid-template-columns: 1fr;
    }

    .approach-visual {
        order: -1;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}