* {
  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-color: #ffffff;
}

.navbar-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1rem 0;
   position: fixed;
   top: 0;
          width: 100%;
    z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-wrapper {

    max-width: 1200px;
   margin: 0 auto;
    display: flex;
   justify-content: space-between;
   align-items: center;
     padding: 0 2rem;
     }

.brand-section .logo-img {

	  height: 45px;
                    width: auto;

}

.nav-links {
	display: flex;
   list-style: none;
    gap  :    2.5rem;
}

.nav-link    {
     color: #ffffff;
   text-decoration     :  none;
   font-weight: 500;
       font-size: 1.1rem;
   transition: color 0.3s ease;
   position: relative;
}

.nav-link:hover {

    color: #f1c40f;
	}

.nav-link::after {
  content: '';
  position: absolute;
    bottom: -5px;
    left: 0;
  width: 0;
	height: 2px;
  background-color   :    #f1c40f;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
	}

.burger-toggle {
  display: none;
                    flex-direction: column;
  cursor: pointer;
    gap: 4px;
}

.burger-line {
   width :    25px;
  height: 3px;
   background-color: #ffffff;
  transition: all 0.3s ease;


}

.burger-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-toggle.active .burger-line:nth-child(2) {
       opacity: 0;


}

.burger-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

main {
   margin-top: 80px;
}



.hero-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 0;
    color: #ffffff;
}

.hero-content {
   max-width: 1200px;
  margin: 0 auto;
     display   :grid;
         grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items: center;
    padding     : 0 2rem;
}

.hero-text-block h1 {
    font-size :     3.2rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
	line-height: 1.2; 

}

.hero-description {
   font-size: 1.3rem;
   margin-bottom: 2.5rem;
   opacity: 0.9;
  line-height: 1.7;
}

.hero-actions {
       display: flex;
   gap: 1.5rem;
     }

.btn-primary, .btn-secondary {


     padding: 1rem 2rem;
    border-radius: 8px;
   text-decoration :      none;
   font-weight   :       600;
    font-size: 1.1rem;
   transition     : all 0.3s ease;
   border: 2px solid transparent;


}

.btn-primary {


 background-color: #f1c40f;
    color   :       #2c3e50;}

.btn-primary:hover
{

	  background-color: #f39c12;
  transform: translateY(-2px);


}

.btn-secondary {
  background-color: transparent;
    color: #ffffff;
     border-color: #ffffff;
}

.btn-secondary:hover {
   background-color: #ffffff;
	color: #667eea;
}

.hero-image {
  width: 100%;
	height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
} 

.expertise-overview {
	padding    :      6rem 0;
	 background-color  :       #f8f9fa;
}

.container-fluid  
  {
   max-width: 1200px;
	  padding: 0 2rem;
	    margin: 0 auto;
}

.expertise-overview h2 {
  font-size: 2.8rem;
   margin-bottom: 4rem;
	color: #2c3e50;
   text-align: center;
  font-weight: 700;
}

.expertise-grid {


   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
	}

.expertise-item {
   background  :  #ffffff;
    padding  :  2.5rem;
   border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.expertise-img {
  width: 100%;
  height: 200px;
   object-fit: cover;
        border-radius: 10px;
   margin-bottom: 1.5rem;
}

.expertise-item h3 {
   font-size: 1.6rem;
    margin-bottom:     1rem;
   color: #2c3e50;
               font-weight: 600;
}

.expertise-item p {
  color: #5a6c7d;
    line-height: 1.7;
   font-size: 1rem;
}

.methodology-deep-dive {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		color: #ffffff;
}

.content-container {
    max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap    :        4rem;
  align-items: center;
    padding: 0 2rem;
}

.methodology-content h2 {
   font-size   :    2.5rem;
  margin-bottom    :2rem;
   font-weight: 700;
}

.methodology-content p {
   font-size: 1.1rem;
   margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

.methodology-highlights {
  margin-top: 3rem;
}

.highlight-point {
  margin-bottom: 2rem;
   padding-left: 1.5rem;
  border-left: 3px solid #f1c40f;
}

.highlight-point h4 {
    font-size: 1.3rem;
  margin-bottom: 0.5rem;
	color: #f1c40f;
}

.highlight-point p {
    font-size: 1rem;
	 opacity: 0.8;
}

.methodology-img   {
    width  :        100%;
	   height :       auto;
	                    border-radius: 12px;
	  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.cta-conversion {
  color: #ffffff;
   text-align: center;
   background-color: #2c3e50;
  padding: 6rem 0;
}

.cta-wrapper  
  {
   max-width: 800px;
   margin: 0 auto;
  padding : 0 2rem;
}

.cta-content h2 {
  font-size: 2.8rem;
   margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content > p  
  {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-benefits {
	    margin-bottom: 3rem;
  text-align: left;
  display: inline-block;
}

.cta-benefits p {
   font-size    :  1.1rem; 
	   margin-bottom: 0.8rem; 
	         padding-left: 1rem;
}

.cta-button {
  background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    color: #2c3e50;
    padding: 1.2rem 3rem;
    border-radius :  50px;
	text-decoration : none;
    font-weight: 700;
  font-size: 1.2rem;
    transition: all 0.3s ease;
	 display:      inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(241, 196, 15, 0.3);
}

.contact-section {
  padding: 6rem 0;
   background-color     :      #f8f9fa;
}  

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-section h2 {
  text-align: center;
    font-size  : 2.8rem;
    margin-bottom: 1.5rem;
   color: #2c3e50;
    font-weight: 700;
}

.contact-intro {
	text-align: center;
    font-size: 1.2rem;
  margin-bottom: 3rem;
         color: #5a6c7d;
  line-height     :        1.6;
}

.contact-form {
  background: #ffffff;
  padding: 3rem;
    border-radius   :       15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
   margin-bottom    :    1.5rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.form-input, .form-select, .form-textarea {
   width: 100%;
  padding: 1rem;
    border: 2px solid #e0e6ed;
   border-radius: 8px;
    font-size    :1rem;
  transition: border-color 0.3s ease;
        font-family: inherit;
	
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline  :        none;
	border-color: #667eea;
}

.form-textarea {
  resize: vertical;
   min-height   : 120px;
}

.submit-btn     {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color  :      #ffffff;
   padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
    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 20px rgba(102, 126, 234, 0.3);
}

.site-footer {
    background-color: #2c3e50;
        color: #ffffff;
   padding: 4rem 0 2rem;
}

.footer-container {
   max-width: 1200px;
  margin    :   0 auto;
  display: grid;
   grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding     :        0 2rem;
}

.footer-logo {
  height: 40px;
  width: auto;
	 margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1.1rem;
       opacity: 0.8;
  line-height: 1.6;
}

.footer-navigation h4, .footer-contact h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #f1c40f;
    font-weight: 600;
}

.footer-links {
        list-style :  none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bdc3c7;
  text-decoration: none;
        transition: color 0.3s ease;}

.footer-links a:hover{
   color: #f1c40f; 

}

.contact-details p {
    margin-bottom: 0.8rem;
    color: #bdc3c7;
 line-height: 1.6;
}

.footer-bottom
{
    margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
          text-align: center;
   color: #95a5a6;
}@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -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: 3rem;
        transition: right 0.3s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text-block h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .content-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .methodology-content {
        text-align: center;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 0 1rem;
    }
    
    .hero-banner {
        padding: 4rem 0;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-text-block h1 {
        font-size: 2rem;
    }
    
    .container-fluid, .contact-container, .cta-wrapper {
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .expertise-overview, .methodology-deep-dive, .cta-conversion, .contact-section {
        padding: 4rem 0;
    }
}.about-hero     {
  background: linear-gradient(135deg, #2c3e50 0%, #4a6741 100%);
   padding    :     6rem 0;
         color: #ffffff;
}

.about-hero-content {
    max-width: 1200px;
	margin:     0 auto;
    display: grid;
    grid-template-columns :1fr 1fr;
   gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.about-hero h1 {
    font-size: 3.5rem;
       font-weight: 800;
   margin-bottom: 1.5rem;
   line-height: 1.1;
}

.about-hero-description  {

    font-size: 1.3rem; 
   line-height: 1.8; 
   opacity: 0.9;}

.about-hero-img 
 {

	width: 100%;
  height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
	

}

.company-story {
  padding: 7rem 0;
   background-color :#f8f9fa;
	
}

.story-container {
   max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
 text-align: center;
}

.company-story h2		{
  font-size: 2.8rem;
   margin-bottom: 3rem;
    color: #2c3e50;
   font-weight: 700;
}

.story-content p {
    font-size: 1.2rem;
  line-height: 1.8;
    margin-bottom  : 2rem;
   color: #5a6c7d;
   text-align: left;
}

.methodology-approach {
  padding: 6rem 0;
    background: #ffffff;
}

.approach-container {
    padding    :       0 2rem;
  max-width: 1200px;
    margin: 0 auto;
}

.methodology-approach h2    {
    text-align: center;
	 font-size: 2.8rem;
  margin-bottom: 4rem;
	 color: #2c3e50;
    font-weight: 700;
}

.approach-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 3rem; 
	
}

.approach-item {
    background: #f8f9fa;
  padding: 2.5rem;
   border-radius    :15px;
    transition: transform 0.3s ease;} 

.approach-item:hover {
     transform: translateY(-8px);}

.approach-img {

    width: 100%;
   height: 220px;
               object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;

}

.approach-item h3 {
  font-size     :        1.6rem;
       margin-bottom: 1rem;
      color: #2c3e50;
   	font-weight: 600;
}



.approach-item p {
   color: #5a6c7d;
	line-height: 1.7;
   font-size: 1rem;
}

.team-expertise 
 {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color   :     #ffffff;
}

.expertise-container {
  padding    :      0 2rem;
  margin: 0 auto;
   max-width: 1000px;
}

.team-expertise h2 {
  text-align: center;
    font-size: 2.8rem;
  margin-bottom    :     4rem;
    font-weight: 700;
}

.expertise-details	{
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
}

.expertise-block {
  background: rgba(255,255,255,0.1);
   padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.expertise-block h3 {

  font-size: 1.5rem;
   margin-bottom: 1rem;
  color: #f1c40f;
   font-weight: 600;

}

.expertise-block p {
   line-height: 1.7;
    opacity: 0.9;
}

.values-mission {
    background-color: #ffffff;

	   padding: 6rem 0;
}

.values-container {
    max-width: 1200px;
  margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
       gap: 4rem;
   align-items: center;
   padding    :        0 2rem;
}

.mission-content h2 {
    font-size: 2.5rem;
	 margin-bottom: 2rem;
   color: #2c3e50;
   font-weight: 700;
}

.mission-content p {
  font-size    :       1.1rem;
  color: #5a6c7d;
  margin-bottom: 1.8rem;
  line-height: 1.8;
}

.mission-img     {
    width: 100%;
         height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.company-achievements {
   padding: 6rem 0;
   background-color: #f8f9fa;
}

.achievements-container {
  max-width   :     1200px;
    margin: 0 auto;
  padding: 0 2rem; 
	
}

.company-achievements h2
{

	   text-align: center;
    font-size  :      2.8rem;
    margin-bottom: 4rem;
    color: #2c3e50;
	font-weight: 700;


}

.achievements-stats {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
   margin-bottom: 4rem;
     }

.stat-item {
    text-align: center;
	background: #ffffff;
   padding: 2rem;
    border-radius   :12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stat-number {
   font-weight: 800;
    color: #667eea;
    font-size: 3rem;
   margin-bottom: 0.5rem;
}  

.stat-label{
  font-size: 1.1rem;
                    color: #5a6c7d;
    font-weight: 500;
}

.achievements-highlights  
  {
   background: #ffffff; 
	    padding: 3rem; 
	  border-radius    :    15px; 
	  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.achievements-highlights h3 {
   font-size :    2rem;
  margin-bottom: 2rem;
	color: #2c3e50;
    font-weight: 600;
}

.highlights-list {
   list-style: none;
   padding: 0;
}

.highlights-list li {
   font-size: 1.1rem;
        line-height: 1.6;
	margin-bottom: 1rem;
   padding-left: 2rem;
  position: relative;
  color: #5a6c7d;
}

.highlights-list li::before {
  content: '✓';
   position: absolute;
    left   :      0;
   color: #27ae60;
    font-weight: bold;
	font-size:1.2rem;
}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  padding     :   6rem 0;
	color  :#ffffff;
    min-height    : 70vh;
    display: flex;
  align-items: center; 

}

.thankyou-container {
    max-width: 1200px;
    margin: 0 auto;
	 display: grid;
  grid-template-columns: 1fr 1fr;
   gap    :        4rem;
  align-items   :    center;
  padding: 0 2rem;
}

.thankyou-content {

  text-align: left;
	}

.success-icon
{
  margin-bottom: 2rem;
}

.checkmark-circle {
    width: 80px;
  height: 80px;
       border-radius: 50%;
  background: rgba(255,255,255,0.2);
   display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom:1rem;
}

.checkmark{

   width: 25px;
  height: 40px;
    border: solid #ffffff;
    border-width: 0 4px 4px 0;
  transform: rotate(45deg);


}

.thankyou-content h1 {
         font-size: 3rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
	line-height: 1.2;
}

.thankyou-message {

	font-size: 1.2rem;
   line-height: 1.7;
         margin-bottom: 3rem;
   opacity: 0.9;}

.next-steps h2 {
  font-size   :   2rem;
               margin-bottom: 2rem;
   font-weight: 600;
}

.steps-list {
   margin-bottom: 3rem;
}

.step-item {
  display: flex;
	align-items: flex-start;
    margin-bottom: 2rem;
  gap  :1.5rem;
}

.step-number {
  background: rgba(255,255,255,0.2);
      color: #ffffff;
  width: 40px;
  height: 40px;
   border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
	 font-weight     :      700;
    font-size: 1.2rem;
   flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.3rem;
    margin-bottom: 0.5rem;
   font-weight: 600;
}

.step-content p {
    opacity: 0.9;
     line-height: 1.6; 
	
}

.resources-section {
  margin-bottom: 3rem;
}

.resources-section h2 {
  font-size: 2rem;
   margin-bottom  :       1rem;
    font-weight: 600;
}

.resources-section > p {
   font-size: 1.1rem;
    margin-bottom: 2rem;
   opacity: 0.9;
}

.resource-tips {
   display: grid;
        gap: 1.5rem;


}

.tip-item {
  background: rgba(255,255,255,0.1);
   padding: 1.5rem;
   border-radius: 10px;
  backdrop-filter: blur(5px);
}

.tip-item h4 {
      font-size :      1.2rem;
   margin-bottom: 0.5rem;
  color: #f1c40f;
}

.tip-item p		{
  opacity: 0.9;
  line-height: 1.6;
}

.thankyou-actions {
  display: flex;
  gap: 1.5rem;
   flex-wrap: wrap;
}

.thankyou-img {
  width: 100%;
   height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.contact-reminder {
    padding: 5rem 0;
    background-color    :    #f8f9fa;
}


.reminder-container {
    max-width: 800px;
    text-align :      center;
  margin: 0 auto;
    padding: 0 2rem;
}

.contact-reminder h2 {
	 font-size    :    2.5rem;
    margin-bottom: 1.5rem;
  color: #2c3e50;
    font-weight  :       700;


}

.contact-reminder > p
{
  font-size: 1.2rem;
   margin-bottom: 3rem;
   color: #5a6c7d;
    line-height: 1.7;
}

.contact-info {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}



.contact-item {
    background    :  #ffffff;
   padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-item h3 {
	 font-size: 1.4rem;
  margin-bottom: 1rem;
   color: #2c3e50;
  font-weight: 600;


}

.contact-item p {
    color: #5a6c7d;
  line-height: 1.6;
    font-size: 1.1rem;
}@media (max-width: 768px) {
    .about-hero-content, .thankyou-container, .values-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-hero h1, .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .expertise-details {
        grid-template-columns: 1fr;
    }
    
    .expertise-block {
        text-align: center;
    }
    
    .achievements-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .thankyou-actions {
        justify-content: center;
    }
    
    .company-story, .methodology-approach, .team-expertise, .values-mission, .company-achievements, .thankyou-hero, .contact-reminder {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .about-hero-content, .thankyou-container, .values-container, .approach-container, .story-container, .expertise-container, .achievements-container, .reminder-container {
        padding: 0 1rem;
    }
    
    .about-hero h1, .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .achievements-stats {
        grid-template-columns: 1fr;
    }
    
    .achievements-highlights {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}