* {
  margin: 0;
  padding: 0;
   box-sizing:      border-box;
}

body


{
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #2c3e50;
    overflow-x     :        hidden;
   background-color: #ffffff;
	line-height: 1.6;
}

.content-container  
  {
  margin: 0 auto;
	max-width: 1200px;
  padding: 0 24px;
}

.primary-navigation {
	 position: fixed;
	top: 0;
  left: 0;
               right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index     :     1000;
	transition: all 0.3s ease;
  border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.primary-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
  max-width: 1200px;
    margin: 0 auto;
  padding: 0 24px;
   display: flex;
	justify-content: space-between;
    align-items: center;
   height: 70px;
}

.brand-section .brand-logo {
    height: 45px;
  width: auto;
}

.nav-links {
   display: flex;
    list-style: none;
    gap    :   40px;
}

.nav-links a {
	text-decoration: none;
  color: #2c3e50;
   font-weight: 500;
  transition: color 0.3s ease;
                    position: relative;
}

.nav-links a:hover {
    color: #3498db;
}

.nav-links a::after {


  content: '';
   position: absolute;
  bottom: -5px;
   left: 0;
  width: 0;
  height: 2px;
  background: #3498db;
         transition: width 0.3s ease;}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-trigger {
    display  :       none;
    flex-direction: column;
 cursor: pointer;
  width   :       30px;
  height: 24px;
  justify-content: space-between;
}

.mobile-trigger span {
    width: 100%;
	 height: 3px;
   background: #2c3e50;
	 transition: all 0.3s ease;
	 transform-origin: center;
}

.mobile-trigger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10.5px);
}

.mobile-trigger.active span:nth-child(2) {
  opacity: 0;
}

.mobile-trigger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10.5px);
}

.hero-banner {


    padding: 120px 0 80px;

  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	

}  

.hero-banner .content-container {
    display: grid; 
	  grid-template-columns: 1fr 1fr; 
	    gap: 60px; 
	  align-items: center;
}

.hero-text h1 {
   font-size: 3.2rem;
    font-weight: 700;
  color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
  font-size: 1.3rem;
  color: #5a6c7d;
   margin-bottom: 40px;
    line-height :    1.5;
}

.action-buttons {
                    display: flex;
                    gap: 20px;
}

.primary-cta, .secondary-cta {
    padding: 16px 32px; 
  text-decoration: none; 
	-moz-border-radius: 8px; 
  -o-transition: all 0.3s ease; 
    border-radius: 8px; 
  font-weight: 600; 
   transition: all 0.3s ease; 
    display: inline-block;
}

.primary-cta {
  background: #3498db;
	 color: white;
  border: 2px solid #3498db;
}

.primary-cta:hover {
   border-color:#2980b9;
    background  : #2980b9;
  transform: translateY(-2px);
}

.secondary-cta {
	background: transparent;
  color: #3498db;
     border: 2px solid #3498db;
}

.secondary-cta:hover {
  background: #3498db;
   color: white;
} 

.hero-visual img {
	width: 100%;
  height: auto;
   border-radius  :  12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-proposition {
    padding   :        100px 0;
    background: white;
}

.value-proposition h2 {
    text-align: center;
    font-size: 2.8rem;
   margin-bottom: 60px;
	color: #2c3e50;
	
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
}

.benefit-item {
  text-align: center;
  padding: 40px 20px;
	border-radius: 12px;
   background: #f8f9fa;
       transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item h3	{
    font-size   :   1.6rem;
	margin-bottom: 16px;
    color: #2c3e50;
}

.benefit-item p {

    color: #5a6c7d;
    font-size: 1.1rem;
}

.offerings-showcase {
    padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.offerings-showcase h2 {

	  text-align :     center;
  margin-bottom: 60px;
     font-size: 2.8rem;}

.services-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
	 transition     :      transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
   height: 200px;
  object-fit: cover;
   border-radius: 10px;
    margin-bottom: 24px;
}

.service-card h3  {
  font-size: 1.8rem;
   margin-bottom: 16px;
}

.service-card p {

		 margin-bottom  :      24px;
  font-size: 1.1rem;
   opacity: 0.9;
	
     }

.service-features {
  display: flex;
   flex-wrap: wrap;
   gap: 12px;
}

.service-features span {
  background: rgba(255, 255, 255, 0.2);
   padding: 8px 16px;
      border-radius: 20px;
  font-size: 0.9rem;
} 

.methodology-section {

	padding: 100px 0;
    background: white;
	}

.methodology-section .content-container {
    display: grid;
	    grid-template-columns: 1fr 1fr;
	  gap: 60px;
	    align-items: center;
}

.methodology-content h2 {
    font-size    :2.6rem;
    margin-bottom: 24px;
	color: #2c3e50;
}

.methodology-content > p {
   font-size: 1.2rem;
    color: #5a6c7d;
  margin-bottom:40px;
}

.methodology-steps {
    display     :flex;
	flex-direction: column;
  gap     : 30px;
}

.step-item {
    display: flex;
  align-items: flex-start;
    gap:     20px;
}

.step-number {
    background   :#3498db;
   color    :   white;
   width: 50px;
  height: 50px;
    border-radius: 50%;
	display: flex;
   align-items: center;
	 justify-content: center;
  font-weight: bold;
   font-size: 1.2rem;
                    flex-shrink: 0;
}

.step-item h4 
 {

    font-size: 1.4rem;
  margin-bottom :        8px;
	 color: #2c3e50; 
}

.step-item p {
		color: #5a6c7d;
	}

.methodology-visual img {

    width    :   100%;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	}

.cta-segment {
   padding: 100px 0;

  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);

    color: white;

     text-align: center;
}

.cta-content h2 {
   margin-bottom: 24px;
  font-size:        3rem;
}

.cta-content p {
  font-size: 1.3rem;
    margin-bottom: 40px;
  opacity: 0.9;
   max-width: 700px;
  margin-left: auto;
   margin-right: auto;
}

.cta-button {
   display: inline-block;
  background: #e74c3c;
   color: white;
    padding: 20px 40px;
   text-decoration: none;
  border-radius: 8px;
               font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
  background   :  #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3); 
	
}

.contact-zone {
    padding: 100px 0;
  background: #f8f9fa;
}

.contact-zone h2 {
    text-align:       center;
    font-size: 2.8rem;
	margin-bottom: 60px;
    color: #2c3e50;
}

.contact-layout {

   display: grid;
    grid-template-columns: 1fr 1fr;
  gap     : 60px;
  align-items: start;
     }

.contact-info h3   {
	font-size: 2rem;
    margin-bottom:24px;
    color  :#2c3e50;
}

.contact-info p  
  {
   font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.contact-details {
     display: flex;
  flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
   flex-direction: column;
   gap: 8px;
}

.contact-item strong {
   color: #2c3e50;
   font-size: 1.1rem;
	
}

.contact-item span 
 {
         color: #5a6c7d;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
  grid-template-columns   : 1fr 1fr;
  gap: 20px;
}

.form-group.half {
                    margin-bottom: 24px;
}

.form-group label  
  {
    display: block;
  margin-bottom: 8px;
   font-weight:   600;
   color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea 
 {
		 width: 100%;
 padding: 14px;
   border: 2px solid #e9ecef;
  border-radius: 8px;
   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: #3498db;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
}

.submit-button
	{
    width   :    100%;
 background: #3498db;
    color: white;
   padding: 16px;
	border: none;
   border-radius: 8px;
  font-size: 1.1rem;
    font-weight: 600;
  cursor    :pointer;
	transition: background 0.3s ease;
}

.submit-button:hover {
      background: #2980b9;
	}

.site-footer {
    background: #2c3e50;
    color: white;
  padding: 60px 0 20px;
}

.footer-content {
   display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
   max-width: 300px;
}

.footer-logo {

	   height  :     50px;
     margin-bottom: 20px;
  filter: brightness(0) invert(1);

}

.footer-brand p {
    color: #bdc3c7;
  line-height     :  1.6;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
   margin-bottom: 20px;
                    font-size: 1.2rem;
} 

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
       margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
   color   :     #bdc3c7;
	text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #3498db;
}

.footer-contact p{
   color: #bdc3c7;
  margin-bottom: 8px; 
	
}

.footer-bottom {
   text-align: center;
    padding-top: 20px;
	 border-top: 1px solid #34495e;
   color: #bdc3c7;
}

.animate-in {
    animation: slideInUp 0.8s ease-out;
}@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.primary-cta.clicked,
.secondary-cta.clicked,
.cta-button.clicked {
  transform: scale(0.95);
}@media (max-width: 768px) {
    .mobile-trigger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 30px 24px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    }
    
    .nav-links.mobile-active {
        transform: translateX(0);
    }
    
    .hero-banner .content-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.4rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid,
    .services-layout {
        grid-template-columns: 1fr;
    }
    
    .methodology-section .content-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .value-proposition h2,
    .offerings-showcase h2,
    .contact-zone h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 0 16px;
    }
    
    .nav-wrapper {
        padding: 0 16px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .primary-cta,
    .secondary-cta {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}.page-header-section {
   padding: 120px 0 60px;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
   color: white;
    text-align: center;
}

.header-content h1

{
   font-size: 3.5rem;
  font-weight: 700;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 1.4rem;
  opacity: 0.9;
    max-width: 600px;
  margin:       0 auto;
}

.company-story {
   padding: 100px 0;
        background: white;
}

.story-layout {
          display   :  grid; 
		 grid-template-columns: 1fr 1fr; 
	    gap: 60px; 
	               align-items: center;
}



.story-content h2 {
    font-size: 2.8rem;
   margin-bottom: 30px;
    color: #2c3e50;
}

.story-content p {
   font-size: 1.2rem;
  color    :#5a6c7d;
  margin-bottom: 20px;
         line-height : 1.7;
}

.story-visual img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.expertise-areas {
    padding: 100px 0;
    background: #f8f9fa;
}

.expertise-areas h2 {

	    color: #2c3e50;
    text-align     :  center;
   margin-bottom: 60px;
   font-size: 2.8rem; 
	
     }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px; 
	
}

.expertise-card {

	    background:white;
  padding: 40px;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.expertise-card h3 {
   font-size: 1.8rem;
  margin-bottom: 16px;
   color: #2c3e50;
}

.expertise-card p {
    color: #5a6c7d;
  margin-bottom :  24px;
   font-size :      1.1rem;
}

.expertise-card ul {
  list-style: none;
  padding: 0;
}

.expertise-card li {
   color: #3498db;
    margin-bottom:8px;
  position: relative;
   padding-left: 20px;
	
}

.expertise-card li::before {
  content: "✓";
    position: absolute;
                    left: 0;
    color: #27ae60;
	font-weight: bold;
}

.achievements-showcase {
   padding: 100px 0;
  background: white;
}

.achievements-showcase h2 {
	   text-align :    center; 
	  font-size: 2.8rem; 
	   margin-bottom: 60px; 
	    color     :   #2c3e50;

}

.achievements-layout {
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap  :       60px;
   align-items: center;
}

.achievement-stats {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {


   text-align: center;
    padding: 30px 20px;
   background: #f8f9fa;
  border-radius: 12px;


}

.stat-number {
   display: block;
    font-size: 3rem;
   font-weight: 700;
   color:      #3498db;
               margin-bottom: 8px;
}

.stat-label	{
    color: #5a6c7d;
    font-size: 1rem;
       font-weight: 500;
	}

.achievements-content p {
    line-height: 1.7;
    font-size :       1.2rem;
   color: #5a6c7d;
}  

.achievements-visual img {
   width: 100%;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.approach-methodology {
    padding    :        100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.approach-methodology h2 {
   text-align: center; 
	        font-size: 2.8rem; 
	  margin-bottom: 60px;
}

.approach-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
	align-items  :      center;
}

.approach-principles h3{
               font-size: 2.2rem;
  margin-bottom: 24px;
}

.approach-principles > p {
  font-size: 1.2rem;
   margin-bottom: 40px;
   opacity: 0.9;
}

.principles-list {
  display: flex;
   flex-direction: column;
   gap: 30px;
}

.principle-item h4 {
    font-size:    1.5rem;
   margin-bottom: 12px;
}

.principle-item p {
    opacity: 0.9;
  line-height: 1.6;
}

.approach-visual img {
  width    :    100%;
  border-radius  :        15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}


.why-choose-us {
   padding :      100px 0;
  background: #f8f9fa;
}

.why-choose-us h2 {


         text-align: center;
	font-size: 2.8rem;
    margin-bottom: 60px;
   color: #2c3e50;
     }



.reasons-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
				 gap: 30px;
}

.reason-card {
        background   :  white;
	padding: 30px;
  border-radius     :  12px;
    text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
}

.reason-card h3 {
  margin-bottom: 16px;
    color   :      #2c3e50;
	font-size: 1.6rem;

}

.reason-card p

{
  color: #5a6c7d;
  line-height     :       1.6;
}

.next-steps {
   padding: 100px 0;
  background: white;
}

.next-steps-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;


}

.next-steps-content h2 {
   font-size: 2.6rem;
  margin-bottom: 24px;
    color: #2c3e50;
}

.next-steps-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
   margin-bottom: 40px;
   line-height: 1.7;
}

.contact-options {
        display: flex;
  flex-direction: column;
       gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
    flex-direction: column;
   gap:        8px;
}

.contact-item strong
	{

	   color: #2c3e50;
  font-size: 1.1rem;}

.contact-item span {
	color: #5a6c7d;
	
}

.back-to-home {
    display   :  inline-block;
  background: #3498db;
               color: white;
   padding   :   16px 32px;
  text-decoration: none;
        border-radius: 8px;
    font-weight :    600;
	 transition: all 0.3s ease;
}

.back-to-home:hover {
   background  :       #2980b9;
  transform: translateY(-2px);
}

.final-visual img {
   width: 100%;
   border-radius :       15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-hero {
    padding :       120px 0 80px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
   text-align:     center;
    color: white;
}

.thankyou-content {
  max-width: 700px;
   margin: 0 auto;
}

.success-indicator {
          margin-bottom: 40px;
}

.checkmark-circle		{
    width: 100px;
    height: 100px;
  background: rgba(255, 255, 255, 0.2);
    border-radius     :  50%;
  display: flex;
 align-items: center;
  justify-content: center;
    margin: 0 auto;
    animation: pulse 2s infinite;
}

.checkmark {
  width: 40px;
	height: 20px;
  border: 4px solid white;
    border-top: none;
    border-right: none;
  transform: rotate(-45deg);
}@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}.thankyou-content h1 {
    font-size :  3.5rem;
 margin-bottom: 24px;
    font-weight: 700;
}

.main-message


{


    font-size: 1.3rem;
   opacity: 0.95;
    line-height: 1.6;

}

.next-steps-info {
  padding: 100px 0; 
	    background: white;

}

.next-steps-info h2 {
  text-align: center;
    font-size: 2.8rem;
         margin-bottom: 60px;
  color: #2c3e50;


}

.steps-timeline {
  display : flex;
    flex-direction: column;
  gap: 40px;
  max-width: 800px;
   margin: 0 auto; 

}

.timeline-item {
  display   :     flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-marker {

	  width: 60px;
    height: 60px;
  background:   #3498db;
   border-radius: 50%;
   display: flex;
    align-items: center;
   justify-content: center;
  color: white;
    font-weight: bold;
   font-size: 1.4rem;
    flex-shrink: 0;
     }

.timeline-content h3 {
    font-size: 1.8rem; 
	 margin-bottom: 12px; 
  color: #2c3e50;
}

.timeline-content p {
   color    :    #5a6c7d;
  margin-bottom: 16px;
	 line-height: 1.6;
}

.timeframe {
  background: #f8f9fa;
   color: #3498db;
  padding: 8px 16px;
	border-radius: 20px;
    font-size: 0.9rem;
  font-weight: 600;
}

.additional-resources  
  {

  padding: 100px 0;
  background: #f8f9fa;
     }

.additional-resources h2 {
   text-align: center;
	font-size: 2.8rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.resources-grid		{
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 40px;

}

.resource-card 
 {
  background     :       white;
  padding: 40px;
   border-radius    :    15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	 text-align: center;
}

.resource-card h3 {
	font-size: 1.6rem;
      margin-bottom: 16px;
    color: #2c3e50;
} 

.resource-card p {
    color: #5a6c7d;
  margin-bottom: 24px;
    line-height     :      1.6;


} 

.resource-link {
   display: inline-block;
	color: #3498db;
   text-decoration: none;
    font-weight: 600;
       border-bottom: 2px solid transparent;
   transition: border-color 0.3s ease;
}

.resource-link:hover {
    border-bottom-color: #3498db;
}

.contact-reminder	{
  padding: 100px 0;
	background: white;
}

.reminder-layout {
   display: grid;
        grid-template-columns: 1fr 1fr;
      gap: 60px;
   align-items   :center;
}

.reminder-content h2 {
   font-size: 2.6rem;
       margin-bottom: 24px;
  color: #2c3e50;
}

.reminder-content p {
  font-size: 1.2rem;
  color: #5a6c7d;
    margin-bottom: 40px;
   line-height: 1.7;
}

.reminder-visual img {


  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

}

.success-stories-preview {
      padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	color: white;
    text-align: center;
}

.success-stories-preview h2 {
  font-size: 2.8rem;
    margin-bottom: 60px;
}

.preview-stats {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom :       40px;
} 

.stat-highlight {
   display: flex;
    flex-direction: column;
   align-items: center;
}

.stat-highlight .stat-number {
   font-size  :    3.5rem;
    font-weight: 700;
     color: #3498db;
    margin-bottom: 8px;
}

.stat-description	{
  color: rgba(255, 255, 255, 0.9);
  font-size     :        1.1rem;
}

.preview-text{
      font-size: 1.3rem;
    opacity: 0.9;
  line-height: 1.6;
  margin: 0 auto;
   max-width: 700px;

}@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .header-content p {
        font-size: 1.2rem;
    }
    
    .story-layout,
    .achievements-layout,
    .approach-content,
    .next-steps-content,
    .reminder-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expertise-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .preview-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .main-message {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-header-section {
        padding: 100px 0 40px;
    }
    
    .header-content h1 {
        font-size: 2rem;
    }
    
    .company-story,
    .expertise-areas,
    .achievements-showcase,
    .approach-methodology,
    .why-choose-us,
    .next-steps,
    .next-steps-info,
    .additional-resources,
    .contact-reminder,
    .success-stories-preview {
        padding: 60px 0;
    }
    
    .expertise-card,
    .resource-card {
        padding: 30px 20px;
    }
    
    .thankyou-hero {
        padding: 100px 0 60px;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
}