*
	{
  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: #f8f9fa;
}

.container  
  {
   max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
}

header {


       background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   position: fixed;
   width: 100%;
  top: 0;
	 z-index: 1000;


}

.main-navigation {
  padding: 1rem 0;
}

.nav-wrapper {
     max-width: 1200px;
    margin: 0 auto;
   display: flex;
    justify-content: space-between;
    align-items: center;
  padding: 0 20px;
}

.logo-container {
   flex-shrink: 0;
}

.site-logo{
   height    :    50px;
    width: auto;
}

.nav-links {
   display: flex; 
	  list-style: none; 
	    gap: 2rem;
}

.nav-links a
{
	text-decoration: none;
  color :        #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
   color     : #007bff;
}

.burger-menu {
  display: none;
   flex-direction: column;
    cursor: pointer;
    gap    :        4px;
}

.burger-menu span {
  height: 3px;
   -moz-transition: 0.3s;
   -webkit-transition: 0.3s;
    width: 25px;
  background-color: #333;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);


}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

main {
    margin-top: 80px;
}

.hero-area {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
   display: flex;
  align-items: center;
   min-height: 70vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
        display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center; 

}

.hero-content h1 {
   font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {


  font-size    : 1.2rem;
   margin-bottom: 2rem;
    opacity:       0.9;
	}

.hero-actions {
  display: flex;
    gap: 1rem;
   flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
  padding: 12px 24px;
   text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
  display: inline-block;
} 

.primary-btn {
  background-color  : #ff6b6b;
   color     :      white;
}

.primary-btn:hover {
   background-color: #ff5252;
  transform: translateY(-2px);
}

.secondary-btn {
   background-color: transparent;
       color: white;
       border: 2px solid white;
}

.secondary-btn:hover {
    background-color: white;
                    color: #667eea;


}

.hero-image img {
	 width   : 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.intro-section {
      padding: 80px 0;
  background-color: white;

}

.intro-section h2 
 {
   text-align: center;
   font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.intro-section p {
   text-align: center;
    font-size: 1.1rem;
  margin-bottom: 3rem;
   max-width    :     800px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
           display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
     }

.stat-item {
   text-align: center;
   padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.stat-item h3 {
	  font-size: 3rem;
   color: #007bff;
    margin-bottom: 0.5rem;}

.services-section {
   padding: 80px 0;
  background-color: #f8f9fa;


}

.services-section h2 {

		 text-align    :      center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;


}

.services-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card 
 {
   background: white;
   border-radius: 12px;
      padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {

	  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
	}

.service-card img {
  width: 100%;

       height: 200px;

    object-fit: cover;

	border-radius: 8px;

   margin-bottom: 1.5rem;
}

.service-card h3
	{


       font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.service-card p {
  margin-bottom: 1rem;
  color: #666;
}

.service-card ul {


    padding-left: 0;
   list-style :  none;


}

.service-card li {


    padding: 0.5rem 0; 
	   border-bottom: 1px solid #eee; 
	  color: #555;
}

.service-card li:before	{
     content: "✓ ";
  color:  #007bff;
	font-weight: bold;
     }

.cta-section {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
  padding: 80px 0;
	text-align: center;
}

.cta-content h2 {

	font-size: 2.5rem;
   margin-bottom: 1rem;
}

.cta-content p {


    font-size: 1.1rem;
    margin-bottom:  2rem;
    max-width: 600px;
  margin-left: auto;
	margin-right: auto;


}

.cta-button {
   background-color: white;
    color: #ff6b6b;
    padding   :   15px 30px;
   text-decoration  :       none;
  border-radius     :     8px;
  font-weight: 600;
  font-size: 1.1rem;
   transition :     all 0.3s ease;
    display    :    inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}  

.testimonials-section {

   padding: 80px 0;
                    background-color: white;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom:   3rem;
	color: #333;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap   :        2rem;
}

.testimonial {
   background: #f8f9fa;
    border-left: 4px solid #007bff;
    border-radius: 12px;
   padding     : 2rem;
}

.testimonial p {
  font-style: italic;
     margin-bottom: 1rem;
      font-size: 1.1rem;
}

.testimonial-author strong {
      color    :  #333;
  font-size: 1.1rem;
}

.testimonial-author span


{
    color: #666;
     display: block;
   margin-top: 0.25rem;
}

.contact-section {

   padding:       80px 0;
  background-color: #f8f9fa;
}

.contact-section h2 {
     text-align  : center;
   font-size: 2.5rem;
  margin-bottom    :        3rem;
    color: #333;
}

.contact-wrapper {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
     align-items: start;


}

.contact-info h3 {
	margin-bottom: 2rem;
    color: #333;
}

.contact-item {
     margin-bottom: 2rem;
}

.contact-item strong{
   display: block;
   margin-bottom: 0.5rem;
  color: #007bff;
}

.contact-form {
    background: white;
          padding: 2rem;
   border-radius:       12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    margin-bottom: 2rem;
  color: #333;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {

	   display: block;
    margin-bottom :        0.5rem;
                    font-weight: 500;
    color: #333;}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
	  width: 100%;
	  border-radius: 8px;
	   transition     :        border-color 0.3s ease;
	   font-size: 1rem;
	   border: 2px solid #e0e0e0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline   :      none;
   border-color: #007bff;
}

.submit-btn {
    background-color: #007bff;
   color: white;
  padding   : 12px 24px;
    border: none;
  border-radius: 8px;
    font-size: 1rem;
  font-weight: 600;
      cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.submit-btn:hover		{
    background-color:  #0056b3;
}

.main-footer {
  background-color :        #2c3e50;
   color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
	margin-bottom: 1rem;
    color: #ecf0f1;
	

}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
   margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
	 text-decoration: none;
  transition: color 0.3s ease;


}

.footer-section ul li a:hover  {


       color: #ecf0f1;

}

.footer-logo img {

   height   :  40px;
  margin-bottom: 1rem;

}

.footer-bottom {
    text-align: center;
  padding   :  1rem 0;
   margin-top :      2rem;
   border-top: 1px solid #34495e;
    color: #bdc3c7;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }
}.about-hero {
  background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
   padding   :100px 0 80px;
   text-align: center;
  color: #333;
}

.about-hero h1 {
				 font-size    :      3rem;
  margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-hero p {
     font-size: 1.3rem;
  max-width   :       700px;
  margin: 0 auto;
   opacity: 0.8;
}

.our-story
	{
    padding: 80px 0;
   background-color: #ffffff;
}

.story-content {
        display: grid;
       grid-template-columns: 1fr 1fr;
     gap: 3rem;
      align-items  :  center;
}

.story-text h2 {


   font-size: 2.5rem;
  margin-bottom: 2rem;
  color  :       #2c3e50;
     }

.story-text p {
  font-size: 1.1rem;
		margin-bottom: 1.5rem;
  line-height :      1.7;
     color: #555;

}

.story-image img		{
	width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
     }

.our-mission {
   padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);


}

.our-mission h2 {
   text-align: center;
	font-size: 2.5rem;
          margin-bottom: 3rem;
   color     :#2c3e50;
}

.mission-grid

{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-item {
    background: white;
       padding: 2.5rem;
      border-radius: 15px;
     text-align     : center;
     box-shadow: 0 5px 20px rgba(0,0,0,0.1);
     transition: transform 0.3s ease;
}


.mission-item:hover		{
  transform: translateY(-10px);
}

.mission-item h3 {
   color: #007bff;
   font-size: 1.5rem;
   margin-bottom: 1rem;
}

.team-section {
        padding: 80px 0;
  background-color  :white;
}

.team-section h2  {
 text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
   color: #2c3e50;
}

.team-grid  
  {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.team-member {
    background: #f8f9fa;
	padding: 2rem;
    border-radius: 15px;
   border-left: 5px solid #007bff;
}

.team-member h3 {
       font-size: 1.4rem;
   margin-bottom: 0.5rem;
  color: #2c3e50;
	}

.member-title {
  color: #007bff;
    font-weight: 600;
        margin-bottom: 1rem; 

}

.member-qualifications {
		 margin-top  :    1rem;
  display: flex;
    flex-wrap: wrap;
 gap: 0.5rem;
}

.member-qualifications span {
   border-radius: 20px;
  background  :       #007bff;
    padding: 0.3rem 0.8rem;
          font-size: 0.8rem;
               color: white;
}

.values-section		{

	  padding: 80px 0;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
}

.values-section h2 {
   text-align:      center;
  font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-content {
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;
}

.values-image img {


    width     :100%;
    border-radius: 15px;
     }

.value-item    {
    margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.value-item h3 {
    font-size: 1.3rem;
   margin-bottom: 0.5rem;
}

.achievements-section {
  padding: 80px 0;
    background-color: white;
}

.achievements-section h2 {
  text-align: center;
  font-size: 2.5rem;
	 margin-bottom: 3rem;
   color: #2c3e50;
}

.achievements-grid {
    display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); 
   gap   :       2rem;
}

.achievement-card {
    background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
    text-align:   center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.achievement-image {
  margin-bottom    :1.5rem;
}

.achievement-image img {
   width: 100%;
   height     :   200px;
    object-fit:     cover;
  border-radius: 10px;
}

.approach-section {
   padding: 80px 0;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.approach-section h2 {
   font-size: 2.5rem;

	   margin-bottom: 2rem;

	    text-align :       center;

	   color: #2c3e50;
}

.approach-intro {
  text-align: center;
	font-size: 1.2rem;
          margin-bottom: 3rem;
   max-width: 800px;
    margin-left: auto;
	margin-right: auto;
}

.approach-steps {
   display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 2rem;
}

.step-item {
   background: white;
   padding: 2rem;
   border-radius: 15px;
  text-align: center;
   position :relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
   background     :#007bff;
				 color: white;
  width: 50px;
    height: 50px;
   border-radius     :        50%;
    display: flex;
   align-items     :    center;
   justify-content: center;
   font-size    :       1.5rem;
                    font-weight     :    bold;
  margin: 0 auto 1rem;
}

.thankyou-hero {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  padding: 100px 0;
  min-height: 80vh;
    display  :     flex;
   align-items: center;
}  

.thankyou-content {
   text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
  margin-bottom: 2rem;
	
}

.checkmark-circle {


  width: 80px;
   height: 80px;
    background: #28a745;
  border-radius:    50%;
                    display: flex;
   align-items: center;
  justify-content: center;
   margin: 0 auto;
   animation: checkmarkPop 0.6s ease-in-out;}

.checkmark	{
    width: 30px;
          height: 15px;
  border: 3px solid white;
   border-top: none;
     border-right:   none;
  transform: rotate(-45deg);
}@keyframes checkmarkPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}.thankyou-content h1 {

   font-size: 3rem;
  margin-bottom :     1.5rem;
   color: #2c3e50;}

.main-message {
    font-size: 1.3rem;
  margin-bottom: 3rem;
         color: #555;
    line-height: 1.6;
}

.next-steps {
	background: white;
  padding: 3rem;
    border-radius: 15px;
   margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.next-steps h2 {
   font-size: 2rem;
   margin-bottom: 2rem;
    color: #2c3e50;
}

.steps-timeline {
    display: grid;
   gap: 2rem; 
	
}

.timeline-item {
   display: grid;
 grid-template-columns :60px 1fr;
   gap: 1rem;
         align-items: start;
}

.timeline-marker {
   width: 50px;
	 height: 50px;
  background: #007bff;
  color: white;
  border-radius: 50%;
    display: flex;
   align-items: center;
       justify-content: center;
                    font-weight: bold;
  font-size: 1.2rem;
}

.timeline-content h3 {
  margin-bottom : 0.5rem;
   color: #2c3e50;
}

.timeline-duration {
   background: #e3f2fd;
   color: #1976d2;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
   font-size: 0.9rem;
   font-weight: 600;
  display: inline-block;
  margin-top    :      0.5rem;
}

.immediate-resources {
  background: white;
   padding: 3rem;
      border-radius :        15px;
                    margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.immediate-resources h2 {

  font-size: 2rem;
	margin-bottom: 1rem;
  color: #2c3e50;
  text-align: center;


}

.resources-grid {
	display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 1.5rem; 
    margin-top: 2rem;
}

.resource-card {
    background: #f8f9fa;
       padding: 1.5rem;
      border-radius: 10px;
      border-left: 4px solid #28a745;
}  

.resource-card h3 {
   font-size: 1.1rem;
  margin-bottom: 0.5rem;
   color: #2c3e50; 

}

.contact-reminder {
   background: white;
  padding: 2rem;
    border-radius: 15px;
               margin-bottom :        3rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-reminder h2 {
    font-size: 1.8rem;
   margin-bottom: 1.5rem;
		 color: #2c3e50;
  text-align: center;
}

.reminder-content {
    display: grid;
    gap   :     1rem;
}

.reminder-item {
   display: flex;
                    justify-content: space-between;
  align-items: center;
   padding: 1rem;
  background  :   #f8f9fa;
    border-radius: 8px;
}

.reference-number {
  background: #007bff;
    color: white;
	padding: 0.3rem 0.8rem;
   border-radius :5px;
   font-family: monospace;
   font-weight: bold;
}

.action-buttons {
   display     :   flex;
    gap     :        1rem;
   justify-content: center;
   flex-wrap: wrap;
}

.primary-button, .secondary-button {
   padding : 12px 24px;
   text-decoration: none;
  border-radius: 8px;
    font-weight: 600;
    transition     :      all 0.3s ease;
    display: inline-block;
}

.primary-button {
     background-color: #007bff;
       color: white;}

.primary-button:hover {
          background-color: #0056b3;
	  transform: translateY(-2px);
}

.secondary-button {
   background-color: transparent;
    color: #007bff;
  border: 2px solid #007bff;

}

.secondary-button:hover {
	background-color: #007bff;
    color: white;


}

.testimonial-preview {
    padding: 60px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   text-align     :       center;
}

.testimonial-preview h2 {
  font-size     :    2rem;
	   margin-bottom: 2rem;

}

.preview-testimonial blockquote {
	font-size     :   1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    max-width: 600px;
       margin-left: auto;
    margin-right:  auto;
}

.preview-testimonial cite {
    font-style: normal;
} 

.preview-testimonial cite strong {
    display: block;
  margin-bottom: 0.3rem;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .values-content {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .reminder-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}