* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
               line-height: 1.6;
  color:   #2c3e50;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 min-height: 100vh;
}

.main-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        position: fixed;
   top     :    0;
   width: 100%;
   z-index: 1000;
   transition   : transform 0.3s ease;
}  

.nav-container {
                    max-width: 1200px;
   margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
  justify-content: space-between;
  align-items: center;
}

.company-logo {

	  width: auto;
  height  :      45px;
     }

.desktop-menu {
	display: flex;
   list-style :  none;
  gap: 2rem;
}

.desktop-menu a {
   font-weight  :  500;
     transition: color 0.3s ease;
      text-decoration   :      none;
   	color: #2c3e50;
}

.desktop-menu a:hover {
      color: #667eea;
}

.mobile-toggle {
    display: none;

	   flex-direction: column;

	     cursor: pointer;

	   width: 30px;

	  height: 25px;

	    justify-content: space-between;
}

.burger-line {
   width:       100%;
   height    : 3px;
         background: #2c3e50;
  transition: all 0.3s ease;
}

.mobile-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);



}

.mobile-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
   display: none;
   background: white;
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin: 1rem 0;
}

.mobile-menu a {
    text-decoration: none;
   color: #2c3e50;
    font-weight: 500;
    display   :        block;
    padding  :     0.5rem 0;
}

.hero-section {
  padding: 120px 2rem 80px;
  max-width: 1200px;
    margin: 0 auto;
  display: grid;
   grid-template-columns     :    1fr 1fr;
    gap: 3rem;
    align-items: center;
	min-height: 90vh;

}


.hero-content h1 {
	    font-size: 3.2rem;
   color: white;
   margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3); 
	


}

.hero-subtitle {
    font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
    margin-bottom  :    2.5rem;
   line-height: 1.6;

}

.hero-buttons {
         display: flex;
    gap:        1rem;
    flex-wrap: wrap;
}

.primary-btn  
  {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
    padding: 14px 28px;
  border-radius: 50px;
    text-decoration: none;
	font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.primary-btn:hover {
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.secondary-btn  
  {
  background: transparent;
   color: white;
  border: 2px solid white;
   padding: 12px 26px;
  border-radius: 50px;
   text-decoration: none;
    font-weight  :      600;
  transition: all 0.3s ease;

}

.secondary-btn:hover {
    background: white; 
   color: #667eea;
}

.hero-image img {

	    width: 100%;
    height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.container {
   max-width: 1200px;
    margin: 0 auto;
  padding: 0 2rem;
}

.services-section {
   background: white;
  padding  :     80px 0;
}

.services-section h2 {
  color: #2c3e50;
    font-size: 2.8rem;
  margin-bottom: 3rem;
                    text-align: center;
  position: relative;
}

.services-section h2::after {
  content: '';

	   position    :       absolute;

	  bottom: -10px;

	   left: 50%;

	  transform: translateX(-50%);

	   width: 80px;

	     height: 4px;

	  background: linear-gradient(45deg, #667eea, #764ba2);

	   border-radius: 2px;
}

.services-grid {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
   margin-top: 3rem;
}

.service-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
  transition:      all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  transform: scale(1.05);
}

.service-card h3 {
   font-size: 1.6rem;
      margin-bottom: 1rem;
  color: #2c3e50;
	
}

.service-card.featured h3  {
    color: white;
}

.service-card p {
   margin-bottom: 1.5rem;
   line-height: 1.7;
   color: #6c757d;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

.service-features {
	   display: flex;
   flex-wrap: wrap;
    gap: 0.5rem;
  justify-content: center;
	}

.service-features span {
   background    :        #e9ecef;
    padding: 0.4rem 1rem;
   border-radius: 20px;
  font-size: 0.9rem;
    font-weight    :      500;
    color: #495057;
}

.service-card.featured .service-features span {
  background: rgba(255, 255, 255, 0.2);
    color:    white;
}

.methodology-section  
  {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
   padding: 80px 0;
}

.method-content {
  display: grid;
               grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
}



.method-text h2 {
  font-size:        2.8rem;
  margin-bottom:1.5rem;
  color: #2c3e50;
}

.method-text > p {
	 font-size: 1.2rem;
     margin-bottom: 2.5rem;
  color: #495057;
    line-height: 1.7;
}

.method-steps {
    display :     flex;
   flex-direction: column;
   gap   :       1.5rem; 
	
}

.step {
    display    :  flex;
  align-items: flex-start;
  gap :    1rem;
}

.step-number {
  background: linear-gradient(45deg, #667eea, #764ba2);
       color: white;
      width: 40px;
      height   :    40px;
       border-radius: 50%;
      display: flex;
   	align-items: center;
       justify-content: center;
       font-weight: 700;
     flex-shrink: 0;
}

.step h4 {
   font-size: 1.3rem;
	          margin-bottom  :      0.5rem;
	     color: #2c3e50;
}

.step p {
    color: #6c757d;
    line-height: 1.6;
}

.method-image img {
   width:100%;
   border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}



.testimonials-section {
  background: white;
    padding: 80px 0;
}

.testimonials-section h2 {

	  text-align: center;
   font-size: 2.8rem;
   margin-bottom: 3rem;
          color    :     #2c3e50;

	}

.testimonials-grid {
  display    :      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
  background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
 position: relative;
}

.testimonial-card::before {
        font-size:      4rem;
	font-family: serif;
  content: '"';
   position: absolute;
    left: 20px;
    top: -10px;
  color: #667eea;
}

.testimonial-card p {
    font-style :italic;
	 line-height: 1.7;
   margin-bottom    :     1.5rem;
   color: #495057;
	}

.testimonial-author strong
	{
    color     :#2c3e50;
   display: block;
   margin-bottom: 0.3rem;
	
}

.testimonial-author span {
    color    :        #6c757d;
    font-size: 0.9rem;
}

.stats-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 0;
}

.stats-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
	text-align: center;
}

.stat-item {
   color: white;
}

.stat-number {
    font-size: 3rem;
  font-weight: 700;
   margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section {
   background: white;
   padding: 80px 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
   gap: 3rem;
         align-items: center;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom:      1rem;
  color: #2c3e50;
}

.cta-content p{
  font-size: 1.2rem;
   margin-bottom: 2rem;
   color: #6c757d;
    line-height: 1.7;
}

.cta-button {


  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
   color: white;
  padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
   font-weight: 600;
   font-size    : 1.1rem;
  display: inline-block;
    transition:     all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
	}

.cta-button:hover  {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(255, 107, 107, 0.4);
}

.cta-image img {
  width: 100%;
    border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}  

.contact-section	{
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
   padding: 80px 0; 

}

.contact-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
}

.contact-info h2		{
	font-size     : 2.8rem;
    margin-bottom: 1.5rem;
  color: #2c3e50;
}

.contact-info p {

	                    font-size: 1.2rem;
  margin-bottom: 2.5rem;
    color: #495057;
    line-height: 1.7;

}

.contact-details		{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
   margin-bottom: 2rem;
     }

.contact-item h4 {
  font-size: 1.1rem;
    margin-bottom  :        0.5rem;
 color: #2c3e50;
   font-weight: 600;
}

.contact-item p {
  color: #6c757d;
    margin-bottom: 0;
   font-size: 1rem;
}

.contact-visual {
    margin-top: 2rem; 

}

.contact-visual img

{
   width  :     100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-form {
   background: white;
   padding: 2.5rem;
	border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.form-group  {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width    :        100%;
      padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
                    font-size: 1rem;
   transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: #667eea;
}

.form-group select {
   cursor: pointer;
}

.submit-btn {
   width: 100%;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color   :     white;
   border: none;
  padding: 14px;
   border-radius: 10px;
    font-size: 1.1rem;
  font-weight: 600;
  cursor     :   pointer;
  transition :     all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px); 
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.site-footer {
  background: #2c3e50;
    color    :  white;
	 padding: 50px 0 20px;
}

.footer-content {
      display: grid;
   grid-template-columns     :     2fr 1fr 1fr 1fr;
    gap: 2rem;
  margin-bottom: 2rem; 
	
}

.footer-logo {
	 height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
	 margin-bottom  :      1rem;
}

.footer-brand p {
	 color: #bdc3c7;
    line-height  :     1.6;
}

.footer-links h4 {
  margin-bottom    :        1rem;
  font-size: 1.1rem;
}

.footer-links ul {

	    list-style:       none;


}

.footer-links li {
        margin-bottom :        0.5rem;
}

.footer-links a

{
	color: #bdc3c7;
  text-decoration: none;
  -o-transition: color 0.3s ease;
	 transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
}

.footer-links a:hover {
   color: white;
}

.footer-contact h4 {
   margin-bottom: 1rem;

}

.footer-contact p {
    color: #bdc3c7;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
  border-top: 1px solid #34495e;
                    color: #95a5a6;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 1rem 60px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .method-content {
        grid-template-columns: 1fr;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .services-section h2,
    .testimonials-section h2,
    .method-text h2,
    .cta-content h2,
    .contact-info h2 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 120px 0 80px;
    text-align: center;
  color: white;
}

.about-hero h1 {
    font-size: 3.2rem; 
	  margin-bottom: 1.5rem; 
	   font-weight: 700; 
	  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.3rem;
                    opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
	 line-height: 1.6;
}

.story-section {
   background: white;
   padding: 80px 0;
}


.story-layout {
   display: grid;
    grid-template-columns: 2fr 1fr;
                    gap: 3rem;
    align-items: center;
}

.story-content h2 {
  font-size  :  2.8rem;
    margin-bottom: 1.5rem;
   color     :    #2c3e50;
}

.story-content p	{

	    color: #495057;
       font-size: 1.2rem;
  margin-bottom  :        1.5rem;
  line-height: 1.7;

}

.milestone-items {
       display     : flex; 
	  flex-direction: column; 
	  gap: 1rem; 
	   margin-top: 2rem;
}

.milestone {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-left: 3px solid #667eea;
   padding-left: 1.5rem;
}

.milestone-year  {
  background: linear-gradient(45deg, #667eea, #764ba2);
   color: white;
    padding: 0.5rem 1rem;
   border-radius    :    20px;
   font-weight:600;
    min-width: 70px;
    text-align: center;
}

.milestone-desc {
         color: #495057;
   font-weight: 500;
}

.story-visual img {
    width    : 100%;
   border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.philosophy-section {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  padding: 80px 0;
}

.philosophy-header
{
   text-align  :   center;
  margin-bottom:        3rem;
}

.philosophy-header h2 {
    font-size: 2.8rem;
  margin-bottom: 1rem;
    color: #2c3e50;
}

.philosophy-header p {
	font-size: 1.2rem;
  color: #495057;
}  

.philosophy-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.philosophy-card {
        background: white;
    padding :  2.5rem;
               border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
         transition: transform 0.3s ease;


}

.philosophy-card:hover {
  transform: translateY(-5px);
}

.philosophy-icon {
       margin-bottom: 1.5rem;
     }

.icon-circle {
  width: 60px;
    height: 60px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
   border-radius: 50%;
  display: flex;
   align-items   :        center;
  justify-content:      center;
    font-size: 1.8rem;
    font-weight: 700;
     margin  : 0 auto;
}

.philosophy-card h3 {
    font-size: 1.6rem;
      margin-bottom: 1rem;
  color: #2c3e50;
}

.philosophy-card p {

	    color: #6c757d;
    line-height: 1.6;


}

.team-section {
   background: white;
          padding: 80px 0;
  text-align: center;
}

.team-section h2 {
    font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.team-intro {
   font-size: 1.2rem;
  color: #495057;
   margin-bottom: 3rem;
   max-width: 600px;
	margin-left: auto;
  margin-right: auto;
}

.team-stats {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
   margin-bottom  :3rem;
}

.team-stat {

  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    padding: 2rem;
   border-radius: 15px;
   color: white;}

.team-stat .stat-number 
 {
  font-weight:    700;
	margin-bottom: 0.5rem;
                    font-size: 2.5rem;

}

.team-stat .stat-desc {
  font-size: 1rem;
    opacity: 0.9;
}

.expertise-areas {

	margin-top     :        3rem;
     }

.expertise-areas h3
{
  font-size  :        1.8rem;
   margin-bottom: 2rem;
   color    :        #2c3e50;
}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap   :1rem;
}

.expertise-item {
   background: #f8f9fa;
  padding: 1rem 1.5rem;
    border-radius: 25px;
    text-align: center;
   font-weight    :        500;
  color: #495057;
  transition: all 0.3s ease;
	
}

.expertise-item:hover {
  background: #667eea;
   color: white;
  transform: translateY(-2px);
}

.values-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
}

.values-layout {
   display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: center;
}

.values-image img {
     width    :   100%;
    border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.values-content {
   color   :       white;
}

.values-content h2    {
  font-size: 2.8rem;
   margin-bottom: 2rem;

}

.value-item {
   margin-bottom: 2rem;
}

.value-item h4 {
	   font-size: 1.3rem;
    margin-bottom: 0.5rem;
  font-weight     :        600;
}

.value-item p {


  color: rgba(255, 255, 255, 0.9);
   line-height: 1.6;
     }

.approach-section {
   background: white;
  padding: 80px 0;
}

.approach-section h2 {
	text-align: center;
   font-size: 2.8rem;
	 margin-bottom:     3rem;
  color: #2c3e50;


}

.approach-steps  {
                    max-width: 800px;
    margin: 0 auto;
}

.approach-step {

	    display: flex;
  gap: 2rem;
	 margin-bottom: 3rem;
  align-items  : center;
}

.approach-step.reverse {
	flex-direction: row-reverse;
    text-align: right;
}

.step-visual {
        flex-shrink: 0;
	   text-align: center;
}

.step-icon {
    width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
   border-radius: 50%;
   display: flex;
   align-items    :      center;
    justify-content: center;
   font-size: 1.5rem;
               font-weight: 700;
   margin: 0 auto 1rem;
	
}

.step-visual h3 {
    font-size: 1.4rem;
  color: #2c3e50;
    margin-bottom: 0.5rem;
}

.approach-step p {
   color: #6c757d;
   line-height: 1.6;
  font-size: 1.1rem;
}

.commitment-section {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
   padding: 80px 0;
}

.commitment-content {
	          display  :     grid;
	 grid-template-columns: 2fr 1fr;
  gap  :  3rem;
   align-items: center;
	}

.commitment-text h2 {
    font-size: 2.8rem;
  margin-bottom  :    1.5rem;
    color: #2c3e50;

}

.commitment-text > p {
      font-size: 1.2rem;
       margin-bottom  :        2rem;
     color: #495057;
    line-height: 1.7;
}

.commitment-list {

   list-style: none;
               margin-bottom: 2.5rem;
}  

.commitment-list li  {
  padding: 0.7rem 0;
   color  :       #495057;
  position: relative;
  padding-left :      2rem;
  line-height     :    1.6;
}

.commitment-list li::before {
  content: '✓';
  position: absolute;
		 left: 0;
   top: 0.7rem;
	 color:#667eea;
   font-weight: bold; 

}

.return-btn     {
  background: linear-gradient(45deg, #667eea, #764ba2);
   color: white;
   padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
	font-weight   :  600;
    display: inline-block;
  transition  :        all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.return-btn:hover {

  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);}

.commitment-image img     {
   width: 100%;
    border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.thankyou-main {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: calc(100vh - 160px);
  padding: 120px 0 80px;
}

.thankyou-content {
    background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  text-align: center;
    max-width    :  800px;
  margin: 0 auto;
}

.success-indicator {
  margin-bottom: 2rem;
}

.checkmark-circle {
	width: 80px;
	   height: 80px;
	  background: linear-gradient(45deg, #00d4aa, #00b894);
	  border-radius: 50%;
	   display  : flex;
	               align-items: center;
	  justify-content: center;
	        margin: 0 auto;
	    animation: checkmarkBounce 0.6s ease-out;
}  @keyframes checkmarkBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}.checkmark {
    width: 30px;
        height: 15px;
     border: 3px solid white;
    border-top: none;
 border-right: none;
  transform: rotate(-45deg);
    margin-top: -5px;
}

.thankyou-content h1 {
    font-size: 2.8rem; 
    margin-bottom: 1rem; 
    color     :     #2c3e50; 
    font-weight: 700;
}

.thankyou-subtitle {
  font-size: 1.2rem;
    color: #6c757d;
          margin-bottom: 3rem;
    line-height: 1.6;
}

.next-steps {

      margin-bottom   :3rem;
    text-align: left;


}

.next-steps h2


{
               font-size: 2rem;
    margin-bottom: 2rem;
   color: #2c3e50;
   text-align:   center;

}

.steps-timeline {
  position: relative;
	  padding-left: 2rem;
}

.steps-timeline::before {


  content: '';
   position   : absolute;
  left :   20px;
        top: 0;
  bottom: 0;
   width  :       2px;
    background: #e9ecef;
}

.timeline-item 
 {
  padding-left     :       2rem;
  margin-bottom: 2rem;
   position: relative; 

}

.timeline-dot {

	    position: absolute;
   left: -2rem;
    top  : 0.3rem;
  width: 12px;
  height: 12px;
    background: #dee2e6;
  border-radius: 50%;
   border: 2px solid white;
       box-shadow: 0 0 0 3px #e9ecef;
     }

.timeline-dot.active {
    background:      #00d4aa;
   box-shadow    :    0 0 0 3px #00d4aa;
    animation: pulse 2s infinite;
     }@keyframes pulse {
    0% { box-shadow: 0 0 0 3px #00d4aa; }
    50% { box-shadow: 0 0 0 8px rgba(0, 212, 170, 0.3); }
    100% { box-shadow: 0 0 0 3px #00d4aa; }
}.timeline-content h3 {
  margin-bottom: 0.5rem;
   color: #2c3e50;
   font-size: 1.3rem;
}  

.timeline-content p {
   color: #6c757d;
  line-height: 1.6;
}

.helpful-resources
{
	 margin-bottom: 3rem;
  text-align: center;
}

.helpful-resources h2 {
   font-size: 2rem; 
	  margin-bottom: 1rem; 
	    color     :#2c3e50;
}

.helpful-resources > p {

	  font-size: 1.1rem;
    color: #495057;
  margin-bottom: 2rem;}

.preparation-tips {
       text-align: left;
  gap: 1.5rem;
  display: flex;
     flex-direction: column;}

.tip-item {
  display: flex;
   gap: 1rem;
  align-items: flex-start;
    background: #f8f9fa;
    padding: 1.5rem;
   border-radius: 10px;
}

.tip-icon {
  width:   40px;
   height: 40px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
    border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
   font-weight: 700;
   flex-shrink: 0;
}

.tip-text h4 {
    font-size: 1.2rem;
  margin-bottom: 0.5rem;
   color: #2c3e50;
}

.tip-text p {
               color: #6c757d;
    line-height: 1.6;
}

.return-navigation {
	text-align: center;


}

.return-navigation h2 {
  margin-bottom :       2rem;
               font-size: 1.8rem;
     color: #2c3e50; 

}

.nav-buttons {
     display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
  padding: 14px 28px;
   border-radius: 25px;
               text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary
{
    background: transparent;
     color: #667eea;
    border: 2px solid #667eea;
  padding: 12px 26px;
    border-radius: 25px;
    text-decoration: none;
   font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

.thankyou-visual{
  margin-top: 3rem;
}

.thankyou-visual img {
    width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.4rem;
    }

    .story-layout,
    .method-content,
    .values-layout,
    .commitment-content {
        grid-template-columns: 1fr;
    }

    .approach-step,
    .approach-step.reverse {
        flex-direction: column;
        text-align: center;
    }

    .milestone {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .thankyou-content {
        margin: 0 1rem;
        padding: 2rem;
    }

    .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .preparation-tips {
        text-align: center;
    }

    .tip-item {
        flex-direction: column;
        text-align: center;
    }

    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .team-stats {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .steps-timeline {
        padding-left: 1rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .timeline-dot {
        left: -1.5rem;
    }
}