* {
   box-sizing: border-box;
  padding: 0;
   margin: 0;
}

body  {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height:      1.6;
  color: #2c3e50;
	 background-color: #ffffff; 

}

.primary-navigator {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1rem 0;
  position: fixed;
  top: 0;
    width: 100%;
   z-index  :  1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-wrapper {
  max-width: 1200px;
   margin: 0 auto;
    display: flex;
    justify-content: space-between;
   align-items: center;
  padding: 0 2rem;
}

.brand-section .company-logo {
    height: 45px;
		width: auto;
}

.menu-items {


   display: flex; 
	  gap: 2rem;


}

.nav-link {
	    color: white;
  text-decoration: none;
   font-weight: 500;
   transition: color 0.3s ease;
  position: relative;

} 

.nav-link:hover,
.nav-link.active		{
   color: #f8f9fa;
}

.nav-link.active::after {
  content: '';
  position :       absolute;
   bottom: -5px;
   left: 0;
   width: 100%;
   height: 2px;
         background-color: #f8f9fa;
}

.mobile-menu-toggle {
   border: none;

	background: none;

   display  :  none;

    cursor: pointer;

  padding: 0.5rem;

    flex-direction: column;
}

.mobile-menu-toggle span	{
    -webkit-transition: 0.3s;
 width  :25px;
	 height: 3px;
                    background-color: white;
  -moz-border-radius: 2px;
    margin: 3px 0;
  transition: 0.3s;
   border-radius :    2px;
}

.main-content {
                    margin-top   :80px;
}

.hero-banner {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 5rem 2rem;
}

.hero-content-wrapper {
   max-width: 1200px;
  margin: 0 auto;
	 display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.main-headline {
  font-size: 3.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
        line-height: 1.2;
}

.hero-description {
	font-size: 1.2rem;
  color: #5a6c7d;
   margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
               flex-wrap: wrap;
	
}  

.primary-action-btn    {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	    color: white;
				padding: 1rem 2rem;
	  text-decoration: none;
	  border-radius: 8px;
	    font-weight: 600;
	          transition: all 0.3s ease;
	  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.primary-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.secondary-action-btn {
  border: 2px solid #667eea;
  color: #667eea;
         padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
   font-weight: 600;
	transition: all 0.3s ease;
}

.secondary-action-btn:hover {
    background-color: #667eea;
    color     :     white;
}

.hero-image
{
       width: 100%;
  height: auto;
        border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.services-overview {
   padding: 5rem 2rem;
   background-color: #f8f9fa;
}

.section-container {
  margin: 0 auto;
  max-width  :       1200px;
}

.section-title {
   text-align: center;
	  font-size: 2.5rem;
	   color: #2c3e50;
	  margin-bottom: 3rem;
	  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.service-card {
    background: white;
  padding: 2rem;
    border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
	}

.service-image {
  width: 100%;
   height   :      200px;
  object-fit: cover;
   border-radius: 10px;
    margin-bottom: 1.5rem;

}

.service-name {
  font-size: 1.5rem;
   color: #2c3e50;
   margin-bottom: 1rem;
    font-weight  :     600;
}

.service-info {
    color: #5a6c7d;
   line-height: 1.6;
}

.methodology-section {
    padding: 5rem 2rem;
}

.methodology-content {
       display :       grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items   :        center;
}

.method-headline {
   font-size: 2.2rem;
	    color :    #2c3e50;
	               margin-bottom:   1.5rem;
	   font-weight: 700;


}

.method-description {
  font-size :        1.1rem;
  color: #5a6c7d;
   margin-bottom: 2rem;
    line-height: 1.7;
}

.method-benefits {
    display: flex;
	flex-direction: column;
    gap: 1.5rem;

}

.benefit-item h4 {
   color: #667eea;
   font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-item p {

	  color   :     #5a6c7d;
	}

.methodology-image		{
  width:  100%;
    height: auto;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 4rem 2rem;
   text-align: center;

}

.cta-wrapper {
   max-width: 800px; 
   margin: 0 auto;
}

.cta-title {
   font-size: 2.5rem;
  color: white;
    margin-bottom    :  1.5rem;
   font-weight: 700; 
	
}

.cta-text {
  font-size: 1.2rem;
    color: #f8f9fa;
   margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-button {

	  background: white;
    color: #667eea;
   padding: 1.2rem 2.5rem;
  text-decoration: none;
   border-radius: 8px;
   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: 5rem 2rem;
   background-color     :      #f8f9fa;
}

.contact-container   {
    max-width: 800px;
  margin: 0 auto;
}

.contact-title    {
   text-align: center;
   font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 1rem;
   font-weight: 700;
}

.contact-subtitle {
    text-align: center;
    font-size     :       1.1rem;
  color: #5a6c7d;
   margin-bottom :  3rem;
}

.contact-form {
    background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {

	  display: grid; 
		 grid-template-columns: 1fr 1fr; 
	    gap: 2rem; 
	  margin-bottom: 2rem;
}

.form-group {
  display: flex;
    flex-direction    :    column;
}

.form-group.full-width {
	grid-column: span 2;
  margin-bottom: 2rem;
} 

.form-group label {
   font-weight: 600;
    color: #2c3e50;
   margin-bottom     :        0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding:        1rem;
    border: 2px solid #e1e8ed;
  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: #667eea;
}

.form-submit-btn {
  width: 100%;

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

  color: white;

    padding: 1.2rem 2rem;

    border: none;

    border-radius: 8px;

  font-size: 1.1rem;

   font-weight: 600;

   cursor: pointer;

  transition   :all 0.3s ease;

  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.site-footer {
   background-color: #2c3e50;
  color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
   margin: 0 auto;
   display: grid;
  grid-template-columns: auto 1fr;
   gap: 3rem;
  align-items: start;


}

.footer-logo {
   height: 50px;
   width: auto;
}

.footer-info {
    display :     grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap  :  2rem;
}

.footer-section h4 {
   margin-bottom: 1rem;
   color: #ecf0f1;
	font-weight: 600;
}

.footer-address,
.footer-phone {
     color :      #bdc3c7;
 margin-bottom: 0.5rem;
	}

.footer-nav,
.footer-legal {
  display: flex; 
	  flex-direction: column; 
	    gap: 0.5rem;
}

.footer-nav a,
.footer-legal a {
    text-decoration: none;
  color: #bdc3c7;
  transition   :     color 0.3s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: #ecf0f1;
}

.footer-bottom {
   max-width: 1200px;
  margin     :   2rem auto 0;
    padding-top: 2rem;
  border-top: 1px solid #34495e;
	text-align : center;
	color: #bdc3c7;
}@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .menu-items {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .menu-items.active {
        left: 0;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .main-headline {
        font-size: 2.2rem;
    }
    
    .methodology-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 0 1rem;
    }
    
    .hero-banner,
    .services-overview,
    .methodology-section,
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-action-btn,
    .secondary-action-btn {
        width: 100%;
        text-align: center;
    }
}.about-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 2rem;
}

.about-hero-wrapper {
       max-width: 1200px;

   margin: 0 auto;

  display     :   grid;

  grid-template-columns: 1fr 1fr;

    gap  :    3rem;

   align-items: center;

}

.about-main-title {
   font-size     :        2.8rem;
   color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 700;
   line-height: 1.3;
}

.about-hero-text    {
  font-size: 1.1rem;
    color :     #5a6c7d;
  line-height: 1.7;
}

.hero-about-img {
				 width: 100%;
    height: auto;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.company-story {
	padding: 4rem 2rem;
}

.story-container {
               max-width: 1200px;
  margin: 0 auto;
	
}

.story-headline {
	  font-size: 2.3rem;
  color: #2c3e50;
  text-align: center;
   margin-bottom: 3rem;
     font-weight: 700;

}

.story-content {
   display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items    :        center;
}

.story-paragraph {
    font-size  :    1.1rem;
    margin-bottom: 1.5rem;
  line-height: 1.7;
   color: #5a6c7d;
}

.story-image {
  width: 100%;
   height   :  auto;
    border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.methodology-details {
  background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.methodology-wrapper {
    margin: 0 auto;
	    max-width: 1200px;
}

.methodology-title
	{
  font-size: 2.3rem;
   color: #2c3e50;
    text-align: center;
  margin-bottom: 3rem;
   font-weight: 700; 

}

.methodology-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap     :  2rem;
}

.method-card{
      background     :       white;
   padding: 2.5rem 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
   position: relative;
   transition: transform 0.3s ease;
	}

.method-card:hover {
  transform: translateY(-3px);
}

.method-number {
    position: absolute;
    top: -15px;
   left: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
  width :     40px;
   height: 40px;
   border-radius: 50%;
   display: flex;
                    align-items: center;
	justify-content: center;
 font-weight: 700;
  font-size: 1.1rem;
}

.method-card-title {
  font-size: 1.4rem;
   color: #2c3e50;
    margin-bottom: 1rem;
   font-weight: 600;
    margin-top: 0.5rem;
}

.method-card-desc {
  color: #5a6c7d;
   line-height: 1.6;
}

.achievements-section {
  padding: 4rem 2rem;
}

.achievements-container {
                    max-width: 1200px;
  margin    :   0 auto;
}

.achievements-title {
    font-size: 2.3rem; 
	   color: #2c3e50; 
		text-align: center; 
	   margin-bottom: 3rem; 
	    font-weight: 700;
}

.achievements-stats     {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
   margin-bottom: 3rem;}

.stat-item {
    text-align: center;
   padding: 1.5rem;
}

.stat-number {
       font-size: 3rem;
   font-weight: 800;
   color: #667eea;
   margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
   color     :  #5a6c7d;
      font-weight: 600;
}

.achievements-image-wrapper {
    text-align: center;
}

.achievements-img {
	 max-width:    600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);

}

.team-approach {
	    background-color: #f8f9fa;
    padding: 4rem 2rem;

}

.approach-container {
	max-width: 1200px;

	    margin  :     0 auto;
}

.approach-content
	{
   display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
   align-items: start;


}

.approach-headline    {
    font-size: 2.2rem;
    color: #2c3e50;
         margin-bottom: 1.5rem;
      font-weight: 700;
}



.approach-text{
  font-size: 1.1rem;
      color: #5a6c7d;
       margin-bottom: 2rem;
   	 line-height: 1.7;
}

.approach-principles {
	display: flex;
   flex-direction: column;
   gap: 1.5rem; 

}

.principle-item {
   padding: 1rem 0;
} 

.principle-title {
    color: #667eea; 
	  font-size  :  1.2rem; 
	   margin-bottom: 0.5rem; 
	    font-weight: 600;
}

.principle-desc {
	 color: #5a6c7d;
  line-height: 1.6;
}

.approach-image {
  width     :       100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.certifications-section {
   padding  :4rem 2rem;
}

.cert-wrapper {
   max-width    :        1000px;
  margin: 0 auto;
  text-align: center;
}

.cert-title {
   font-size    :     2.3rem;
   color: #2c3e50;
  margin-bottom: 2rem;
  font-weight    :        700;
}

.cert-description	{
	    font-size: 1.1rem;
   color: #5a6c7d;
   margin-bottom: 3rem;
  line-height: 1.7;
    max-width     :   800px;
    margin-left: auto;
   margin-right: auto;
	}

.cert-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-badge {
  background: white;

	   padding: 2rem 1.5rem;

	    border-radius: 10px;

	  box-shadow: 0 4px 15px rgba(0,0,0,0.1);

	  border-top: 4px solid #667eea;
}

.cert-badge h4 {
   color:     #2c3e50;

	  font-size: 1.3rem;

	    margin-bottom: 0.8rem;

	    font-weight: 600;
}

.cert-badge p {

		 color: #5a6c7d;
   line-height: 1.5;

}

.thankyou-hero {
    padding: 4rem 2rem; 
	  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thankyou-container {
   max-width: 1200px;

	    margin: 0 auto;

	   display  : grid;

	    grid-template-columns: 1.2fr 1fr;

	     gap  :    4rem;

		 align-items: center;
}

.success-icon-wrapper{
	   text-align: center;
	 margin-bottom     :    2rem;}

.success-checkmark {
   width: 80px;
    height   : 80px;
   border-radius: 50%;
  display: inline-block;
          stroke-width: 3;
  stroke: #4CAF50;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4CAF50;
    animation     :      fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
  position: relative;
  margin: 0 auto;
}

.success-checkmark .check-icon {
    width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
    box-sizing: content-box;
  border   : 4px solid #4CAF50;
}



.success-checkmark .check-icon::before {
   top: 3px;
   left: -2px;
    width: 30px;
               transform-origin     :    100% 50%;
    border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
  top: 0;
	left: 30px;
  width: 60px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
   animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before, .success-checkmark .check-icon::after {
  content: '';
    height: 100px;
   position: absolute;
	 background: #f8f9fa;
  transform: rotate(-45deg);
}

.success-checkmark .icon-line {
    height: 4px;
  background-color: #4CAF50;
  display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.success-checkmark .icon-line.line-tip {
  top: 46px;
    left: 14px;
    width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}

.success-checkmark .icon-line.line-long {
  top: 38px;
  right: 8px;
  width:   47px;
  transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.thankyou-title {
     margin-bottom: 1.5rem; 
  font-size: 2.8rem; 
    text-align: center; 
   color: #2c3e50; 
   font-weight: 700;
}  

.thankyou-message {
	font-size: 1.2rem;
   color: #5a6c7d;
	margin-bottom: 3rem;
   line-height: 1.7;
    text-align: center;
}


.next-steps{
    margin-bottom: 3rem;
}

.steps-title {


  font-size:     1.8rem;
	color: #2c3e50;
   margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}  

.steps-timeline {
    display  :  flex;
  flex-direction: column;
    gap    :   1.5rem;
}

.timeline-item {
    display: flex;
  align-items: flex-start;
   gap: 1rem;
}

.timeline-marker	{
  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     :     700;
   flex-shrink: 0;
}

.timeline-content h4 {
  color: #2c3e50;
   font-size: 1.2rem;
  margin-bottom: 0.5rem;
 font-weight: 600;
}

.timeline-content p {
       color: #5a6c7d;
    line-height: 1.5;
}

.contact-reminder {
  background: white;
  padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 3rem;
  text-align: center;
  border-left: 4px solid #667eea;
}

.reminder-title {
    color   : #2c3e50;
     font-size: 1.5rem;
      margin-bottom: 1rem;
     font-weight: 600;
}  

.reminder-text
	{
  color  :    #5a6c7d;
  margin-bottom :1.5rem;
                    line-height: 1.6; 

}

.contact-details p {
  color     :   #5a6c7d;
  margin-bottom: 0.5rem; 
	
}

.phone-contact strong {
    color: #667eea;
  font-weight     : 700;


} 

.thankyou-actions  
  {
  display: flex; 
	  gap: 1.5rem; 
	   justify-content: center; 
	   flex-wrap: wrap;
}

.primary-return-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
	 padding: 1rem 2rem;
    text-decoration: none;
  border-radius: 8px;
   font-weight     :600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.primary-return-btn:hover {

	  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);


}

.secondary-return-btn {
   border: 2px solid #667eea;
    color: #667eea;
   padding: 1rem 2rem;
	 text-decoration: none;
   border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.secondary-return-btn:hover {
    background-color :        #667eea;
   color: white;
}  

.thankyou-image {

	    width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);

}


.additional-resources {
  background-color: #f8f9fa;
      padding: 4rem 2rem;
}

.resources-container {
    max-width: 1000px;
    margin: 0 auto;
}

.resources-title {
  font-size: 2.2rem;
   color: #2c3e50;
  text-align : center;
	margin-bottom: 3rem;
	font-weight: 700;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
	
}

.resource-card {
               background: white;
	padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-3px);
}

.resource-card-title {
  color: #667eea;
   font-size:        1.3rem;
    margin-bottom: 1rem;
  font-weight: 600;
}

.resource-card-text {
  color: #5a6c7d;

	    line-height: 1.6;
}@keyframes icon-line-tip {
    0% { width: 0; left: 1px; top: 19px; }
    54% { width: 0; left: 1px; top: 19px; }
    70% { width: 50px; left: -8px; top: 37px; }
    84% { width: 17px; left: 21px; top: 48px; }
    100% { width: 25px; left: 14px; top: 45px; }
}

@keyframes icon-line-long {
    0% { width: 0; right: 46px; top: 54px; }
    65% { width: 0; right: 46px; top: 54px; }
    84% { width: 55px; right: 0px; top: 35px; }
    100% { width: 47px; right: 8px; top: 38px; }
}

@keyframes rotate-circle {
    0% { transform: rotate(-45deg); }
    5% { transform: rotate(-45deg); }
    12% { transform: rotate(-405deg); }
    100% { transform: rotate(-405deg); }
}

@media (max-width: 768px) {
    .about-hero-wrapper,
    .story-content,
    .approach-content,
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-main-title,
    .thankyou-title {
        font-size: 2.2rem;
    }
    
    .methodology-grid,
    .achievements-stats,
    .cert-list,
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-return-btn,
    .secondary-return-btn {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
    
    .steps-timeline {
        gap: 1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .company-story,
    .methodology-details,
    .achievements-section,
    .team-approach,
    .certifications-section,
    .thankyou-hero,
    .additional-resources {
        padding: 3rem 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .method-card,
    .resource-card {
        padding: 1.5rem;
    }
    
    .contact-reminder {
        padding: 1.5rem;
    }
}.policySection	{
    padding: 80px 2rem;
    background    :    #f8f9fa;
}

.policyContainer     {
    max-width: 800px;
         margin: 0 auto;
    text-align: left;
} 

.policyContainer h2 {
  font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 1.5rem;
	 font-weight   :       700;
	
}

.policyContainer p {


    color     :      #7f8c8d;
   margin-bottom  :  1.5rem;
  line-height: 1.7;
   font-size: 1.1rem;
	}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}