* {
  margin: 0;
    padding: 0;
   box-sizing: border-box;
	
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color  :        #333;
  background-color: #fafafa;
}

.main-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    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: 1rem 2rem;
}

.brand-logo {
    height: 45px;
  width: auto;
}

.nav-links {
   display: flex;
	 gap: 2rem;
}

.nav-links a {
   text-decoration: none;
    color: #2c3e50;
   font-weight: 500;
					transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
    color: #e67e22;
}

.nav-links a::after {
  content: '';
	position: absolute;
    width: 0;
   -o-transition: all 0.3s ease;
    height  : 2px;
  bottom     :   -5px;
  left: 50%;
  background-color: #e67e22;
   transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {

	  width: 100%;

}

.mobile-toggle {
  display: none;
  flex-direction: column;
   cursor: pointer;
  gap: 4px;
}

.mobile-toggle span {
	width: 25px;
  height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
               opacity   :     0;
}

.mobile-toggle.active span:nth-child(3)   {
  transform: rotate(-45deg) translate(7px, -6px);
}

main {
   margin-top: 80px;

}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 4rem 2rem;
   min-height: 70vh;
       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; 
	
}

.hero-text h1 {
	font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.3rem;
	 margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
  display: flex;
   gap: 1rem;
               flex-wrap: wrap; 
	
}

.primary-btn, .secondary-btn {
    display: inline-block;
   -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
    border-radius: 50px;
	padding: 12px 30px;
  text-decoration: none;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
}

.primary-btn {
  background-color: #e67e22;
    color: white;
}

.primary-btn:hover {
  background-color: #d35400;
  transform: translateY(-2px);
}

.secondary-btn

{
   background-color: transparent;
    color: white;
	border: 2px solid white;
	}

.secondary-btn:hover {
  background-color: white;
   color     :      #667eea;
}

.hero-visual img {
	width: 100%;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	
}

.section-container, .offerings-container, .contact-container {
	  max-width:    1200px;
   margin: 0 auto;
   padding: 0 2rem;}

.expertise-section {
  padding: 5rem 0;
	background-color     :    white;
}

.expertise-section h2 {
    text-align :   center;

	  font-size: 2.5rem;

	  margin-bottom: 3rem;

	               color: #2c3e50;
} 

.expertise-grid {


   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
	}

.expertise-card   {
  background: white;
   border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease; 
	
}

.expertise-card:hover {
  transform: translateY(-10px);
}

.expertise-card img {
  width: 100%;
    height: 250px;
    object-fit    :      cover;
}

.expertise-card h3 {
   padding: 1.5rem 1.5rem 1rem;
  color: #2c3e50;
   font-size: 1.4rem;
}

.expertise-card p {
    padding: 0 1.5rem 1.5rem;
  color :        #666;
  line-height: 1.7;
}

.methodology-section 
 {
    background  :  #f8f9fa;
    padding: 5rem 0;
}

.methodology-wrapper {
   max-width: 1200px;
   margin: 0 auto;
	padding: 0 2rem;
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items: center;
}

.methodology-content h2    {
       font-size: 2.5rem;
  margin-bottom: 2rem;
		color    :    #2c3e50;
}

.methodology-content p {


  margin-bottom: 3rem;
		line-height: 1.7;
	color: #666;
   font-size: 1.1rem;
}

.process-steps {
	display: flex;
	 flex-direction: column;
   gap: 2rem;
	
}

.step-item
{
    display: flex;
  align-items :    flex-start;
   gap: 1.5rem;



}

.step-number {
  background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
  width: 50px;
  height: 50px;
   border-radius: 50%;
	display     :flex;
    align-items: center;
  justify-content: center;
  font-weight: bold;
   flex-shrink: 0;


}

.step-content h4 {
  color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-content p {
  color: #666;
        margin:  0;
	
}

.methodology-image img {

    width: 100%;
		border-radius  :  15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);


}

.cta-section {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
   color    :white;
    padding: 4rem 0;
}

.cta-container {
   max-width: 800px;
    margin: 0 auto;
     text-align: center;
  padding: 0 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
   margin-bottom: 1.5rem;
}

.cta-content p {
	    font-size: 1.2rem;
  margin-bottom   :     2rem;
  opacity    :  0.9;
     }

.cta-button {
  background-color: white;
  color: #e67e22;
  padding: 15px 40px;
    text-decoration: none;
  border-radius    :        50px;
  font-weight: 600;
  font-size: 1.1rem;
   transition: all 0.3s ease;
   display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.offerings-section {
    padding   :    5rem 0;
    background-color: white;
}

.offerings-section h2 {
  text-align: center;
	font-size: 2.5rem;
   margin-bottom: 3rem;
	 color: #2c3e50;
}

.offerings-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

	 gap: 2rem;
}

.offering-card  {
  background: white;
   border-radius: 15px;
    padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
  position: relative;
}

.offering-card.premium {
    border     :       3px solid #e67e22;
  transform: scale(1.05);
}

.offering-card:hover {
  transform: translateY(-5px);
}

.offering-card.premium:hover		{
	  transform: translateY(-5px) scale(1.05);


}

.offering-card h3 {
         color: #2c3e50;
	margin-bottom: 1.5rem;
	 font-size: 1.5rem;
}

.offering-card ul {
   list-style: none;
  margin-bottom: 2rem;
}

.offering-card li {
   padding: 0.5rem 0;
   position: relative;
    padding-left:   1.5rem;
  color: #666;
}

.offering-card li::before {
  content: '✓';
   position: absolute;
  left   :   0;
   color: #27ae60;
    font-weight: bold;
}

.offering-price {
    font-size     :        1.5rem;
  font-weight: bold;
       color: #e67e22;
   text-align: center;
   padding-top   :       1rem;
  border-top: 2px solid #f1f1f1;}

.contact-section {
  background: #f8f9fa;
    padding: 5rem 0;
}

.contact-container {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items: start;
}

.contact-info h2 {
     color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.contact-info p {


   color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
    line-height: 1.7;

}

.contact-details {
   gap: 1rem;
  display: flex;
   flex-direction: column;


}

.detail-item {
   display: flex;
  flex-direction: column;
    gap: 0.3rem;
}

.detail-item strong {
   color: #2c3e50;
}


.detail-item span {

	color: #666;}

.contact-form {
    background  :     white;
    padding   :     2.5rem;
		border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-row{
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1rem;
}

.form-group label {
   display: block;
    margin-bottom: 0.5rem;
  color: #2c3e50;
  font-weight  :        500;

}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
  padding: 12px 15px;
  border: 2px solid #e1e1e1;
    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-group textarea {
	resize: vertical; 
	   min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
   color: white;
  padding: 15px 30px;
	 border:       none;
  border-radius: 50px;
  font-size: 1.1rem;
   font-weight: 600;
  cursor: pointer;
   transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.site-footer 
 {
    background-color: #2c3e50;
	 color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
	max-width: 1200px;
    margin: 0 auto;
  padding: 0 2rem;
   display: grid;
    grid-template-columns    :    1fr 2fr;
		 gap: 3rem;
   align-items: start;
}

.footer-logo {
    height: 60px;
  filter: brightness(0) invert(1);
}

.footer-links    {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-column h4 {
   margin-bottom: 1rem;
  color: #ecf0f1;


}

.link-column a,
.link-column span {
  display: block;
    color: #bdc3c7;
    text-decoration: none;
     margin-bottom: 0.5rem;
   -o-transition: color 0.3s ease;
  transition :    color 0.3s ease;
    -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;

}

.link-column a:hover {
    color   :#e67e22; 

}

.footer-bottom {
  border-top  :   1px solid #34495e;
    margin-top: 2rem;
   padding-top: 1rem;
   text-align: center;
  color: #95a5a6;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .methodology-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .offering-card.premium {
        transform: none;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .expertise-section,
    .methodology-section,
    .offerings-section,
    .contact-section {
        padding: 3rem 0;
    }
    
    .section-container,
    .offerings-container,
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}.about-hero {
     background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: white;
	padding  :5rem 2rem 3rem;
   text-align: center;


}

.about-hero-content h1 {
   font-size: 3rem;
    margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-subtitle {
   font-size: 1.3rem;
   opacity: 0.9;
  max-width: 800px;
    margin: 0 auto;
}

.story-section {
   padding: 5rem 0;
   background-color: white;
}

.story-container {
   padding: 0 2rem;
   grid-template-columns: 1fr 1fr;
    max-width    :        1200px;
  gap: 4rem;
  margin: 0 auto;
       display: grid;
    align-items: center;
}

.story-content h2 {
   font-size: 2.5rem;
    margin-bottom  : 2rem;
          color   :     #2c3e50;
}

.story-content p {
   font-size: 1.1rem;
    line-height: 1.7;
  color: #666;
   margin-bottom: 1.5rem;
}

.story-visual img {
   width: 100%;
         border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}  

.expertise-areas
	{
   background    :     #f8f9fa;
   padding: 5rem 0;
}

.expertise-container {
    max-width: 1200px;
   margin :     0 auto;
    padding: 0 2rem;
}

.expertise-areas h2 {
    text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
	color: #2c3e50;
}

.expertise-list {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		 gap     :      2rem;
}

.expertise-item		{
    background: white;
  padding   :    2rem;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
	
}

.expertise-item h3 {

       color: #2c3e50;
    margin-bottom: 1rem;
	font-size: 1.4rem;
}

.expertise-item p {
    color: #666;
	line-height: 1.6;
}

.team-approach {
                    padding: 5rem 0;
     background-color: white;

}

.approach-container {
       max-width: 1200px;
    margin: 0 auto;
  padding: 0 2rem;
   display: grid;
   grid-template-columns: 1fr 1fr;
          gap: 4rem;
   align-items: center;
	}

.approach-image img {


	width: 100%;
  border-radius:        15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
     }

.approach-content h2 {
   font-size: 2.5rem;
  margin-bottom: 2rem;
    color: #2c3e50;
}

.approach-content > p {
    line-height: 1.7;
    margin-bottom: 2rem;
   color: #666;
    font-size: 1.1rem;
}

.approach-points {
  display: flex;
  flex-direction: column;
   gap: 1.5rem;
}

.approach-point h4  
  {
		 color: #2c3e50;
  margin-bottom: 0.5rem;
     }

.approach-point p {


   color: #666;

	   line-height: 1.6;

	  margin: 0;

}

.credentials-section {

	   background: #f8f9fa;
    padding: 5rem 0;}  

.credentials-container 
 {
   max-width: 1200px;
    margin: 0 auto;
     padding: 0 2rem;


}

.credentials-section h2 {

    text-align: center;
  font-size    :     2.5rem;
   margin-bottom:       3rem;
    color: #2c3e50;
	}

.credentials-grid {
   display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	       gap :    2rem;
}

.credential-item {
    background: white;
     border-radius: 15px;
	overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.credential-item:hover {
  transform: translateY(-10px);
}

.credential-item img {
				 width: 100%;
  height: 200px;
    object-fit: cover;
}

.credential-item h3 {
   padding: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
      font-size: 1.4rem;
}

.credential-item p {
  padding: 0 1.5rem 1.5rem;
  color: #666;
   line-height: 1.7;
}

.values-section {
  padding    :       5rem 0;
    background-color: white;
}

.values-container {
  max-width     :1200px;
   margin: 0 auto;
    padding: 0 2rem;
}

.values-section h2 {
  text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
   color     : #2c3e50;
}

.values-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}


.value-block {
    padding: 2rem 1rem;
          text-align: center;
}

.value-block h3 {
  color: #e67e22;

   margin-bottom: 1rem;

   font-size: 1.4rem;
}

.value-block p {
   color: #666;
  line-height: 1.6;


}

.impact-section	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 5rem 0;
}

.impact-container {


   max-width:      1200px;
    margin: 0 auto;
   padding :0 2rem;

}

.impact-section h2 {
  text-align: center;
	font-size: 2.5rem;
    margin-bottom: 3rem;
}

.impact-stats {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
               margin-bottom: 4rem;
}

.stat-item {
  text-align: center;
    padding: 1.5rem;
}

.stat-number  
  {
   font-size: 3rem;
    font-weight   :   bold;
  margin-bottom: 0.5rem;
	color     :#e67e22;
}

.stat-label {
   font-size: 1.1rem;
   opacity: 0.9;
}

.testimonial-preview {
   max-width:     800px;
   margin  :      0 auto;
   text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,0.1);
    border-radius: 15px;
  backdrop-filter: blur(10px);
}  

.testimonial-preview blockquote {
 font-size: 1.3rem;
   font-style: italic;
      margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-preview cite

{
    opacity :     0.8;
}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
	 color    :       white;
   padding: 5rem 2rem;
   min-height: 80vh;
  display: flex;
	 align-items: center;
}

.thankyou-container {
  max-width: 1200px;
   margin: 0 auto;
	display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
	align-items: center;
}

.success-icon {
    text-align: center;
   margin-bottom: 2rem;
}

.checkmark {
  width: 80px;
   height: 80px;
                    margin: 0 auto;
}

.checkmark svg 
 {
   width:      100%;
   height: 100%;
}

.checkmark circle {

	       stroke: white;
    stroke-width: 2;
        fill   :   none;
   stroke-dasharray: 166;
        stroke-dashoffset: 166;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;}

.checkmark path {
     stroke: white;
   stroke-width: 3;
   stroke-dasharray: 48;
   stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards; 

}@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}.thankyou-content h1  
  {
  font-size    :        3rem;
		margin-bottom: 1.5rem;
  text-align: center;
}

.thankyou-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
               text-align: center;
}

.next-steps {

    margin-bottom: 3rem;
}

.next-steps h2 {
   font-size: 2rem;
  margin-bottom: 2rem;
	 text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 1.5rem;
   margin-bottom: 3rem;
}


.step-card {
  background: rgba(255,255,255,0.1);
  padding : 1.5rem;
   border-radius: 15px;
  text-align:center;
  backdrop-filter: blur(10px);
}

.step-icon {

       width: 50px;
  height: 50px;
	background: white;
  color: #27ae60;
   border-radius: 50%;
    display: flex;
    align-items: center;
  justify-content: center;
   font-weight: bold;
   font-size: 1.5rem;
   margin: 0 auto 1rem;
	
}

.step-card h3 {
	    margin-bottom: 1rem; 
	 font-size: 1.2rem;
	}

.step-card p {
    opacity: 0.9;
   line-height: 1.5;
}

.meantime-section {
   margin-bottom: 3rem;
}

.meantime-section h2 {
  font-size: 2rem;
   margin-bottom: 1rem;
    text-align     :        center;
}

.meantime-section > p {
	   font-size: 1.1rem;
  margin-bottom: 2rem;
   opacity: 0.9;
   text-align: center;}


.preparation-tips {
    display   :     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tip-item	{
  background: rgba(255,255,255,0.1);
   padding: 1.5rem;
   border-radius :       15px;
  backdrop-filter: blur(10px);
}

.tip-item h4 {
   margin-bottom: 0.5rem;
  color: #ecf0f1;
}

.tip-item p {
  opacity  :       0.9;
   line-height: 1.5;
   margin: 0;
}

.action-buttons {
       display: flex;
  flex-wrap: wrap;
    gap   :        1rem;
   justify-content    :center;}

.thankyou-visual img {
   width: 100%;

	    border-radius: 15px;

	  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.emergency-contact {
    background: #f8f9fa;

	 padding: 4rem 0; 
	
}

.emergency-container 
 {
    max-width: 800px;
   margin: 0 auto;
   padding: 0 2rem;
  text-align: center;
}

.emergency-contact h2 {
         color: #2c3e50;
  margin-bottom: 1rem;
   font-size: 2rem;
}


.emergency-contact > p {
    color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.emergency-details {


   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap    :     2rem;
	}

.contact-method {
   background:   white;
  padding    :      2rem;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}  

.contact-method h3 {
  color: #2c3e50;
   margin-bottom: 1rem;
}

.contact-value   {
  display: block;
   color: #e67e22;
    font-weight: 600;
   font-size: 1.2rem;
   margin-bottom: 0.5rem;
}

.contact-method p {
  color: #666;
   font-size: 0.9rem;
        margin: 0;
}  

.testimonial-section {
 background: white;
     padding: 4rem 0;
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
   padding   :   0 2rem;
    text-align: center;
}

.testimonial-section h2 {
      color: #2c3e50;
  margin-bottom: 2rem;
    font-size: 2rem;

}

.testimonial-slider  
  {
          position: relative;
}


.testimonial-item {
	display: none;
  background: #f8f9fa;
  padding :     2rem;
  border-radius: 15px;
   animation: fadeIn 0.5s ease-in-out;
	
}

.testimonial-item.active {
   display:       block;
}

.testimonial-item blockquote {
  font-size   :    1.2rem;
   font-style: italic;
   color  :  #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-item cite   {
   color: #e67e22;
   font-weight: 600;
}@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .story-container,
    .approach-container,
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .values-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid,
    .preparation-tips {
        grid-template-columns: 1fr;
    }
    
    .emergency-details {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 3rem 1rem 2rem;
    }
    
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .story-section,
    .expertise-areas,
    .team-approach,
    .credentials-section,
    .values-section,
    .impact-section,
    .emergency-contact,
    .testimonial-section {
        padding: 3rem 0;
    }
    
    .story-container,
    .expertise-container,
    .approach-container,
    .credentials-container,
    .values-container,
    .impact-container,
    .emergency-container,
    .testimonial-container {
        padding: 0 1rem;
    }
    
    .thankyou-hero {
        padding: 3rem 1rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}.section-container h1 {
	 font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom  :   2rem;
    text-align: center;
}

.section-container h2 {
      font-size: 1.8rem;
	color: #2c3e50;
    margin: 2rem 0 1rem;
}

.section-container p {
   font-size: 1.1rem;
 color    :#666;
   line-height: 1.7;
  margin-bottom: 1.5rem;
}

.section-container ul{


  list-style: none;
    margin-bottom    :   1.5rem;


}

.section-container li {
   padding :     0.5rem 0;
    position: relative;
        padding-left: 1.5rem;
   color  : #666;
}

.section-container li::before {
  content: '✓';
   position: absolute;
  left: 0;
  color     :      #27ae60;
    font-weight: bold;
}