* {

	    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: #ffffff;

}

.navigation-wrapper
	{
	position   : fixed;
    top: 0;
   left: 0;
    right: 0;
    background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
   z-index     :1000;
  padding    :       0 20px;}

.navigation-content {
  max-width  :  1200px;
  margin: 0 auto;
    display: flex;
   justify-content: space-between;
   align-items: center;
  padding: 15px 0;
}

.brand-section {
  flex    :      1;
}

.brand-logo {
   height: 45px;

	  width: auto;
}

.menu-links {
    display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
         color: #333;
  font-weight: 500;
  font-size: 16px;
	transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.mobile-menu-toggle {
     display: none;
   flex-direction: column;
    background: none;
  border: none;
    cursor: pointer;
   padding: 5px;
     }

.burger-line {
   -o-transition: 0.3s;
	width: 25px;
   -moz-transition  :  0.3s;
  height: 3px;
    background-color: #333;
   margin: 3px 0;
	-webkit-transition    :   0.3s;
   transition: 0.3s;
}

.mobile-menu-toggle.active .burger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}  

.mobile-menu-toggle.active .burger-line:nth-child(2) {

	  opacity     :     0;
}

.mobile-menu-toggle.active .burger-line:nth-child(3) {
	  transform: rotate(45deg) translate(-5px, -6px); 
	
}

.mobile-menu	{
  display: none;
    position: absolute;
    top    :   100%;
       left: 0;
   right   :  0;
       background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 20px;
}

.mobile-link {
  display: block;
               text-decoration: none;
   color: #333;
  padding:        12px 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.mobile-link:last-child {
		 border-bottom: none;
}

.hero-section {
       margin-top: 80px;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	}

.hero-container {
  max-width: 1200px;
   margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items: center;
}

.hero-text-content h1 {
   font-size     :        3.2em;
   font-weight: 700;
    color: #1a202c;
  margin-bottom: 25px;
	line-height: 1.2;
}

.hero-description {
    font-size :  1.3em;
    color: #4a5568;
	margin-bottom: 35px;
	line-height: 1.6;
}

.hero-actions    {
  display: flex; 
	    gap: 20px; 
	  flex-wrap: wrap;
}

.primary-button {
    background: #2563eb;
    color: white;
   text-decoration: none;
  padding: 16px 32px;
   border-radius     :    8px;
  font-weight: 600;
  font-size: 1.1em;
         transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.primary-button:hover {
         background  :      #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.secondary-button {

	    background: transparent;
    color: #2563eb;
  text-decoration: none;
    padding: 16px 32px;
   border: 2px solid #2563eb;
   border-radius: 8px;
   font-weight    :       600;
   font-size: 1.1em;
    transition: all 0.3s ease;
	}

.secondary-button:hover {
    background: #2563eb;
               color: white;
  transform: translateY(-2px);
}

.hero-image-wrapper {

  text-align: center;
}

.hero-image {


    width: 100%; 
   max-width    :   500px; 
   height: auto; 
    border-radius: 12px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

}

.problem-section {
      padding: 100px 20px;
    background  :  #ffffff;
	}

.section-container {
	  max-width: 1200px;

	   margin: 0 auto;


}

.problem-content h2 {
             font-size: 2.8em;
  text-align: center;
  color: #1a202c;
   margin-bottom: 60px;
   font-weight: 700;


}

.challenges-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}

.challenge-item {
	background: #f7fafc;
    padding: 35px;
  border-radius: 12px;
       border-left: 4px solid #ef4444;
	 transition: transform 0.3s ease;
}

.challenge-item:hover {
  transform: translateY(-5px);
}

.challenge-item h3 {
  font-size: 1.4em;
  color: #1a202c;
  margin-bottom: 15px;
    font-weight: 600;
}

.challenge-item p {
  color: #4a5568;
  font-size: 1.1em;
   line-height: 1.7;
}

.services-section {
  padding: 100px 20px; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.services-section h2 {
  font-size: 2.8em;
  text-align: center;
  color: white;
  margin-bottom: 60px;
    font-weight: 700;
}

.services-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
}

.service-card {
   background: white;
   border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
   transition    :transform 0.3s ease;
}

.service-card:hover {


  transform: translateY(-10px);

}

.service-image {
    width: 100%;
    height    : 220px;
   object-fit: cover;
}

.service-content {


  padding: 30px;
	}

.service-content h3 {
  font-size: 1.5em;
  color:       #1a202c;
		margin-bottom: 15px;
  font-weight: 600; 

}

.service-content p {
                    color: #4a5568;
               margin-bottom: 20px;
  font-size :   1.1em;
}

.service-features


{
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: #4a5568;
   position: relative;
  padding-left: 20px;
}

.service-features li:before {
  content: '✓';
   position: absolute;
   left  :        0;
	color: #10b981;
    font-weight: bold;}

.methodology-section {
  padding: 100px 20px;
    background: #f8fafc;
}

.methodology-content h2{
    font-size: 2.8em;
   color: #1a202c;
  margin-bottom: 30px;
  font-weight: 700;
}

.methodology-content > p {
     margin-bottom: 50px;
       color: #4a5568;
       font-size: 1.2em;
      line-height: 1.7;
}

.methodology-steps {
	  display: flex;
    flex-direction: column;
  gap: 25px; 
	
}

.method-step {
   display: flex;
        align-items :     center;
  gap: 25px;
   background: white;
    padding  :  25px;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-number {

  background: #2563eb;
   color: white;
  width: 60px;
		height  :    60px;
   border-radius: 50%;
               display: flex;
   align-items: center;
	justify-content: center;
   font-size: 1.5em;
	font-weight     :   bold;
    flex-shrink: 0;


}

.step-content h4 
 {
  font-size   :        1.3em;
    color: #1a202c;
   margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
   color: #4a5568;
      font-size: 1.1em;
} 

.cta-section  
  {
   padding: 100px 20px;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
   text-align: center;
}

.cta-content h2 {
  font-size: 3em;
   color: white;
  margin-bottom: 25px;
    font-weight: 700;
}

.cta-content > p{


   font-size   : 1.3em;
	color: #cbd5e0;
  margin-bottom: 40px;
  max-width: 800px;
    margin-left :      auto;
      margin-right: auto;
  line-height     :      1.6;}

.cta-benefits {
   display: flex;
   justify-content: center;
   gap: 30px;
  margin-bottom: 40px;
          flex-wrap: wrap;
}

.benefit-item {
  background: rgba(255,255,255,0.1);
   color: white;
   padding  :     15px 25px;
    border-radius: 25px;
    font-weight: 500;
  backdrop-filter: blur(10px);
}



.cta-button {
  background: #10b981; 
	  color: white; 
	  text-decoration: none; 
	  padding: 20px 40px; 
	  border-radius: 10px; 
		 font-weight: 600; 
	  font-size: 1.2em; 
	   display: inline-block; 
	    transition    :all 0.3s ease; 
	  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.cta-button:hover {
  background: #059669;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.testimonials-section {
   padding:  100px 20px;
    background: white;
}

.testimonials-section h2 {
  font-size: 2.8em;
  text-align: center;
	 color:     #1a202c;
    margin-bottom: 60px;
     font-weight :   700;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card   {
   background: #f7fafc;
    padding: 35px;
    border-radius: 15px;
    border-top   : 4px solid #2563eb;
   position: relative;
}



.testimonial-card p {
	font-size: 1.1em;
  color: #4a5568;
	line-height: 1.7;
  margin-bottom:   25px;
  font-style: italic;
}

.testimonial-author strong {
   font-size: 1.1em;
  color: #1a202c;
}

.testimonial-author span {
   color: #6b7280;
   font-size: 0.95em;
	display: block;
  margin-top: 5px;
}

.contact-section {
	padding: 100px 20px;
     background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
}

.contact-wrapper {
    display: grid;
      grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items: start;
}

.contact-info h2 {
   font-size: 2.5em;
    color: #1a202c;
    margin-bottom: 20px;
  font-weight  :    700;
}

.contact-info > p {
   font-size: 1.2em;
    color     :   #4a5568;
    margin-bottom  :   40px;
  line-height   :      1.6; 

}

.contact-details   {


   display: flex;
    flex-direction: column;
   gap: 20px;
     }

.contact-item {
	display: flex;
   gap: 10px;
}

.contact-label {
    font-weight: 600; 
        color: #1a202c; 
     min-width :  80px;
}

.contact-value

{
   color: #4a5568;
}

.contact-form {
      background: white;
  padding: 40px;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
   margin-bottom: 25px; 
	
}

.form-group label {
   display: block;
   font-weight: 600;
	color    :   #1a202c;
    margin-bottom  :     8px;
      font-size   : 1.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
 width     :        100%;
 padding: 15px;
   border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1em;
	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 : #2563eb; 

}

.form-group textarea {
  resize: vertical;
	min-height  :      120px;
}

.submit-button {
  background: #2563eb;
  color: white;
                    border: none;
    padding    :        16px 40px;
    border-radius: 8px;
                    font-size: 1.1em;
   font-weight   :     600;
		 cursor: pointer;
  transition: all 0.3s ease;
   width: 100%;
	 font-family: inherit;
}

.submit-button:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.footer-section {
  background: #1a202c;
	color: white;
   padding: 60px 20px 20px;


}

.footer-container {
   max-width: 1200px;
        margin: 0 auto;
}

.footer-content {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;


}

.footer-brand p {
    color: #cbd5e0;
   margin-top: 15px;
    line-height: 1.6;
}

.footer-logo {
     height     :40px;
  filter: brightness(0) invert(1);}

.footer-column h4 {
  color: white;
    margin-bottom: 20px;
   font-size: 1.2em;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
} 

.footer-column ul li a

{
  color: #cbd5e0;
   text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
      color: white;
}

.footer-bottom {

	   border-top: 1px solid #374151;
   text-align: center;
   padding-top: 20px;}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.95em;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text-content h1 {
        font-size: 2.5em;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-steps {
        gap: 20px;
    }
    
    .method-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text-content h1 {
        font-size: 2em;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .primary-button,
    .secondary-button {
        text-align: center;
        width: 100%;
    }
    
    .problem-content h2,
    .services-section h2,
    .methodology-content h2,
    .testimonials-section h2 {
        font-size: 2.2em;
    }
    
    .cta-content h2 {
        font-size: 2.5em;
    }
    
    .contact-form {
        padding: 25px;
    }
}.nav-link.active {
		color: #2563eb;
   font-weight: 600;
}

.about-hero {
    margin-top:   80px;
   padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.about-hero-container {
    max-width   :   1200px;
  margin: 0 auto;
        display :  grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-content h1 {
       font-size: 3.2em;
  font-weight: 700;
               margin-bottom: 25px;
  line-height: 1.2;

}

.about-subtitle  {
    font-size: 1.3em;
   line-height: 1.6;
    opacity: 0.9;
}

.about-main-image {
  width   :        100%;
    max-width: 500px;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.mission-section  {
   padding: 100px 20px;
  background: #f8fafc;
}

.mission-content h2 {
  font-size: 2.8em;
               color    :   #1a202c;
	margin-bottom: 30px;
  font-weight  :700;
   text-align: center;
}

.mission-text {
  font-size: 1.2em;
  color: #4a5568;
  line-height: 1.7;
       margin-bottom :     50px;
   max-width: 800px;
   margin-left: auto;
   margin-right: auto;
   text-align: center;
} 

.mission-values 
 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
  margin-top: 50px;
}

.value-item
	{
   background: white;
	padding: 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   transition  :       transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item h3 {
  font-size: 1.4em;
    color: #2563eb;
	margin-bottom: 15px;
   font-weight: 600; 
	
}

.value-item p {

         font-size: 1.1em;
  line-height: 1.6;
  color   : #4a5568;}

.story-section {
    padding: 100px 20px;
	background: white;
}

.story-wrapper {
   display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
	align-items: center;
}

.story-text h2 {
     font-size: 2.8em;
      color: #1a202c;
    margin-bottom: 30px;
    font-weight: 700;
}

.story-text p {
    font-size: 1.1em;
    color: #4a5568;
    line-height: 1.7;
   margin-bottom: 20px;
}

.story-pic {

	    width: 100%;
         height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
     }

.approach-section {
   padding: 100px 20px;
     background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.approach-section h2 {
   font-size: 2.8em;
 color: white;
  margin-bottom: 60px;
    font-weight: 700;
   text-align: center;
}

.approach-grid
{
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap :  30px;
}

.approach-card {
  background: rgba(255,255,255,0.1);
    padding: 35px;
  border-radius: 12px;
                    text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-5px);
}


.approach-number    {
  background: #2563eb;
    color: white;
    width: 50px;
   height: 50px;
   border-radius: 50%;
  display: flex;
	 align-items: center;
    justify-content: center;
  font-size: 1.2em;
    font-weight: bold;
   margin: 0 auto 20px;
}


.approach-card h3 {
   color: white;
  font-size: 1.3em;
   margin-bottom  :     15px;
    font-weight: 600;
}

.approach-card p {
      color: #cbd5e0;
       font-size: 1em;
    line-height   :    1.6;
}

.team-section {
   padding    :      100px 20px;
   background   :    #f8fafc;
}

.team-section h2		{
       font-size: 2.8em;
  color: #1a202c;
       margin-bottom: 60px;
   font-weight: 700;
  text-align     :     center;
}

.team-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member  {
	background: white;
     padding: 35px;
      border-radius: 12px;
     box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      text-align: center;
       transition: transform 0.3s ease;
}

.team-member:hover {
  -moz-transform: translateY(-5px);
  transform: translateY(-5px);
     }

.team-member h3   {
	font-size  :   1.4em;
   color: #1a202c;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-role {
  color: #2563eb;
   font-weight: 500;
  font-size: 1.1em;
    display: block;
       margin-bottom: 15px;
}

.team-member p {
  margin-bottom: 20px;
   color: #4a5568;
  line-height: 1.6;
  font-size: 1em;
}

.member-credentials   {
   display:  flex;
  flex-direction: column;
    gap: 8px;
}  

.member-credentials span {
  background: #e2e8f0;
	 color     :  #1a202c;
  padding: 6px 12px;
   border-radius: 15px;
    font-size: 0.9em;
    font-weight: 500;


}

.stats-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stats-section h2 {
  font-size: 2.8em;
   color: white;
  margin-bottom: 60px;
   font-weight:  700;
                    text-align: center;
}

.stats-grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 40px;}



.stat-item {
     text-align: center;
  color  :      white;
}

.stat-number {
    font-size: 3.5em;
	font-weight: 700;
  margin-bottom: 10px;
  display   :block;
}

.stat-label {
  font-size: 1.1em;
    opacity: 0.9;
       font-weight: 500;
}

.credentials-section {
  padding: 100px 20px;
	background: white;
}

.credentials-content {
    display: grid;
   grid-template-columns: 2fr 1fr;
    gap: 60px;
  align-items: center;
}

.credentials-text h2 {
    margin-bottom:    30px;
    font-size   :2.8em;
  color: #1a202c;
    font-weight: 700; 

     }

.credentials-text > p {
  font-size: 1.1em;
  color: #4a5568;
   line-height: 1.7;
	margin-bottom: 40px; 

}

.credentials-list {
   display: flex;
   flex-direction: column;
  gap: 25px;
}

.credential-item {
  padding: 20px;
  border-left: 4px solid #10b981;
	background  :     #f0fff4;
 border-radius     :   8px;
}

.credential-item h4 {
	font-size: 1.2em;
    color: #1a202c;
    margin-bottom: 8px;
  font-weight    :        600;
}  

.credential-item p {
  color: #4a5568;
   font-size: 1em;
  line-height: 1.6;
}

.credentials-pic {
               width: 100%;
   height: auto;
	border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thankyou-hero {
   margin-top    :        80px;
   padding :        100px 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
   text-align: center;
    color: white;
}

.thankyou-container {
    max-width: 800px;
   margin: 0 auto;
}

.success-icon

{

  margin-bottom: 40px;

}

.checkmark {
	width :     80px;
  height: 80px;
   border-radius: 50%;
   display   :block;
    stroke-width: 3;
    stroke: #fff;
   stroke-miterlimit: 10;
    margin: 0 auto;
    position: relative;
}

.checkmark-circle {
   stroke-dasharray: 166;
   stroke-dashoffset: 166;
   stroke-width: 3;
  stroke-miterlimit: 10;
   stroke: #fff;
   fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  border-radius: 50%;
   width: 80px;
   height: 80px;
    border: 3px solid #fff;
   position :       absolute;
   top: 0;
  left: 0; 
	
}

.checkmark-stem {
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  stroke-dasharray: 48;
   stroke-dashoffset: 48;
    position: absolute;
   top: 35px;
   left: 28px;
    width: 20px;
  height: 2px;
	background: #fff;
  transform: rotate(45deg);
}

.checkmark-kick {
  animation: stroke 0.2s cubic-bezier(0.65, 0, 0.45, 1) 0.9s forwards;
    stroke-dasharray: 48;
    stroke-dashoffset:       48;
  position: absolute;
  top: 42px;
	left: 40px;
  width: 12px;
  height: 2px;
    background   :     #fff;
  transform: rotate(-45deg);
}  @keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}.thankyou-content h1 {
	 font-size: 3.2em;
  font-weight: 700;
    margin-bottom: 25px;
}

.thankyou-subtitle {
   margin: 0 auto;
  line-height: 1.6;
  font-size: 1.3em;
   opacity: 0.9;
  max-width: 600px;
}

.next-steps-section {
	 background     :    #f8fafc;
   padding: 100px 20px;
}

.next-steps-section h2 {
  font-size: 2.8em;
   color: #1a202c;
         margin-bottom: 60px;
    font-weight: 700;
       text-align: center;
}

.steps-timeline {
    max-width: 800px;
          margin: 0 auto;
   display: flex;
  flex-direction: column;
   gap: 40px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
    gap: 25px;
        position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
   position: absolute;
   left: 24px;
  top: 50px;
   width    :  2px;
        height: 40px;
  background: #e2e8f0;
}

.timeline-number {
  background: #2563eb;
	color: white;
   width :       50px;
    height: 50px;
  border-radius: 50%;
  display: flex;
   align-items  :   center;
   justify-content: center;
  font-size: 1.2em;
   font-weight: bold;
        flex-shrink: 0;
     }

.timeline-content {
  background: white;
  padding: 25px;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   flex-grow: 1; 
	
}



.timeline-content h3 {
  font-size: 1.3em;
   color: #1a202c;
    margin-bottom: 10px;
   font-weight: 600;
}

.timeline-content p {
    color: #4a5568;
    font-size: 1em;
  line-height: 1.6;
   margin-bottom: 10px;
}

.timeline-duration {
        color: #10b981;
    font-weight: 500;
   font-size: 0.9em;


}

.preparation-section {
  padding: 100px 20px;
   background: white;
}

.preparation-wrapper {
     display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: start;
 gap: 60px; 
	
}

.preparation-content h2 {
  font-size: 2.8em;
    color: #1a202c;
    margin-bottom: 25px;
    font-weight :    700; 

}


.preparation-content > p {

	  font-size :        1.2em;
   color: #4a5568;
  line-height: 1.7;
  margin-bottom: 40px;
     }

.preparation-checklist {
  display: flex;
  flex-direction: column;
   gap: 25px;
}

.checklist-item {
	 display: flex;
         align-items     :      flex-start;
    gap: 20px;
   background: #f7fafc;
  padding: 25px;
       border-radius: 12px;
}


.checklist-icon {
	 background: #10b981;
	color: white;
   width: 30px;
  height: 30px;
  border-radius: 50%;
   display: flex;
  align-items: center;
                    justify-content     :     center;
  font-weight: bold;
  flex-shrink    :       0;
    font-size: 0.9em;
}

.checklist-text h4    {
    font-size: 1.2em; 
	    font-weight: 600; 
	   margin-bottom: 8px; 
	   color: #1a202c;
}

.checklist-text p {
    color: #4a5568; 
  font-size: 1em; 
   line-height: 1.6;
}

.prep-image {
     width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);


	}

.resources-section {
	padding: 100px 20px; 
	  background: #f8fafc;
}

.resources-section h2 {
   font-size: 2.8em;
    color: #1a202c;
  margin-bottom: 25px;
  font-weight: 700;
   text-align: center;


}

.resources-intro     {
    font-size: 1.2em;
   color: #4a5568;
   line-height: 1.6;
    text-align: center;
   max-width: 700px;
  margin: 0 auto 50px;
}

.resources-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}

.resource-card {
    background: white;
    padding: 30px;
        border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
	}

.resource-card:hover {


  transform: translateY(-5px);
     }

.resource-card h3 {
   font-size:      1.3em;

	  color: #1a202c;

	  margin-bottom   : 15px;

	    font-weight: 600;
}

.resource-card p {

	color: #4a5568;
    margin-bottom: 15px;
    font-size: 1em;
	 line-height: 1.6;}

.resource-benefit {
  color: #2563eb;
         font-weight: 500;
  font-size: 0.9em;
}

.emergency-section {
    padding: 100px 20px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    text-align: center;
    color: white;
}

.emergency-content h2 {
	 font-size: 2.5em;
  margin-bottom   :       25px;
    font-weight: 700;
}

.emergency-content > p {
    font-size: 1.2em;
    margin-bottom : 40px;
    opacity: 0.9;
    max-width    :   600px;
   margin-left: auto;
  margin-right: auto;
}

.emergency-contact		{


  display: flex;
  justify-content: center;
  gap: 60px;
    flex-wrap:  wrap;


}

.contact-method h4 {
  margin-bottom: 10px;
  font-size: 1.3em;
  font-weight: 600;
}  

.contact-info {
       font-size: 1.4em;
   font-weight: 600;
    display: block;
   margin-bottom: 5px;
}

.contact-method p {
    opacity: 0.8;
    font-size: 1em;
}

.back-home-section {
   padding: 100px 20px;
 background: white;
   text-align: center; 
	
}

.back-home-content h2 {

	  font-size: 2.8em;
   color: #1a202c;
   margin-bottom: 25px;
    font-weight: 700;
}

.back-home-content > p {
   font-size: 1.2em;
    color: #4a5568;
   line-height: 1.6;
	margin-bottom: 40px;
   max-width     :600px;
    margin-left   :    auto;
    margin-right: auto;
	}

.back-home-actions {
    display: flex;
    justify-content: center;
  gap: 20px;
  flex-wrap: wrap;

}

.back-button {
  text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
  font-weight   :      600;
               font-size: 1.1em;
	transition: all 0.3s ease;
	display: inline-block;
}

.back-button.primary {
   background  :   #2563eb;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.back-button.primary:hover {
   background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.back-button.secondary {


   background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
     }

.back-button.secondary:hover {
  background: #2563eb;
				 color: white;
  transform: translateY(-2px);
}@media (max-width: 768px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-hero-content h1 {
        font-size: 2.5em;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
    }
    
    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .credentials-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thankyou-content h1 {
        font-size: 2.5em;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .timeline-item:not(:last-child)::after {
        left: 50%;
        transform: translateX(-50%);
        top: 80px;
        height: 20px;
    }
    
    .preparation-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .emergency-contact {
        flex-direction: column;
        gap: 30px;
    }
    
    .back-home-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .back-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2em;
    }
    
    .mission-content h2,
    .story-text h2,
    .approach-section h2,
    .team-section h2,
    .stats-section h2,
    .credentials-text h2,
    .next-steps-section h2,
    .preparation-content h2,
    .resources-section h2,
    .back-home-content h2 {
        font-size: 2.2em;
    }
    
    .emergency-content h2 {
        font-size: 2em;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.8em;
    }
}