* {
   margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.7;
   color: #2c3e50;
    background: #ffffff;
	
}

.topbar-nav {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 15px 0;
    position: fixed;
   width: 100%;
  top: 0;
	 z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	}

.nav-container {
   	 max-width: 1200px;
    margin: 0 auto;
	display: flex;
   justify-content    :    space-between;
    align-items   :       center;
  padding: 0 20px;
}

.brand-zone .brand-image {
  height   :        45px;
   width: auto; 

}

.nav-links {
   display: flex;
  list-style: none;
    gap: 35px;
}



.nav-links a {
  color: white;
  text-decoration: none;
    font-weight: 500;
 transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #f1c40f;
  transform: translateY(-2px);
}

.nav-links a::after {
  content: '';
   position: absolute;
        width: 0;
  height: 2px;
   bottom: -5px;
				 left: 0;
                    background: #f1c40f;
      transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
  display: none;
                    flex-direction: column;
    cursor: pointer;
   gap:     4px;
}

.burger-line {
  width: 25px;
   height:       3px;
   background: white;
	transition: all 0.3s ease; 
	
}


.hero-section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
   padding: 120px 0 80px;
    color: white;
}

.hero-content {
   max-width: 1200px;
      margin: 0 auto;
     display: grid;
     grid-template-columns    :     1fr 1fr;
      gap: 60px;
       align-items: center;
       padding: 0 20px;
	}

.hero-text h1 {
	 font-size: 3.2rem;
  font-weight: 700;
    margin-bottom: 25px;
	line-height: 1.2;
}

.hero-text p {
   font-size: 1.2rem;
  margin-bottom    :     35px;
   opacity: 0.95;
}

.hero-actions {
   display: flex;
    gap: 20px;
  flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
    text-decoration: none;
   transition: all 0.3s ease;
    border-radius    :        50px;
 font-weight: 600;
    padding :   15px 30px;
    display: inline-block;
}

.primary-btn {
  background: white;
    color: #667eea;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.primary-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3); 
	
}

.secondary-btn {
  background: transparent;
   color: white;
    border:  2px solid white;
}

.secondary-btn:hover     {
    background: white;
	color: #667eea;
  transform: translateY(-3px);
}

.hero-visual img {
	 width: 100%;
   border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.expertise-overview {
  padding: 100px 0;
  background: #f8f9fa;
}

.section-wrapper 
 {
   max-width: 1200px; 
	  margin: 0 auto; 
	   padding: 0 20px;

}

.expertise-overview h2 {
   text-align: center;
     font-size: 2.5rem;
   margin-bottom  : 60px;
    color: #2c3e50;
}



.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap    :      40px;
}

.expertise-card {
   background     :   white;
  border-radius     :     15px;
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.expertise-card:hover  
  {
  transform: translateY(-10px); 

}

.card-visual img {
  width: 100%;
  height: 250px;
   object-fit: cover;
}

.card-content {
  padding: 30px;
}

.card-content h3 {
   font-size  :      1.4rem;
  margin-bottom: 15px;
  color     :   #2c3e50;
}



.card-content p	{
   color  :#7f8c8d;
   line-height: 1.6;
}

.transformation-story {
	   padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white; 
	


}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns    :   1fr 1fr;
  gap: 60px;
	align-items: center;
   padding: 0 20px;
} 

.story-content h2 {


  font-size: 2.2rem;
  margin-bottom   :       25px;



}

.story-content > p {
   opacity: 0.9;

  margin-bottom: 40px;

    font-size  :       1.1rem;
}

.story-benefits {
                    display: flex;
   flex-direction: column;
   gap: 25px;

}

.benefit-item h4 {
    font-size : 1.2rem;
  margin-bottom: 8px;
    color: #f1c40f;
}

.benefit-item p {
    opacity: 0.9;
}

.story-visual img {
    width: 100%;
   border-radius: 15px;
}

.cta-section {
    padding: 80px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
   color: white;
} 

.cta-wrapper {
  max-width     :    800px;
  margin    :   0 auto;
   padding   :      0 20px;
}

.cta-content h2    {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.cta-content p {
  font-size: 1.2rem;
	margin-bottom: 35px;
    opacity: 0.95;
}

.cta-button {
   background: white;
   color: #f5576c;
  padding: 18px 40px;
  border-radius  :  50px;
    text-decoration: none;
	 font-weight: 600;
   font-size: 1.1rem;
   transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.contact-section {
  padding: 100px 0;
   background: #f8f9fa;
}

.contact-container {
	   max-width: 1200px;
	 margin: 0 auto;
   display: grid;
	grid-template-columns: 1fr 1fr;
  gap    :        60px;
  padding: 0 20px;


}

.contact-info h2 {

	    font-size: 2.2rem;
  margin-bottom: 40px;
	color: #2c3e50;


}

.contact-details 
 {
  display: flex;
  flex-direction: column;
    gap: 30px;
}

.contact-item h4 {
	   font-size: 1.2rem;
   margin-bottom     :     10px;
    color: #667eea;
}

.contact-item p {
   color: #7f8c8d;
	line-height: 1.6;
}

.contact-form {
   background: white;
   padding: 40px;
         border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3     {

	  font-size: 1.8rem;
    margin-bottom: 30px;
   color: #2c3e50;
     }

.form-group {


   margin-bottom: 25px;

}

.form-group input,
.form-group select,
.form-group textarea {
   width   :100%;
    padding: 15px;
    border  :   2px solid #e0e6ed;
  border-radius: 10px;
				 font-size: 1rem;
    transition    :    border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
    border-color: #667eea;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 15px 30px;
  border: none;
    border-radius: 10px;
    font-size: 1.1rem;
  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.3);
}

.site-footer

{
  background     :#2c3e50;
	 color: white;
  padding: 60px 0 20px;
}

.footer-content {
	  max-width: 1200px;
       margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 2fr;
	gap: 40px;
    padding: 0 20px;

}

.footer-logo {
    height  :  50px;
    width: auto;
}

.footer-info

{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 40px;
}

.footer-section h4 {
   font-size: 1.2rem;
   margin-bottom: 20px;
    color: #f1c40f;
}

.footer-section ul    {
  list-style: none;
}

.footer-section ul li {
   margin-bottom   : 10px;
}

.footer-section a {
   color: #bdc3c7;
  text-decoration: none;
 transition: color 0.3s ease;
}

.footer-section a:hover   {

	   color: #f1c40f;

}

.footer-bottom {
  max-width: 1200px;
    margin: 40px auto 0;
  padding: 20px;
  border-top    :1px solid #34495e;
  text-align: center;
  color: #bdc3c7;
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 140px 0 80px;
   color: white;
   text-align: center;
}

.about-hero-content {
   max-width: 800px;
    margin  :        0 auto;
  padding: 0 20px;
     }

.about-hero h1 {
       font-size: 3rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-hero p {
  font-size: 1.2rem;
    opacity: 0.95;
   line-height: 1.6; 
	
}

.company-story
	{
  padding: 100px 0;
    background:#f8f9fa;
}

.story-wrapper {
   max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
}

.story-content {

    display: grid;
         grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items: center;

}

.story-text h2 {
   font-size: 2.5rem;
    margin-bottom    :        30px;
 color :   #2c3e50;
}

.story-text p     {
  font-size: 1.1rem;
  line-height: 1.7;
   margin-bottom :        25px;
   color: #5a6c7d;
}

.story-image img {
   width: 100%;

	   border-radius  :        15px;

	  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.values-section {
   padding:      100px 0;
   background: white; 
	
}

.values-container {
          max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
    text-align: center; 
	
}

.values-container h2 {
    font-size:2.5rem;
    margin-bottom: 60px;
  color: #2c3e50;
}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.value-card {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
    padding: 40px 30px;
    border-radius: 20px;
   color: white;
    transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-card h3 {
   font-size: 1.5rem;
  margin-bottom: 20px;
   font-weight: 600;
}

.value-card p {
   line-height: 1.6;
                    opacity: 0.95;
}

.methodology-overview {
    padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white; 
	
}

.methodology-wrapper {
   max-width: 1200px;
   margin: 0 auto;
    display: grid;
 grid-template-columns: 1fr 1fr;
	gap: 60px;
   align-items: center;
    padding: 0 20px;
}

.methodology-visual img {
   width: 100%;
   border-radius: 15px;
}

.methodology-content h2 {
    font-size : 2.2rem; 
   margin-bottom: 25px;
}

.methodology-content > p {
  font-size: 1.1rem;
   margin-bottom: 40px;
	opacity: 0.9;
    line-height: 1.7;
}

.method-steps {
   display: flex;
	 flex-direction: column;
   gap: 25px;
}

.step-item {
  background: rgba(255,255,255,0.1);
  padding: 20px;
   border-radius: 10px;
  backdrop-filter: blur(10px);
}

.step-item h4 {
  font-size: 1.2rem;
	margin-bottom: 10px;
  color: #f1c40f;
}

.step-item p {
   opacity: 0.9;
  line-height: 1.5;
	}

.team-expertise {
   padding: 100px 0;

	 background: #f8f9fa;
} 

.expertise-wrapper {
   max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; 

}

.expertise-wrapper h2 {
         text-align: center;
  font-size: 2.5rem;
   margin-bottom: 60px;
  color :    #2c3e50;
}

.expertise-showcase {
   display    :       flex;
    flex-direction: column;
  gap: 60px;
}


.expertise-item {
  display: grid;
   align-items: center;
   gap: 50px;
   grid-template-columns: 1fr 1fr; 

} 

.expertise-item:nth-child(even) {
   grid-template-columns: 1fr 1fr;
}

.expertise-item:nth-child(even) .expertise-visual {
   order: 2;
}

.expertise-item:nth-child(even) .expertise-info {
    order    : 1;

	}

.expertise-visual img {
    width  :   100%;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.expertise-info h3 {
   margin-bottom: 20px;
    color: #2c3e50;
          font-size: 1.8rem; 
	
}

.expertise-info p {
    font-size: 1.1rem;
  line-height    :  1.7;
    color: #5a6c7d;
}

.results-section {
   padding: 100px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
   text-align: center; 

}

.results-container {
    max-width: 1200px;
	   margin: 0 auto;
	   padding: 0 20px;
} 

.results-container h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.result-stat {
  background: rgba(255,255,255,0.15);
   padding: 40px 20px;
    border-radius :  15px;
  backdrop-filter: blur(10px);
}

.stat-number {
     font-size: 3rem;
  font-weight: 700;
    margin-bottom: 10px;
         color: #f1c40f;
	
}

.stat-label {
       font-size: 1.1rem;
 opacity   : 0.95;

}

.commitment-section {
    padding: 100px 0;
   background: white;
}

.commitment-wrapper {
	  max-width: 1200px;
    margin   :  0 auto;
  display :       grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items :       center;
  padding: 0 20px;
	}

.commitment-content h2 {
      font-size: 2.2rem;
    margin-bottom: 25px;
  color: #2c3e50; 


}

.commitment-content p {
    font-size: 1.1rem;
      line-height: 1.7;
    margin-bottom :25px;
    color: #5a6c7d;
}

.commitment-visual img		{
   width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.thankyou-main
{
  padding-top: 100px;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.thankyou-container {
        max-width  :    1200px;
  margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items     :  center;
    padding   :   60px 20px;


}

.thankyou-content {

    text-align: center;


}

.success-indicator {
  margin-bottom: 40px;
}

.checkmark-circle {


  width: 80px;
    height: 80px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 50%;
   display: flex;
   align-items:       center;
  justify-content   :    center;
  margin: 0 auto;
    animation: pulse 2s infinite;

}

.checkmark {
  width: 30px;
  height: 15px;
        border-left: 4px solid white;
   border-bottom: 4px solid white;
  transform: rotate(-45deg);
}@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}.thankyou-content h1 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #2c3e50;
}

.main-message {
   font-size: 1.2rem;
   line-height: 1.6;
   margin-bottom: 50px;
  color: #5a6c7d;
}

.next-steps {
   margin-bottom: 50px;
    text-align: left;
}

.next-steps h2{
    font-size  :   1.8rem;
	margin-bottom: 30px;
    color: #2c3e50;
   text-align    :        center;
}

.steps-grid {
   display: grid;
	grid-template-columns: 1fr;
   gap: 25px;
}

.step-card {
	 display: flex;
    align-items: flex-start;
   gap: 20px;
  background: white;
   padding: 25px;
    border-radius    :    15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-number {
    width: 40px;
    height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color  :      white;
   border-radius: 50%;
   display: flex;
  align-items  :       center;
  justify-content: center;
    font-weight: 600;
   flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
       margin-bottom: 8px;
     color: #2c3e50;
}

.step-content p {
    color: #5a6c7d;
  line-height: 1.5;
}

.additional-info, .contact-reminder


{
   	background: white;
         padding    :30px;
 border-radius: 15px;
    margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align:   left;
	}

.additional-info h2, .contact-reminder h3 {
     color: #2c3e50;
  margin-bottom: 15px;
}

.additional-info p, .contact-reminder p {
  color   :#5a6c7d;
  line-height: 1.6;


}

.thank-actions {
       display: flex;
    gap:        20px;
  justify-content: center;
    flex-wrap:   wrap; 
	
}

.primary-action, .secondary-action {
	   padding: 15px 30px;
	 border-radius: 50px;
	text-decoration: none;
      font-weight: 600;
    transition: all 0.3s ease;
  display: inline-block; 

}

.primary-action {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

  color: white;
}

.primary-action:hover {
  transform: translateY(-3px);

  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.secondary-action {
  background: transparent;
   color: #667eea;
  border: 2px solid #667eea;
}

.secondary-action:hover {
   color: white;
  transform: translateY(-3px);
   background: #667eea; 
	
}

.thankyou-visual img {

	   width: 100%;
    border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .methodology-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expertise-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .expertise-item:nth-child(even) .expertise-visual {
        order: 1;
    }
    
    .expertise-item:nth-child(even) .expertise-info {
        order: 2;
    }
    
    .commitment-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .next-steps {
        text-align: center;
    }
    
    .step-card {
        text-align: left;
    }
    
    .additional-info, .contact-reminder {
        text-align: left;
    }
    
    .thank-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}.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;
    }
}