* {
  margin: 0;
   padding: 0;
  box-sizing: border-box;
}

body {
     font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

.page-wrapper    {

	   min-height: 100vh;
    display: flex;
        flex-direction: column;
     }

.primary-navigation {
  background: rgba(255, 255, 255, 0.95); 
  backdrop-filter: blur(10px); 
  position: fixed; 
   top: 0; 
  left: 0; 
    right: 0; 
    z-index  :      1000; 
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-content-wrapper {

	          max-width    :     1200px; 
	  margin: 0 auto; 
	  display: flex; 
		justify-content: space-between; 
	   align-items: center; 
	    padding    :       1rem 2rem;
}

.brand-section .company-logo {
  height: 45px;
    width    : auto;
}

.desktop-menu
	{
    display:     flex;
}

.navigation-links    {
   gap: 2rem;

	    margin: 0;

	    list-style: none;

	   padding: 0;

	    display   :    flex;
}

.nav-link
{
      color: #2c3e50;
  transition: color 0.3s ease;
    font-weight: 500;
 padding: 0.5rem 0;
   font-size: 16px;
   text-decoration: none;
}

.nav-link:hover {
    color: #e74c3c;
}

.mobile-toggle {
    display: none;
  flex-direction: column;
  cursor: pointer;
   padding: 5px;
}

.burger-line		{
    width: 25px;
    height: 3px;
   background: #2c3e50;
    margin: 2px 0;
    transition: 0.3s;
}

.mobile-navigation {
   display: none;
   background: white;
  border-top: 1px solid #e0e0e0; 

}

.mobile-links {
   list-style    :none;
                    padding: 1rem 2rem;
}

.mobile-nav-item {
   display:       block;
    padding: 0.8rem 0;
  text-decoration: none;
    color: #2c3e50;
   border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
}



.hero-banner

{
    margin-top: 80px;
    padding :      4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   min-height: 600px;
   display: flex;
    align-items: center;
}

.hero-content {
  max-width: 1200px; 
  margin: 0 auto; 
   display: grid; 
    grid-template-columns: 1fr 1fr; 
      gap: 3rem; 
   align-items: center;
}

.main-heading {
    font-size: 2.8rem;
    font-weight: 700;
	 margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom    : 2rem;
   opacity: 0.9;
  line-height: 1.6;
}


.primary-cta-button {
               display: inline-block;
    background: #e74c3c;
	color: white;
  padding: 15px 30px;
	 text-decoration: none;
   border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
   transition: all 0.3s ease;
}

.primary-cta-button:hover {
  background: #c0392b; 
	  transform: translateY(-2px); 
	  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-image {
  width: 100%;
	height    :    400px;
   object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.services-overview {
   padding: 5rem 2rem;
    background: white;
}

.services-container {
    max-width: 1200px;
	 margin   :   0 auto;
}

.section-title {

  font-size    :        2.5rem;
  text-align: center;
   margin-bottom: 3rem;
  color     :   #2c3e50;
					font-weight: 600; 
	
     }

.services-grid {
    display    :     grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.service-item {
  text-align: center;
  padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-image {
   width: 100%;
   height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom     :       1.5rem;
}

.service-heading {
   font-size: 1.4rem;
               margin-bottom:    1rem;
   color: #2c3e50;
	 font-weight: 600;}

.service-text {
	  color: #666;
  font-size: 1rem;
    line-height: 1.6;
	}

.specialization-focus {
	 padding: 5rem 2rem;
  background: #f8f9fa;
}

.specialization-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display :   grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
}  

.specialization-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;}

.specialization-title {
   font-size: 2.2rem;
  margin-bottom: 1.5rem;
   color   :  #2c3e50;
   font-weight: 600;
}

.specialization-description {
    font-size  :1.1rem;
     margin-bottom: 2rem;
    color: #555;
  line-height     :   1.6;
}

.specialization-benefits {
  list-style    :       none;
}

.specialization-benefits li  
  {
   padding: 0.5rem 0;
   color: #444;
    position: relative;
	padding-left: 1.5rem;
}

.specialization-benefits li::before {
  content: '✓';
  position: absolute;
    left: 0;
   color: #e74c3c;
   font-weight: bold;
}

.cta-section		{

   padding: 4rem 2rem;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: white;
  text-align: center;}

.cta-content {
       max-width: 800px;
    margin: 0 auto;


}

.cta-headline {
   font-size:  2.3rem;
    margin-bottom: 1rem;
  font-weight: 600;
}

.cta-subtitle {
   font-size: 1.2rem;
  margin-bottom: 2rem;
    opacity: 0.9;
	}

.cta-button-secondary {
  display   : inline-block;
  background: transparent;
   color: white;
   padding     :    15px 30px;
   text-decoration: none;
   border :        2px solid white;
   border-radius: 5px;
  font-weight: 600;
   font-size: 18px;
   transition: all 0.3s ease;
}

.cta-button-secondary:hover {
  background: white;
  color: #2c3e50;
}

.contact-section {
  padding: 5rem 2rem;
    background: white;
}

.contact-container


{
    max-width: 800px;
  margin   :    0 auto;
}

.contact-header


{
  text-align: center;
  margin-bottom: 3rem;
}

.contact-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
   color :      #2c3e50;
  font-weight: 600;

}

.contact-intro {
   font-size  :   1.1rem;
   color: #666; 
	
}

.contact-form-wrapper {
    background: #f8f9fa;
  padding: 3rem;
   border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);

}

.form-row {
   display: grid;
	 grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
   margin-bottom: 1.5rem;
	
}

.form-row-full {
          margin-bottom: 1.5rem;
}

.input-group	{
	 position: relative;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 15px;
  border: 2px solid #e0e0e0;
    border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
   transition: border-color 0.3s ease;
   background :     white;
}

.form-input:focus, .form-select:focus, .form-textarea:focus
	{
   outline   :   none;
     border-color: #667eea;
}  

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-area {
    text-align: center;
  margin-top: 2rem;
}

.submit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 15px 40px;
    border: none;
   border-radius: 5px;
                    font-size: 18px;
    font-weight: 600;
  cursor: pointer;
	 transition: all 0.3s ease;
	
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
	}

.site-footer {
  background: #2c3e50;
   color    : white;
    padding: 3rem 2rem 1rem;
       margin-top: auto;
}

.footer-content {
	 margin: 0 auto;
    max-width: 1200px;
}

.footer-main {
      display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

   gap: 2rem;

	margin-bottom: 2rem;
}

.footer-brand .footer-logo {

	    height: 40px;
   width: auto;
  filter: brightness(0) invert(1);


}

.footer-section-title		{
    font-size: 1.2rem;
    margin-bottom  :     1rem;
  font-weight   :     600;


}

.footer-links {
    list-style: none;
}

.footer-links li {
	margin-bottom     :    0.5rem;
}

.footer-link {
	 color: #bdc3c7;
    text-decoration: none;
   transition: color 0.3s ease; 
	
}

.footer-link:hover {

	    color     :        white;
}

.contact-detail {
         margin-bottom: 0.3rem; 
	  color: #bdc3c7; 
	    font-size: 14px;
     }

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
   text-align: center;
}

.copyright {
    color: #bdc3c7;
    font-size: 14px;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-navigation.active {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .main-heading {
        font-size: 2.2rem;
    }
    
    .specialization-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .nav-content-wrapper {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .specialization-title {
        font-size: 1.8rem;
    }
    
    .cta-headline {
        font-size: 1.8rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 1.8rem;
    }
    
    .hero-banner {
        padding: 2rem 1rem;
    }
    
    .services-overview, .specialization-focus, .contact-section {
        padding: 3rem 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
}.about-hero-section {
   margin-top: 80px;
	padding: 4rem 2rem;
  background: linear-gradient(120deg, #34495e 0%, #2c3e50 100%);
    color: white;
    min-height: 500px;
    display: flex;
   align-items: center;
}

.about-hero-content {
       max-width: 1200px;
    margin: 0 auto;
    display: grid;
   grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
    align-items: center;
	}

.about-main-title {
	   font-size: 2.6rem;

	    font-weight: 700;

	   margin-bottom: 1.5rem;

		line-height: 1.3;
}

.about-hero-description {
    font-size : 1.1rem;
  opacity: 0.9;
   line-height: 1.7;
}

.about-hero-img {
  width: 100%;
   height: 320px;
    object-fit: cover;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.company-story {
    padding: 5rem 2rem;
    background: white;
}

.story-container {


	max-width: 1200px;
     margin: 0 auto;
	 display: grid;
  grid-template-columns: 1.3fr 1fr;
	gap: 4rem;
	 align-items: start;


}

.story-headline{
    font-weight: 600;
   margin-bottom: 2rem;
	color: #2c3e50;
  font-size: 2.3rem;
}

.story-paragraph {
  font-size :      1.05rem;
   line-height: 1.7;
   margin-bottom: 1.8rem;
   color: #555;
}

.story-image
	{
    width: 100%;
   height: 380px;
	 object-fit: cover;
	 border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.expertise-showcase {
   padding: 5rem 2rem;
	background: #f8f9fa;
}

.expertise-wrapper {
       max-width: 1200px;
   margin: 0 auto;
}

.expertise-title {
	 font-size: 2.4rem;
  text-align: center;
   margin-bottom: 3.5rem;
	color   :       #2c3e50;
   font-weight: 600;
}

.expertise-grid  {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
}

.expertise-item {
    background  :        white;
   padding: 2.5rem 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.expertise-name {
  font-size: 1.3rem; 
   margin-bottom: 1rem; 
   color: #2c3e50; 
    font-weight: 600;
}

.expertise-details {
	 color: #666;
                    line-height: 1.6;
   font-size: 0.95rem;
}



.methodology-section {
   padding: 5rem 2rem;
   background: white; 
	
}

.methodology-container {
    max-width: 1200px;
     margin: 0 auto;
      display: grid;
     grid-template-columns: 1fr 1.2fr;
       gap: 4rem;
      align-items: center;
}

.methodology-image  {

	    width: 100%;
    height    :400px;
               object-fit: cover;
          border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);}

.methodology-title {
    font-size: 2.2rem;
	margin-bottom   :        1.5rem;
   color: #2c3e50;
   font-weight: 600;
}

.methodology-text {
    font-size     :       1.05rem;
  line-height: 1.7;
    margin-bottom: 2.5rem;
  color: #555;
}

.methodology-points {
  display: flex;
   flex-direction: column;
 gap: 1.5rem;
}

.method-point

{
  display: flex;
   align-items   :      flex-start;
    gap: 1rem;


}

.point-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  width : 35px;
         height: 35px;
   border-radius: 50%;
  display :       flex;
   align-items: center;
   justify-content: center;
    font-weight: bold;
   font-size: 14px;
   flex-shrink: 0;
}

.point-title {
      font-size: 1.1rem;
    margin-bottom: 0.3rem;
  color: #2c3e50;
  font-weight   :      600;
}

.point-description {
   color: #666;
                    font-size: 0.9rem;
	line-height: 1.5;
}

.achievements-section {
	padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.achievements-wrapper   {
  max-width   :     1000px;
	margin: 0 auto;
         text-align: center;
}

.achievements-heading {
   font-size: 2.3rem; 
  margin-bottom: 3rem; 
  font-weight: 600; 
	
}

.stats-grid {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap:    2rem;


}

.stat-item {
  text-align: center;
	 padding: 1.5rem;
}

.stat-number {
   color: white;

	    font-weight: 700;

	   font-size: 3rem;

	   margin-bottom  :0.5rem;
}

.stat-label {
   font-weight: 500;
  opacity: 0.9;
    font-size: 1rem;
}

.team-values {
	padding: 5rem 2rem;
  background: white;
}

.values-container


{

  max-width: 1200px;
  margin: 0 auto;
    display: grid;
   grid-template-columns: 1.2fr 1fr;
	 gap: 4rem;
   align-items: center;
	}

.values-title {
  font-size: 2.3rem;
   margin-bottom: 1rem;
   color: #2c3e50;
    font-weight: 600;


}

.values-intro{
   font-size: 1.05rem;
   margin-bottom: 2.5rem;
      color: #666;
    line-height: 1.6;
}

.values-list  
  {
  display: flex;
    flex-direction: column;
	gap: 1.8rem;
}

.value-item {

 padding: 1.5rem;
  border-left:      4px solid #e74c3c;
   background: #f8f9fa;
   border-radius: 0 8px 8px 0;
	}

.value-name    {
	font-size :1.2rem;
	margin-bottom: 0.5rem;
	 color   :    #2c3e50;
    font-weight: 600;
}

.value-description


{


  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.values-image {
    width: 100%;
   height: 350px;
  object-fit: cover;
   border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);

}

.thankyou-main-section {
   margin-top: 80px;
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
     color: white;
   min-height  :600px;
    display: flex;
     align-items: center;

}

.thankyou-container {
    max-width: 1200px;
   margin: 0 auto;
  display: grid;
   grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
   align-items :   center;
}

.thankyou-icon-area {
  text-align: center;
       margin-bottom: 2rem;


}

.success-checkmark {
   width: 80px;
   height: 80px;
    border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
   position: relative;
               margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
                    justify-content: center;
}

.check-icon {
  width: 40px;
  height: 40px;
   position: relative;
}

.check-line		{
   display: block;
   background: white;
   border-radius: 2px;
  position     :    absolute;
   transform-origin: left center;
}

.check-tip {
    height: 3px;
    width: 12px;
   left: 8px;
 top    :20px;
  transform: rotate(45deg);
}

.check-long {
  height: 3px;
    width: 25px;
  left: 14px;
   top: 17px;
  transform: rotate(-45deg);
}


.thankyou-title {
    font-size: 2.5rem;
  font-weight: 700;
   margin-bottom: 1.5rem;
  text-align: center;
}

.thankyou-message {
   text-align: center;
    margin-bottom: 3rem;
}

.thankyou-text {
    font-size   :1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
   opacity: 0.95;


}

.thankyou-subtitle {
   font-size: 1.2rem;
       font-weight: 600;
   margin-bottom: 1.5rem;
}

.next-steps {
    display: flex;
	   flex-direction: column;
	   gap   :        1.5rem;
	    margin-bottom: 3rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
    gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
   border-radius: 8px;
}

.step-number {
  background     :       white;
        color: #27ae60;
      width: 35px;
   	height: 35px;
      border-radius: 50%;
   	display: flex;
     align-items: center;
     justify-content: center;
      font-weight     :bold;
       font-size: 16px;
      flex-shrink: 0;
}

.step-title {

    font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
	}

.step-description {
    font-size: 0.9rem;
   opacity: 0.9;
    line-height: 1.5;
}


.thankyou-actions {
    display: flex; 
	    gap: 1rem; 
	  justify-content: center; 
	  flex-wrap: wrap;
}

.return-home-btn, .learn-more-btn    {
   display: inline-block;
   padding: 12px 25px;
   text-decoration: none;
  border-radius: 5px;
  font-weight:     600;
  transition: all 0.3s ease;
   font-size: 16px;
}

.return-home-btn {
  background: white;
  color: #27ae60;
}

.learn-more-btn {
  background: transparent; 
	    color: white; 
	                    border: 2px solid white;
}

.return-home-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.learn-more-btn:hover {


  background: white;
    color: #27ae60;
}

.thankyou-image {
  width: 100%;
  height: 350px;
    object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.contact-info-section  
  {
	   padding: 4rem 2rem;
   	 background: white;
	}

.contact-info-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-info-title {
    font-size: 2.2rem;
   margin-bottom: 3rem;
   color: #2c3e50;
    font-weight     :    600;
}

.contact-details-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-detail-item {
   padding: 2rem;
	background: #f8f9fa;
  border-radius :       8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-detail-header {

	  font-size: 1.2rem;
    font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;




}


.contact-detail-text {
    color: #666;
    line-height: 1.5;
   font-size: 0.95rem;
}
@media (max-width: 768px) {
    .about-hero-content,
    .story-container,
    .methodology-container,
    .values-container,
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-main-title {
        font-size: 2.2rem;
    }
    
    .thankyou-title {
        font-size: 2rem;
    }
    
    .story-headline,
    .expertise-title,
    .methodology-title,
    .achievements-heading,
    .values-title,
    .contact-info-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .next-steps {
        gap: 1rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .methodology-points {
        gap: 1rem;
    }
    
    .method-point {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-section,
    .company-story,
    .expertise-showcase,
    .methodology-section,
    .team-values,
    .thankyou-main-section,
    .contact-info-section {
        padding: 3rem 1rem;
    }
    
    .about-main-title {
        font-size: 1.8rem;
    }
    
    .thankyou-title {
        font-size: 1.7rem;
    }
    
    .expertise-grid,
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expertise-item,
    .contact-detail-item {
        padding: 1.5rem;
    }
    
    .success-checkmark {
        width: 60px;
        height: 60px;
    }
    
    .check-icon {
        width: 30px;
        height: 30px;
    }
}.privacy-section     {
      padding: 5rem 2rem;
    background: white;
}

.privacy-container {

   max-width: 800px;
        margin: 0 auto;}

.privacy-header {
    text-align :        center;
   margin-bottom: 3rem;
}

.privacy-intro {
	   font-size: 1.1rem;
   color: #666;
     }

.privacy-content {
  font-size: 1rem;
  color: #333;
 line-height: 1.6;
}

.privacy-subtitle

{
   font-size: 1.5rem;
  margin-top  :  2rem;
    margin-bottom: 1rem;
  color: #2c3e50;
    font-weight: 600;
}

.privacy-benefits {

	 list-style: none;
    padding: 0;
     }

.privacy-benefits li {
    padding: 0.5rem 0;
    color: #444;
  position: relative;
    padding-left     :    1.5rem;
}

.privacy-benefits li::before  
  {
  content: '✓';
  position: absolute;
    left: 0;
   color: #e74c3c;
  font-weight: bold;
}