* {
   margin: 0;
    padding: 0;
   box-sizing    :   border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
	line-height: 1.6; 
    color   :      #333; 
   background-color: #fafafa;
}

.main-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: fixed;
    top:        0;
   width: 100%;
    z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.main-header.scrolled {
  background: rgba(102, 126, 234, 0.95);
  backdrop-filter: blur(10px);
}

.navigation-wrap {
  padding: 0 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
  display: flex;
    justify-content: space-between;
    align-items: center;
  height: 70px;

}

.brand-logo {

	  height: 45px;
   width: auto;


}

.menu-items {
   display: flex;
   gap: 2rem;
}

.nav-link {
    transition: color 0.3s ease;
	font-size: 16px;
  color: white;
	text-decoration: none;
    font-weight: 500;
}

.nav-link:hover {
    color: #f1c40f;
}

.burger-menu {


   display: none;
  flex-direction: column;
    cursor  :   pointer;
    gap: 4px;


}

.burger-line {
  width: 25px;
    height: 3px;
   background-color: white;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);

}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .menu-items {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-items.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 0.8rem 2rem;
        display: block;
    }
}main {


                    margin-top: 70px;
	}

.hero-banner {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding :   100px 2rem;
    color: white;
}

.hero-content {
  max-width: 1200px;
	 margin: 0 auto;
               display: grid;
  grid-template-columns: 1fr 1fr;
     gap: 3rem;
   align-items: center;
}

.main-heading {


  font-size: 3rem; 
		 font-weight    :     bold; 
	   margin-bottom: 1.5rem; 
	   line-height: 1.2;


}

.hero-description {
    font-size: 1.2rem;
   margin-bottom: 2rem;
  opacity    :    0.9;
}

.hero-cta-btn {
  display: inline-block;
  padding: 15px 30px;
   background-color: #fff;
				 color: #f5576c;
   text-decoration     :  none;
  border-radius: 50px;
	font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);


}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-image {
   width: 100%;

	  height: auto;

	    border-radius: 15px;

	  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .main-heading {
        font-size: 2.2rem;
    }
}.services-overview {
  padding :   80px 2rem;
   background-color     :   #fff;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
      text-align: center;
         font-size   :   2.5rem;
   margin-bottom   :   3rem;
    color: #2c3e50;
}

.services-grid {
			display  :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
} 

.service-card {
  background: white;
	    border-radius: 15px;
	   padding: 2rem;
	  text-align: center;
	  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
	    transition: transform 0.3s ease;
}

.service-card:hover   {
  transform: translateY(-5px); 

}

.service-img {
   width:      100%;
  height: 200px;
   object-fit: cover;
    border-radius: 10px;
   margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
   margin-bottom: 1rem;
    color: #34495e;
}

.service-desc {
   color: #7f8c8d;
  line-height: 1.6;
}

.methodology-section {
    padding: 80px 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.methodology-content {
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: center;
}

.section-heading {
       font-size: 2.2rem;
    margin-bottom   :1.5rem;
}

.method-paragraph {
   margin-bottom: 1.5rem;
  opacity: 0.9;
          font-size: 1.1rem;
}

.methodology-features {
        margin-top: 2rem;
}

.feature-item {
  margin-bottom: 1.5rem;
}  

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #f1c40f;
}

.methodology-img {
    width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3); 
	
}@media (max-width: 768px) {
    .methodology-content {
        grid-template-columns: 1fr;
    }
}.cta-section {
    padding: 80px 2rem;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color :       white;
   text-align: center;
}

.cta-container {
  max-width: 800px;
    margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-text {


   font-size: 1.2rem;
  margin-bottom: 2rem;
	opacity: 0.9;
     }

.cta-button {
    display: inline-block;
	                    padding: 18px 35px;
	  background-color: white;
	         color: #f5576c;
	   text-decoration: none;
	   border-radius: 50px;
	  font-weight: 600;
	  font-size: 1.1rem;
	   transition:all 0.3s ease;
	  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.contact-section {
    padding :       80px 2rem;
   background-color: #f8f9fa;
}

.contact-wrapper {
    margin: 0 auto;
   max-width: 1200px;
}

.contact-title {
   text-align     :center;
		font-size: 2.5rem;
  margin-bottom: 3rem;
	 color: #2c3e50;
}

.contact-content {
    display: grid;
   grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info h3 {
	  color: #34495e;
   font-size: 1.5rem;
  margin-bottom     :  1.5rem;}  

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
   color: #667eea;
    display: block;
 margin-bottom    :  0.5rem;
}

.contact-form-container {
   	background: white;
        padding: 2rem;
   border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);


}

.form-group {
   margin-bottom: 1.5rem;

}

.form-input, .form-select, .form-textarea {
   width: 100%;
   padding: 12px 15px;
  border: 2px solid #e9ecef;
    border-radius: 8px;
   font-size: 16px;
	transition: border-color 0.3s ease;
}

.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    :white;
   padding: 15px 30px;
   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 4px 15px rgba(102, 126, 234, 0.4);
     }@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}.site-footer {
  background-color    :    #2c3e50;
  color: white;
  padding    : 50px 2rem 20px;
}

.footer-content {
    max-width    :       1200px;
  margin: 0 auto;
  display:   grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap  :      2rem;
}

.footer-logo {
     height :40px;
    width :    auto;
  filter: brightness(0) invert(1);
}

.footer-heading {
    font-size: 1.2rem;
	margin-bottom: 1rem;
    color: #ecf0f1;
}


.footer-links {

               list-style    : none;


}

.footer-links li {
          margin-bottom: 0.5rem;
}

.footer-links a {
	color: #bdc3c7;
  text-decoration : none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
   color:        #f1c40f;
} 

.footer-address, .footer-phone {
    color: #bdc3c7;
  margin-bottom: 0.5rem;
}

.footer-bottom


{
  color: #95a5a6;
   border-top   :     1px solid #34495e;
          padding-top: 2rem;
  margin-top: 2rem;
    text-align: center;
} @media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 120px 2rem 80px;
    color: white;
 text-align  :    center;
}

.about-hero-content {
   max-width: 800px;
  margin     :  0 auto;
}

.about-main-title {
    font-size: 3.5rem;
    font-weight: bold;
  margin-bottom: 2rem;
   line-height: 1.2;
}

.about-hero-text {
      font-size: 1.3rem;
    line-height: 1.7;
   opacity: 0.95;}@media (max-width: 768px) {
    .about-main-title {
        font-size: 2.5rem;
    }
    
    .about-hero-text {
        font-size: 1.1rem;
    }
}.company-story {

    padding: 90px 2rem;
  background-color: #fff;

}

.story-wrapper   {
  max-width: 1200px; 
  margin: 0 auto;
}

.story-content {
      display     :   grid;
   grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
	
}

.story-heading {
	font-size   : 2.8rem;
    margin-bottom: 2rem;
	color: #2c3e50;
  font-weight     : 700;
}

.story-paragraph {
  margin-bottom: 1.8rem;
    font-size: 1.1rem;
  line-height: 1.8;
   color: #555;
}

.story-image {
    width: 100%;
   height: auto;
   border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-heading {
        font-size: 2.2rem;
    }
}.team-expertise {
    padding: 90px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.expertise-container {
    max-width: 1200px;
   margin: 0 auto;
}

.expertise-title {
  text-align: center;
   font-size: 2.8rem;
    margin-bottom: 3.5rem;
   color: #2c3e50;
  font-weight: 700;
}

.expertise-grid {
    display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
	   gap: 2.5rem;
}

.expertise-item {

				background: white;
	 border-radius: 20px;
   padding: 2.5rem;
    text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
	transition: all 0.4s ease;


}

.expertise-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2); 
	
}

.expertise-img {
   width: 100%;
   height: 220px;
    object-fit: cover;
    border-radius: 15px;
  margin-bottom: 2rem;
}

.expertise-heading {
  font-size: 1.6rem;
    margin-bottom: 1.5rem;
	 color     :    #34495e;
   font-weight: 600;
}

.expertise-description {
  color: #666;
    line-height     :   1.7;
    font-size: 1rem;
}

.methodology-approach {

  padding: 90px 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	}

.approach-wrapper {
	max-width: 1200px;
    margin: 0 auto;
}

.approach-content {
  display :        grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

.approach-title {
   font-size: 2.8rem; 
	   margin-bottom: 2rem; 
	    font-weight: 700;
}

.approach-paragraph {

	margin-bottom    :       2.5rem;
   opacity: 0.9;
   font-size: 1.1rem;
  line-height: 1.8;}

.approach-principles {

	    margin-top: 2rem;

}

.principle-item
{
   margin-bottom: 2rem;
     padding: 1.5rem;
     background: rgba(255,255,255,0.1);
       border-radius: 12px;
     backdrop-filter: blur(10px);
}

.principle-title {
    font-size: 1.3rem;
   margin-bottom  :    0.8rem;
	color: #f1c40f;
          font-weight: 600;
}

.principle-text {
    opacity: 0.9;
   line-height     :      1.6;
}

.approach-image {
   width: 100%;
   height:        auto;
			border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-title {
        font-size: 2.2rem;
    }
}.company-values	{
    padding: 90px 2rem;
 background-color: white;
}

.values-container


{
    max-width:1200px;
    margin: 0 auto;


}

.values-title {
  text-align: center;
	font-size: 2.8rem;
  margin-bottom: 3.5rem;
    color: #2c3e50;
  font-weight: 700;
}

.values-list {


   display     :    grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
	padding: 2.5rem;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
  border-radius: 20px;
	text-align    :   center;
    transition: transform 0.3s ease;
}

.value-card:hover {
  transform: scale(1.05);
}

.value-name {

	  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 600;


}

.value-description	{
  opacity: 0.95;
    line-height: 1.7;
}

.achievements-section 
 {
   padding: 90px 2rem;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
}

.achievements-wrapper {
   max-width: 1200px;
   margin: 0 auto;
  text-align     :  center; 
	
}

.achievements-title {
    font-size  :      2.8rem;
   margin-bottom: 3.5rem;
  font-weight: 700;
}

.stats-grid {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap  :   2rem;


}

.stat-item {
    padding: 2rem;
  background: rgba(255,255,255,0.1);
   border-radius :  15px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
    color     :        #f1c40f;
       margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
   opacity: 0.9;
}

.thankyou-hero {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
       padding  :        150px 2rem 100px;
     color: white;
       text-align: center;
}

.thankyou-content {
	max-width    :800px;
    margin: 0 auto;
}

.thankyou-title {
  font-size: 3.5rem;
    font-weight: bold;
   margin-bottom: 1rem;
   line-height: 1.2;
}

.thankyou-subtitle {
       opacity: 0.9;
    font-size: 1.4rem;
   margin-bottom: 2rem;
}

.success-icon {

	margin: 2rem auto;
   width    :        100px;
   height   :100px;
  background: rgba(255,255,255,0.2);
         border-radius :    50%;
   display: flex;
   align-items: center;
   justify-content: center;
  backdrop-filter: blur(10px);


}

.checkmark  
  {
  font-size: 3rem;
    font-weight     :bold;
}@media (max-width: 768px) {
    .thankyou-title {
        font-size: 2.5rem;
    }
    
    .thankyou-subtitle {
        font-size: 1.2rem;
    }
}.next-steps  
  {
          padding: 90px 2rem;
   background-color   :        #f8f9fa;
}

.steps-container {
       max-width :1000px;
  margin: 0 auto; 



}

.steps-title   {
    text-align: center;
	font-size: 2.8rem;
   margin-bottom: 3.5rem;
   color: #2c3e50;
   font-weight: 700;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item
{
   display: flex;
   gap: 2rem;
  align-items:flex-start;
   padding: 2rem;
    background: white;
   border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-number {

	                    min-width: 60px;
 height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
   display: flex;
		 align-items: center;
  justify-content: center;
 font-size: 1.5rem;
   font-weight: bold;
	}

.step-content {

   flex: 1;
	}

.step-heading {
  font-size: 1.4rem; 
    margin-bottom :     1rem; 
    color    :   #34495e; 
    font-weight: 600; 

}

.step-description {
        line-height: 1.7;
     color     :       #666;
}@media (max-width: 768px) {
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}.helpful-resources {
    padding: 90px 2rem;
  background-color: white;
} 

.resources-wrapper {
    max-width: 1200px;
   margin: 0 auto;
   text-align: center;
}

.resources-title {
   font-size: 2.8rem;
   margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.resources-intro {
    font-size: 1.2rem;
    color  :   #666;
    margin-bottom: 3rem;
}

.resources-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.resource-card {
    background:  white;
  border-radius: 15px;
    padding: 2rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.resource-card:hover   {
  transform: translateY(-5px); 
	
}

.resource-img {
  width: 100%;
   height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.resource-title

{


  font-size: 1.4rem;
    margin-bottom: 1rem;
   color: #34495e;
  font-weight: 600;


}

.resource-description {
  color:        #666;
    line-height: 1.6;
}

.back-home {
   padding: 90px 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    text-align: center;
}


.back-home-container {
       max-width: 800px;
    margin :    0 auto;
}

.back-home-title     {
   font-size  :   2.5rem;
  margin-bottom :     1.5rem;
    font-weight :      700;
}

.back-home-text {
   font-size: 1.2rem;
   opacity: 0.9;
   margin-bottom: 3rem;
    line-height: 1.7;
}  

.back-home-actions     {
   display: flex;
 gap: 1.5rem;
   justify-content: center;
	flex-wrap: wrap;
}

.back-home-btn {
    padding   :       15px 30px;

	  text-decoration: none;

	    border-radius: 50px;

		font-weight: 600;

	    font-size: 1.1rem;

	    transition: all 0.3s ease;

	  display: inline-block;
}

.back-home-btn.primary {
  background-color: white;
    color: #667eea;

}

.back-home-btn.secondary
	{
  background: rgba(255,255,255,0.2);
   color: white;
  border    : 2px solid white;
}

.back-home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.back-home-btn.secondary:hover {
	   background: white;
   color: #667eea;
     }@media (max-width: 768px) {
    .back-home-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .back-home-btn {
        width: 80%;
        max-width: 300px;
    }
}