*{
  margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
    line-height: 1.6;
  color: #333;
     background: #fff;
}

.nav-container {
	position: fixed;
                    top: 0;
        width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom    :      1px solid #e5e5e5;
}

.nav-wrapper {
  max-width   :      1200px;
   margin: 0 auto;
   display:        flex;
  justify-content: space-between;
  align-items: center;
   padding: 1rem 2rem;
}

.logo-section .logo-img {
  height: 45px;
   width: auto;
     }

.nav-links {
   display: flex;
   gap: 2rem;
}

.nav-link {
   text-decoration: none;
  color: #333;
   font-weight: 500;
    transition: color 0.3s ease;
   position: relative;
}

.nav-link:hover {
   color   :    #2c5aa0;
}

.nav-link::after {
  content: '';
    position: absolute;
               width: 0;
  height: 2px;
  bottom: -5px;
   left     :    0;
    background: #2c5aa0;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
   display   :        none;
   flex-direction: column;
    cursor: pointer;
  gap: 4px;
}

.burger-menu span {
   width: 25px;
   height    :  3px;
   background: #333;
	 transition: 0.3s;
}

.mobile-menu {
    display: none;
  background: white;
    position :absolute;
   top: 100%;
  left :        0;
   width: 100%;
       padding  :  1rem;
    border-top: 1px solid #e5e5e5;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-link {
  display: block;
   padding: 0.8rem 0;
  text-decoration: none;
   color: #333;
   border-bottom: 1px solid #f0f0f0;
}

.hero-area


{
   margin-top   :        80px;
   padding: 4rem 2rem;
   max-width: 1200px;
   margin-left: auto;
    margin-right: auto;
}

.hero-content {
   display: grid;
         grid-template-columns: 1fr 1fr;
	gap:      3rem;
  align-items: center;
  min-height: 70vh;
} 

.hero-text h1 {
  font-size : 3.2rem;
  font-weight :      700;
    color: #1a1a1a;
  margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
   font-size: 1.2rem;
  color: #666;
               margin-bottom  :   2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
               gap: 1rem;
   flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
  padding: 0.9rem 2rem;
 text-decoration: none;
  border-radius: 6px;
    font-weight: 600;
    transition     :    all 0.3s ease;
	display: inline-block;
}

.primary-btn {
	background: #2c5aa0;
   color: white;
   border: 2px solid #2c5aa0;
} 

.primary-btn:hover {
    background: #1e4080;

	  transform: translateY(-2px);

	  box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.secondary-btn {

	   background: transparent;
   color: #2c5aa0;
   border: 2px solid #2c5aa0;


}

.secondary-btn:hover {
   background: #2c5aa0;
   color: white;
  transform: translateY(-2px);
}

.hero-image img {
  width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.services-section {
  background: #f8f9fa;
  padding: 5rem 2rem;
}

.container {
   max-width: 1200px;
   margin: 0 auto;

}

.services-section h2 {
  text-align: center;
  font-size: 2.8rem;
	color: #1a1a1a;
    margin-bottom: 3rem;
}

.services-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap :   2.5rem;
}

.service-card {
    background :  white;
   border-radius:    12px;
    overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {

	  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image img {
    width: 100%;
   height: 220px;
   object-fit: cover;
}

.service-card h3 {

    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.4rem;
  color: #2c5aa0;
}

.service-card p {
	padding: 0 1.5rem 2rem;
    color: #666;
    line-height: 1.6;
}

.cta-section {
   padding    :     5rem 2rem; 
	  background: linear-gradient(135deg, #2c5aa0 0%, #1e4080 100%); 
	   color: white;
	
}

.cta-content {
   max-width: 1200px;
    margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center; 

}

.cta-text h2 {
   font-size: 2.5rem;
   margin-bottom: 1.5rem;
	
}

.cta-text p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
       line-height: 1.7;
}

.cta-stats {
    display    :  grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 1.5rem;
   margin-bottom     :        2.5rem;
}

.stat-item {
   text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
    font-weight: 700;
  color: #fff;
}

.stat-label {
               font-size: 0.9rem;
  opacity: 0.8;
}



.cta-button {
  background: white;
  color: #2c5aa0;
  padding: 1rem 2.5rem;
    text-decoration: none;
  border-radius: 6px;
               font-weight : 600;
  display: inline-block;
   transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.cta-image img {
    border-radius: 12px;
   width: 100%;
}

.about-preview {
	padding: 5rem 2rem;

    background: white;
}

.about-content h2    {
   font-size: 2.5rem;
	 color: #1a1a1a;
	 margin-bottom: 2rem;
    text-align: center; 

}

.about-content > p {
	font-size: 1.2rem;
   color: #666;
    text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
    margin-right:auto;
  line-height: 1.7;
}

.methodology-points {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.method-point {
   text-align: center;
    padding: 2rem;
}

.method-point h4 {
   font-size: 1.3rem;
    color: #2c5aa0;
         margin-bottom: 1rem;
}

.method-point p {
  line-height: 1.6;
    color: #666;
	
}

.contact-section {
    padding: 5rem 2rem;
          background: #f8f9fa;

}

.contact-wrapper {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
    max-width: 1200px;
   margin: 0 auto; 
	


}

.contact-info h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
	 margin-bottom :1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
   color: #666;
   margin-bottom  :    2rem;
   line-height: 1.6;
	
}

.contact-details {
      display: flex;
  flex-direction: column;
  gap:    1rem;
}

.contact-item {

	  display: flex;
	 flex-direction: column;
  gap: 0.3rem;
	}

.contact-item strong   {


  color: #2c5aa0;

		 font-weight: 600;}

.contact-form {
    background: white;
   padding: 2.5rem;
    border-radius  :        12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group 
 {
	margin-bottom: 1.5rem;
}

.form-group label {
  display    :   block;
               margin-bottom: 0.5rem;
   color: #333;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
   padding: 0.8rem;
    border: 2px solid #e5e5e5;
  border-radius: 6px;
    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: #2c5aa0;
}

.submit-btn {

    background     :#2c5aa0;
   color: white;
  padding: 1rem 2rem;
    border: none;
   border-radius: 6px;
    font-size: 1rem;
   font-weight: 600;
  cursor   :    pointer;
    transition:  all 0.3s ease;
   width: 100%;
	}

.submit-btn:hover {
          background: #1e4080;
  transform: translateY(-2px);
}

.footer {
    background: #1a1a1a;
     color: white;
  padding    :    3rem 2rem 1.5rem;
}

.footer-content {
	max-width: 1200px;
   margin: 0 auto;
}

.footer-main {
	display    :      grid;
    grid-template-columns: 1fr 2fr;
          gap: 3rem;
   margin-bottom: 2rem;
}


.footer-logo {
    height: 40px;

  filter: brightness(0) invert(1);
}

.footer-info {
	   display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
	}

.footer-section h4
	{
    margin-bottom: 1rem;
    color:      #2c5aa0;
}

.footer-section p,
.footer-section a {
     color: #ccc;
	text-decoration: none;
  line-height: 1.6;
  display: block;
  margin-bottom: 0.5rem; 
	
}

.footer-section a:hover {
    color: white;
}



.footer-bottom {
   border-top     :   1px solid #333;
         padding-top: 1.5rem;
  text-align: center;
    color: #999;
}@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .methodology-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 1rem;
    }
    
    .hero-area {
        padding: 2rem 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .services-section {
        padding: 3rem 1rem;
    }
    
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }
}.nav-link.active


{

	   color: #2c5aa0;
   font-weight: 600;
     }

.nav-link.active::after {
  width: 100%;
}

.page-header {
   margin-top: 80px;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   text-align: center;
}

.header-content h1 {
   font-size: 3rem; 
		 color: #1a1a1a; 
	   margin-bottom: 1rem; 
	  font-weight: 700; 
	
}

.header-content p {
  font-size   :      1.2rem; 
	  color: #666; 
	  max-width: 600px; 
	   margin    :0 auto; 
	  line-height: 1.6;
}

.mission-section {
  padding: 5rem 2rem;
	background     :white;


}

.mission-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
       align-items: center; 
	
}

.mission-text h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
  margin-bottom: 2rem;
}

.mission-text p {

  font-size: 1.1rem;
   line-height: 1.7;
   color: #666;
   margin-bottom: 1.5rem; 
	


}

.mission-stats {
	 display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
   margin-top: 2.5rem; 
	
}

.mission-stat {
  text-align :  center;
	padding: 1.5rem;
  border: 2px solid #f0f0f0;
    border-radius    :       8px;
    -moz-border-radius: 8px;
	transition    :    all 0.3s ease;
}


.mission-stat:hover {
  border-color: #2c5aa0;
  transform: translateY(-5px);
}

.stat-num {


  display:       block;
    font-size: 1.8rem;
    font-weight: 700;
   color: #2c5aa0;
    margin-bottom: 0.5rem;}



.stat-desc {
   font-size: 0.9rem;
    color: #666;
}

.mission-image img {
  width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.methodology-section {
    padding  :   5rem 2rem;
	    background: #f8f9fa;
}

.methodology-section h2 {
  text-align: center;

  font-size: 2.8rem;

   color: #1a1a1a;

  margin-bottom: 3rem;}

.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 5px 20px rgba(0,0,0,0.08);
         position: relative;
   transition: transform 0.3s ease;
}

.method-card:hover
	{
  transform: translateY(-8px);
	
}

.method-number {
      position: absolute;
  top: -15px;
   left: 2rem;
   background: #2c5aa0;
   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 h3 {
  margin     :1rem 0;
  color    :#1a1a1a;
        font-size: 1.3rem;
}

.method-card p {
   color: #666;
    line-height: 1.6;
}

.approach-section {
   padding    :5rem 2rem;
  background: white;
}

.approach-content {
      display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.approach-text h2 {
          font-size: 2.5rem;
   color: #1a1a1a;
    margin-bottom: 2rem;
}

.approach-text > p {
  font-size   : 1.1rem;
  color: #666;
   line-height: 1.7;
					margin-bottom: 2.5rem;
}

.approach-features {
  display: flex;
   flex-direction: column;
   gap    :       1.5rem;
}

.feature-item h4 {
  color: #2c5aa0;
   margin-bottom: 0.5rem;
   font-size: 1.1rem;
}

.feature-item p {
	color: #666;
  line-height: 1.6; 

}

.approach-image img		{
    width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.values-section {
    padding: 5rem 2rem;
   background: #f8f9fa;
}

.values-section h2 {
   text-align: center;
   font-size: 2.8rem;
   color:    #1a1a1a;
	margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap :     2.5rem;
}

.value-card {
  background: white;
  padding: 2.5rem;
    border-radius  :12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {

  transform: translateY(-8px);
}

.value-card h3 {
  font-size: 1.4rem;
  color: #2c5aa0;
	margin-bottom: 1.5rem;
}

.value-card p {
  color: #666;
   line-height: 1.7;
}

.results-section  {
   padding: 5rem 2rem;
   background: white;
}

.results-content {
  align-items: center;
   gap    :        4rem;
  grid-template-columns: 1fr 1fr;
	display: grid;
}

.results-text h2 {
    font-size: 2.5rem;
	 color: #1a1a1a;
  margin-bottom: 2rem;
}

.results-text > p {
   font-size: 1.1rem;
    color: #666;
   line-height: 1.7;
   margin-bottom: 2.5rem;
}

.results-list {
   display: flex;
    flex-direction: column;
       gap: 1rem;
}

.result-item {
  display: flex;
  -moz-border-radius: 8px;
    align-items: center;
   gap: 1rem;
  padding: 1rem;
   background: #f8f9fa;
    border-radius: 8px;
}

.result-icon {


  background: #2c5aa0;
   color: white;
    width: 24px;
  height    : 24px;
    border-radius: 50%;
    display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.8rem;
   flex-shrink    : 0;
	
     }

.results-image img {
  width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.process-section {


    padding :  5rem 2rem;
    background: #f8f9fa;
	}

.process-section h2 {
   text-align: center;
  font-size: 2.8rem;
   color: #1a1a1a;
  margin-bottom: 3rem;
}

.process-timeline {
   max-width: 800px;
        position: relative;
	 margin: 0 auto;
}

.process-timeline::before {
  content: '';
   position: absolute;
   left: 30px;
    top: 0;
	 bottom: 0;
  width: 2px;
       background  :        #e5e5e5;
}

.timeline-item	{
    display: flex;
  margin-bottom: 3rem;
   position: relative;
}

.timeline-marker  {
    background: #2c5aa0;

	  color: white;

	   width: 60px;

	   height     :   60px;

	                    border-radius: 50%;

	   display: flex;

	  align-items: center;

	          justify-content  :      center;

	    font-weight: 700;

	  font-size: 1.2rem;

	  flex-shrink: 0;

	    z-index: 2;

	  position: relative;
}

.timeline-content {
   margin-left: 2rem;
    background: white;
  padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  flex: 1; 

}

.timeline-content h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
   font-size: 1.3rem;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
}

.about-cta {
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e4080 100%);
}

.cta-box		{
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
   padding: 3rem;
    border-radius: 16px;
   text-align: center;
  color: white;
}

.cta-box h2 {
  font-size: 2.5rem;
         margin-bottom: 1.5rem;
}

.cta-box p {
  font-size   :     1.1rem;
    margin-bottom: 2rem;
	opacity: 0.9;
          line-height: 1.7;
}

.cta-link {
    background: white;
   padding: 1rem 2.5rem;
    transition: all 0.3s ease;
    display: inline-block;
   color: #2c5aa0;
  text-decoration:      none;
    font-weight: 600;
	border-radius: 6px;
}



.cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.thankyou-main{
   margin-top     : 80px;
   padding: 4rem 2rem;
	min-height: 70vh;
}

.thankyou-content	{
   max-width: 800px;
	 margin: 0 auto;
    text-align: center;
}

.thankyou-icon {
	 margin-bottom: 2rem;
}

.success-circle {
               width: 80px;

	  height: 80px;

	   background: #28a745;

	    border-radius: 50%;

	   display: flex;

	   align-items: center;

	  justify-content: center;

	    margin: 0 auto;

	  animation: pulse 2s infinite;
}

.checkmark {
  width: 30px;
  height: 30px;
    border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}.thankyou-content h1 {
	font-size    :       3rem;
  color: #1a1a1a;
    margin-bottom: 1rem;
}

.thankyou-subtitle  {

	   font-size: 1.3rem;
   color: #666;
   margin-bottom: 3rem;


}

.thankyou-details {
    background: #f8f9fa;
  padding: 3rem;
  border-radius    :  12px;
    margin-bottom: 3rem;
}

.thankyou-details h2 {
    margin-bottom: 2rem;
   color   :      #1a1a1a;
    font-size: 2rem;
}

.next-steps {
   flex-direction: column;
    gap :   2rem;
    display: flex;
}

.step-item {
   display: flex;
    align-items: flex-start;
    gap: 1.5rem;
  text-align :        left;
}

.step-number {
    background: #2c5aa0;
  color: white;
   width :       40px;
    height: 40px;
      border-radius: 50%;
  display: flex;
   align-items: center;
    justify-content: center;
  font-weight: 700;
   flex-shrink: 0;
}



.step-content h3 {
	 color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
   color: #666;
    line-height: 1.6; 
	
}

.thankyou-info		{
                    margin-bottom: 3rem;
}

.info-card {
	background: white;
	padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info-card h3 
 {
   color: #2c5aa0;
	 margin-bottom: 1rem;
  font-size    :     1.3rem;
}

.info-card p {

		color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.info-link {


    color: #2c5aa0;
 text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
   border: 2px solid #2c5aa0;
    border-radius :   6px;
   display: inline-block;
   transition :all 0.3s ease;


}

.info-link:hover {
    background: #2c5aa0;
  color: white;
}

.contact-reminder {

	  background    :     #fff3cd;
   padding    :  2rem;
  border-radius: 12px;
    margin-bottom :      3rem;
   border-left     :      4px solid #ffc107;
     }

.contact-reminder h3 {
   color: #856404;
   margin-bottom   :     1rem;
}

.contact-reminder p {

    color: #856404;
  margin-bottom: 1.5rem;
}

.contact-options {
    display: flex;
	gap: 0.8rem;
    flex-direction: column;
}

.contact-option {
   display: flex;
   gap: 1rem;
}

.contact-option strong {
   color    :      #856404;
   min-width: 80px;
}

.thankyou-actions {
    display: flex;
          gap: 1rem;
    justify-content: center;
  flex-wrap: wrap;
}

.primary-action, .secondary-action {
   padding     :    1rem 2rem;
    text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
       transition: all 0.3s ease;
}

.primary-action {


   background: #2c5aa0;
     color: white;
    border: 2px solid #2c5aa0;}

.primary-action:hover {
 background: #1e4080;
  transform: translateY(-2px);
}

.secondary-action {
   background: transparent;
   color: #2c5aa0;
    border: 2px solid #2c5aa0;
}  

.secondary-action:hover {
    background: #2c5aa0;
    color: white;
}

.thankyou-sidebar {
    display: grid;
   grid-template-columns: 1fr 1fr;
                    gap: 2rem;
  margin-top: 4rem;
}

.sidebar-card {
  background: white;
  padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.sidebar-card img 
 {
  width: 100%; 
	   border-radius: 8px; 
	    margin-bottom: 1.5rem; 

} 

.sidebar-card h3 {
	  color: #1a1a1a;
   margin-bottom: 1rem;
  font-size    :  1.2rem;
     }

.sidebar-card p {
                    color: #666;
    line-height: 1.6;
}  

.sidebar-stats {
   background:  #f8f9fa;
   padding: 2rem;
  border-radius  :    12px;
	
}

.sidebar-stats h4 {
	  color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
	}

.sidebar-stat 
 {
  display: flex;
	justify-content: space-between;
  align-items: center;
   padding: 1rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.sidebar-stat:last-child {
                    border-bottom: none; 
	
}

.stat-value {
   font-weight: 700;
   color: #2c5aa0;
    font-size: 1.1rem;
}

.stat-label {


  color: #666;
   font-size: 0.9rem;
}

.resources-section
	{
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.resources-section h2 {
    text-align: center;
	font-size: 2.5rem;
  color     :        #1a1a1a;
    margin-bottom: 3rem;

}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap   : 2rem;
}

.resource-card {
  background: white;
    padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
	}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card h3 {
  color: #2c5aa0;
    margin-bottom: 1rem;
  font-size: 1.2rem;
}

.resource-card p {
 color :   #666;
    line-height: 1.6;
}@media (max-width: 768px) {
    .page-header {
        padding: 3rem 1rem 2rem;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .mission-content,
    .approach-content,
    .results-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content {
        margin-left: 1.5rem;
        padding: 1.5rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .thankyou-sidebar {
        grid-template-columns: 1fr;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-action,
    .secondary-action {
        width: 100%;
        text-align: center;
    }
    
    .contact-options {
        gap: 1rem;
    }
    
    .contact-option {
        flex-direction: column;
        gap: 0.3rem;
    }
}

@media (max-width: 480px) {
    .thankyou-details {
        padding: 2rem 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-content {
        text-align: left;
    }
    
    .mission-section,
    .methodology-section,
    .approach-section,
    .values-section,
    .results-section,
    .process-section {
        padding: 3rem 1rem;
    }
    
    .thankyou-main {
        padding: 3rem 1rem;
    }
}.about-content p {
  font-size: 1.1rem;
  color: #666;
  line-height  :1.7;
    margin-bottom     :    1.5rem;
}
