*   {
    margin: 0px;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
  color: #333;
    background   :        #ffffff;
}

.container {
  max-width: 1200px;
	margin: 0 auto;
   padding: 0 20px;

}

.main-navigation		{
  position  :      fixed;
  top: 0;
	 width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
	
}

.nav-wrapper {
   max-width: 1200px;

        margin  :     0 auto;

   display: flex;

 justify-content: space-between;

    align-items: center;

   padding: 15px 20px;
}

.nav-logo    {

	  height   :    40px;
      width    :      auto;
     }

.nav-links {
   display  :        flex;
 gap   :     2rem;
}

.nav-item {
  text-decoration: none;
  color: #333;
  font-weight:   500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-item:hover,
.nav-item.active {


   color: #2c5aa0;
	}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
               left: 0;
	 width    :     100%;
  height: 2px;
   background: #2c5aa0;
}

.mobile-toggle {
	display: none;
    flex-direction: column;
    cursor: pointer;
   padding: 5px;
}

.burger-line {
    width: 25px;
         height : 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}  

.mobile-toggle.active .burger-line:nth-child(1) {
     transform: rotate(-45deg) translate(-5px, 6px);
}  

.mobile-toggle.active .burger-line:nth-child(2)
{

    opacity: 0;}

.mobile-toggle.active .burger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
  top: 100%;
   left: 0;
	 width: 100%;
	background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
     opacity: 0;
  transform: translateY(-10px);
   transition: all 0.3s ease;
}

.mobile-menu.show {
  opacity: 1;
  transform: translateY(0);
}

.mobile-link {

	                    display: block;
                    padding: 15px 20px;
  text-decoration: none;
  color: #333;
    border-bottom:   1px solid #f0f0f0;

}

.mobile-link:hover {
   background  :   #f8f9fa;
   color: #2c5aa0;
}

.hero-section {
        margin-top: 80px;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
  display: flex;
  align-items: center;

}

.hero-content {
		max-width: 1200px;
     margin: 0 auto;
  padding: 0 20px;
    display   :       grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items     :     center;


}

.hero-text h1 {
   font-size: 3.2rem;
    font-weight: 700;
  color: #1a1a1a;
    margin-bottom: 24px;
          line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
   color: #555;
   margin-bottom    : 40px;
   line-height: 1.7;
}

.hero-buttons {
  display: flex;
    gap: 20px;
}

.primary-btn, .secondary-btn
	{
    -moz-transition: all 0.3s ease;
                    -webkit-border-radius: 8px;
    padding: 16px 32px;
   text-decoration: none;
  border-radius :     8px;
    font-weight: 600;
  transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  -o-transition :    all 0.3s ease;
   display: inline-block;
}

.primary-btn {
    background: #2c5aa0;
	 color: white;
}


.primary-btn:hover {
    background :#1e3f73;
  transform: translateY(-2px);
}

.secondary-btn {
    background  :        transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.secondary-btn:hover {
  background: #2c5aa0;
    color: white;
}

.hero-image img  
  {

	  width   :        100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);}

.features-overview {
  padding: 100px 0;
    background: white;
}

.features-overview h2  {
   text-align: center;
   font-size   :        2.8rem;
 margin-bottom: 60px;
    color: #1a1a1a;

}

.features-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
}

.feature-card {
         padding: 40px 30px;
    background: #f8f9fa;
  border-radius: 12px;
	 text-align: center;
   transition: transform 0.3s ease;
}

.feature-card:hover {
	  transform: translateY(-5px);
     }

.feature-card h3 {
        font-size: 1.5rem;
   margin-bottom: 20px;
   color: #2c5aa0;
}

.feature-card p {
   color: #666;
 line-height: 1.7;
}

.services-section {
		 padding: 100px 0;
      background: #f8f9fa;
} 

.section-header {
	         text-align: center;
       margin-bottom: 80px;}

.section-header h2 {
 font-size: 2.8rem;
	margin-bottom: 20px;
  color: #1a1a1a;
}

.section-header p {
	font-size     :       1.2rem;
  color: #666;
}

.services-layout {
    display: flex;
   flex-direction: column;
   gap: 60px;
}

.service-item {
  display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
   background: white;
    padding    :        50px;
	border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
} 

.service-item:nth-child(even) {
	grid-template-columns     :        1.5fr 1fr;}

.service-item:nth-child(even) .service-content {
  order: -1;
}

.service-item img {
   width: 100%;
  height: auto;
    border-radius: 12px;
}  

.service-content h3     {
       font-size: 2rem;
  margin-bottom:  20px;
  color: #2c5aa0;
}

.service-content p   {
	color: #666;
               margin-bottom: 25px;
  line-height: 1.7;
	font-size: 1.1rem;
}

.service-content ul {
   list-style: none;
}

.service-content ul li {
  padding: 8px 0;
   color: #555;
   position: relative;
   padding-left: 25px;
}

.service-content ul li::before {
  content: "✓";
       position: absolute;
    left    :0;
       color: #2c5aa0;
    font-weight: bold;
}

.cta-section {
    padding: 100px 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
  color: white;
}

.cta-content {
    max-width:  1200px;
	 margin: 0 auto;
    padding: 0 20px;
  display: grid;
   grid-template-columns: 2fr 1fr;
       gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size : 2.5rem; 
	   margin-bottom: 25px;
}

.cta-text p {
    font-size: 1.2rem;
   margin-bottom :       40px;
    line-height: 1.7;
  opacity: 0.9;
}

.cta-stats {
	display: flex;
    gap: 40px;
}

.stat-item {
       display: flex;
	flex-direction: column;
	}

.stat-number {
  font-size: 2.5rem;
   font-weight: 700;
   color: #fff;
}

.stat-label {
    font-size: 0.9rem;
      opacity:   0.8;
}

.cta-button {
  background: white;
   color: #2c5aa0;
    padding: 20px 40px;
   text-decoration  :    none;
   border-radius: 8px;
      font-weight: 700;
	font-size: 1.1rem;
   display: inline-block;
	 transition :       all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.testimonial-section {
   padding : 100px 0;
  background: white;
}

.testimonial-section h2 {
    color: #1a1a1a;
    margin-bottom: 60px;
  text-align: center;
  font-size: 2.8rem; 
	
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
   background  :       #f8f9fa;
   -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius :     12px;
 border-left: 4px solid #2c5aa0;
  padding: 40px 30px;
}

.testimonial-card p {
	font-style: italic;
  color: #555;
   margin-bottom: 25px;
  font-size: 1.1rem;
   line-height: 1.6;
}

.testimonial-author strong {
  color: #2c5aa0; 
	   display: block; 
	    margin-bottom: 5px;
}

.testimonial-author span {
       font-size: 0.9rem;
  color: #777;
}

.about-preview {
      padding: 100px 0;
    background: #f8f9fa;
}

.about-wrapper {
   max-width: 1200px;
   margin: 0 auto;
   padding :       0 20px;
    display: grid;
          grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items   :  center;
}

.about-image img {
       width: 100%;
       height: auto;
     border-radius: 12px;

}

.about-text h2 {
    font-size  : 2.5rem;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.about-text p  
  {
  color: #666;
  margin-bottom: 20px;
   font-size: 1.1rem;
  line-height: 1.7;
}

.learn-more-btn {
    display :inline-block;
  margin-top: 20px;
   padding    :     15px 30px;
	 background: #2c5aa0;
   color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight   :   600;
	transition: background 0.3s ease;
}

.learn-more-btn:hover {


     background: #1e3f73;

	}

.contact-section {
	    padding: 100px 0;
    background     :     white;

}

.contact-header {
                    text-align: center;
    margin-bottom: 80px;
}

.contact-header h2 {
   font-size: 2.8rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.contact-header p {
  font-size: 1.2rem;
  color   :  #666;
}

.contact-wrapper {
   max-width :       1200px;
  margin: 0 auto;
   padding    :  0 20px;
   display: grid;
	grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info {
      display : flex;
  flex-direction: column;
    gap: 40px;

}

.contact-item h3 {

	  color: #2c5aa0;
    margin-bottom: 15px;
   font-size:    1.3rem;

}

.contact-item p


{
    color: #666;
  line-height: 1.6;
}

.contact-form {
    background: #f8f9fa;
   border-radius : 12px;
    padding: 50px;
}

.form-group
{
  margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
         width: 100%;
  padding: 15px;
   border   :2px solid #e0e0e0;
  border-radius    : 6px;
    font-size: 16px;
  transition: border-color 0.3s ease;
   background: white;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	  outline: none;
	border-color     :#2c5aa0;
     }

.form-group textarea    {
  resize: vertical;

	   min-height: 120px;
}

.submit-btn {

    width: 100%;
  padding: 18px;
    background: #2c5aa0;
   color: white;
    border: none;
  border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
   cursor: pointer;
  transition     :      background 0.3s ease;
	}

.submit-btn:hover {
   background: #1e3f73;
}

.main-footer {
   background: #1a1a1a;
   color: white;
    padding: 60px 0 30px;
}

.footer-content {
  max-width: 1200px;
   margin: 0 auto;
   padding:      0 20px;
    display: grid;
   grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

.footer-brand {

    margin-bottom: 30px;
	}

.footer-logo {
    height: 45px;
      margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  line-height: 1.6;

  color: #ccc;

   font-size:1.05rem;
}

.footer-links {

	   display: grid;
  grid-template-columns: repeat(3, 1fr);
         gap: 40px;

} 

.link-section h4 {
    color :        white;
   margin-bottom: 20px;
   font-size: 1.2rem;
}

.link-section ul {
   list-style: none;
}

.link-section ul li {
   margin-bottom: 12px;
}

.link-section ul li a
	{
  color: #ccc;
			text-decoration: none;
  transition: color 0.3s ease;
	
}

.link-section ul li a:hover  
  {
  color: #2c5aa0;
}



.footer-bottom {
   max-width  : 1200px;
   margin: 0 auto;
   padding:      30px 20px 0;
  border-top: 1px solid #333;
   text-align: center;
}

.footer-bottom p {
     color: #999;

}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .service-item,
    .service-item:nth-child(even) {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-item:nth-child(even) .service-content {
        order: 0;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2,
    .features-overview h2,
    .testimonial-section h2 {
        font-size: 2.2rem;
    }
    
    .service-item {
        padding: 30px;
    }
    
    .cta-stats {
        justify-content: center;
        gap: 30px;
    }
}.about-hero {
   margin-top: 80px;
  padding: 80px 0;
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
          min-height: 60vh;
   display: flex;
	 align-items: center;
}

.about-hero-content {
       max-width: 1200px;
  margin: 0 auto;
     padding   :     0 20px;
    display:  grid;
   grid-template-columns: 1.3fr 1fr;
   gap: 50px;
    align-items: center;
}

.about-hero-text h1 {
    font-size :     3rem; 
	   font-weight: 700; 
		color: #1a1a1a; 
	  margin-bottom: 25px; 
	    line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 1.3rem;
   color: #555;
   line-height  :  1.6;


}

.about-hero-image img {
  width: 100%;
        height: auto;
       border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.company-story {
    background: white;
			padding  :       100px 0;


}

.story-layout {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
   display: grid;
   grid-template-columns: 1.5fr 1fr;
   gap    :       60px;
   align-items: center;
}

.story-content h2 {
     font-size: 2.5rem;
  margin-bottom: 30px;
    color: #2c5aa0;
}

.story-content p {
   margin-bottom: 25px;
  color: #666;
  font-size: 1.1rem;
    line-height: 1.7;
}

.story-image img {
   -webkit-border-radius  :     12px;
   width: 100%;
  height: auto;
    -moz-border-radius: 12px;
   border-radius: 12px;
}

.mission-vision    {

	        padding: 80px 0;
    background: #f8f9fa;

}

.mission-grid {
  display     :        grid;
   grid-template-columns :  1fr 1fr;
    gap: 50px;
	max-width: 1000px;
    margin: 0 auto;
	
}

.mission-card, .vision-card {
        background: white;
  padding: 50px 40px;
    border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align  :  center;


}

.mission-card h3, .vision-card h3 {


   font-size: 1.8rem;
   margin-bottom: 25px;
   color: #2c5aa0; 
}

.mission-card p, .vision-card p {
   color: #666;
      font-size: 1.1rem;
    line-height: 1.7;
}

.team-approach {
       padding: 100px 0;
		background: white;


}

.approach-wrapper {
  align-items: center;
   max-width: 1200px;
  grid-template-columns: 1fr 1.3fr;
    padding: 0 20px;
     margin    :    0 auto;
    display    :     grid;
   gap: 60px;
}

.approach-image img {
   width: 100%;
               height:        auto;
    border-radius: 12px; 

}

.approach-content h2  
  {
   font-size   :      2.5rem;
   margin-bottom     :        40px;
  color: #1a1a1a;
}

.approach-points {
	    display: grid;
    gap    :     30px;
	}

.approach-point h4 {
  font-size: 1.3rem;
	margin-bottom: 12px;
    color: #2c5aa0;
}



.approach-point p {


   color    : #666;
   line-height: 1.6;
	}

.expertise-areas {
   padding: 100px 0;
    background: #f8f9fa;
}

.expertise-areas h2 {
   text-align: center;
  font-size    :     2.8rem;
	 margin-bottom: 60px;
    color: #1a1a1a;
}

.expertise-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 30px;
}

.expertise-item{
  background: white;
    padding: 40px 30px;
   border-radius: 12px;
   border-left: 4px solid #2c5aa0;
  transition     :        transform 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-3px);
}

.expertise-item h3 {
      font-size: 1.4rem; 
        margin-bottom: 15px; 
  color: #2c5aa0;
}

.expertise-item p {

	   color  :    #666;
   line-height: 1.6;
	}


.success-numbers   {
	    padding   :    100px 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white; 
	
}

.numbers-content {
   max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
	 text-align: center;


}

.numbers-content h2 {
  font-size: 2.8rem;

   margin-bottom: 60px; 
	
}

.numbers-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.number-item {
   display: flex;
    flex-direction     :    column;
                    align-items: center;
	}

.number    {
  margin-bottom: 10px;
    font-size: 3rem;
    font-weight: 700;
}  

.number-label {

  font-size: 1.1rem;
  opacity: 0.9;
	 text-align: center;

}

.values-section {
 padding  :     100px 0;
    background     : white; 
	
}

.values-section h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
   color: #1a1a1a; 
	
}

.values-layout     {
  max-width  :1200px;
  margin: 0 auto;
    padding :        0 20px;
  display: grid;
  grid-template-columns :       1fr 1.3fr;
  gap:        60px;
   align-items: center;
}

.values-image img {
       width  :100%;
     height: auto;
          border-radius: 12px; 

     }

.values-content {
    display: grid;
  gap     : 35px;
}

.value-item h4 {
   color: #2c5aa0;

	  margin-bottom: 12px;

	  font-size: 1.4rem;


}

.value-item p {
  color: #666;
  line-height: 1.6;
}


.why-choose-us {
  padding: 100px 0;
  background: #f8f9fa;
}

.why-content h2 {
		text-align: center;
    font-size   :       2.8rem;
  margin-bottom   : 60px;
    color: #1a1a1a;
	}

.reasons-grid {

    display:        grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;

}

.reason-card {
    background: white;
   padding: 40px 30px;
  border-radius     :  12px;
    text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.reason-card:hover {
     transform: translateY(-5px);
     }

.reason-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c5aa0; 
	
}

.reason-card p {
   color: #666;

	   line-height: 1.6;
}

.thankyou-page {
    margin-top: 80px;
  min-height: 80vh;
                    background  :#f8f9fa;
  padding: 60px 0; 

}  

.thankyou-container {
			max-width: 1200px;
  margin:   0 auto;
  padding: 0 20px;
	display: grid;
    grid-template-columns: 1.5fr 1fr;
	gap: 60px;
  align-items: center;
}

.thankyou-content {
   background: white;
  padding: 60px 50px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thankyou-icon {
  text-align: center;
  margin-bottom: 40px;
}

.success-checkmark {
    width: 80px;
     height: 80px;
   border-radius  :50%;
   display: inline-block;
  position: relative;
               background   :  #2c5aa0;
}

.success-checkmark .check-icon {
   width     :   80px; 
	  height: 80px; 
	   position: relative; 
	   border-radius :50%; 
	  box-sizing: content-box;
}

.success-checkmark .check-icon::before {
     top: 3px;
    left: -2px;
	width: 30px;
   transform-origin: 100% 50%;
    border-radius     :   100px 0 0 100px;
}

.success-checkmark .check-icon::after {
  top: 0;
  transform-origin: 0 50%;
   width: 60px;
   left: 30px;
   animation: rotate-circle 4.25s ease-in;
  border-radius: 0 100px 100px 0;
}

.success-checkmark .check-icon .icon-line {


    height: 5px;
   background-color: white;
   display: block;
         border-radius: 2px;
   position: absolute;
	 z-index: 10;}

.success-checkmark .check-icon .icon-line.line-tip 
 {
	  top: 46px; 
  left    :    14px; 
   width: 25px; 
  transform: rotate(45deg); 
    animation: icon-line-tip 0.75s;}

.success-checkmark .check-icon .icon-line.line-long {
  top: 38px;
    right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation    :icon-line-long 0.75s;
}


.success-checkmark .check-icon .icon-circle {
	    top: -4px;
    left: -4px;
  z-index: 10;
  width  :80px;
      height  :80px;
      border-radius  :  50%;
  position: absolute;
  box-sizing   :  content-box;
  border: 4px solid rgba(44, 90, 160, 0.2);
     }

.success-checkmark .check-icon .icon-fix {
               top: 8px;
  width: 5px;
  left: 26px;
   z-index: 1;
	height: 85px;
    position: absolute;
  transform: rotate(-45deg);
    background-color     : white;
}@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}.thankyou-content h1 {
    font-size    :      2.5rem;
                    color: #1a1a1a;
  margin-bottom: 25px;
   text-align  :  center;
}

.thankyou-message {
  font-size: 1.2rem;
    color: #666;
   line-height: 1.7;
   text-align: center;
  margin-bottom: 40px;
}

.next-steps {

    margin-bottom: 40px;

}

.next-steps h3   {
                    font-size: 1.5rem;
       color: #2c5aa0;
  margin-bottom:   30px;
}

.steps-list {

  display: flex;
    flex-direction:      column;
   gap: 25px;

}

.step-item {
		 display:   flex; 
  align-items: flex-start; 
    gap :20px;
}

.step-number {
       background: #2c5aa0;
  color: white;
  width: 35px;
    height: 35px;
    border-radius :50%;
   display: flex;
   align-items: center;
  justify-content :center;
  font-weight: 700;
   flex-shrink: 0;
}

.step-content h4 {
   color     : #1a1a1a;
          margin-bottom: 8px;
  font-size: 1.1rem;
}

.step-content p {
	  color: #666;
   font-size     :   0.95rem;
    line-height    : 1.5;

}

.additional-info {
   margin-bottom     : 40px;
   display: grid;
   gap: 20px;
}

.info-box {
     background: #f8f9fa;
    padding: 25px;
               border-radius: 8px;
   border-left: 4px solid #2c5aa0;
}

.info-box h4 {
  color: #2c5aa0;
   margin-bottom: 12px;
  font-size: 1.1rem;
}

.info-box p {
   line-height: 1.6; 
	          margin: 0; 
	  color:#666;
}

.thankyou-actions {
  display: flex;
    gap: 20px;
   justify-content: center;
}

.thankyou-image img {
   width     :       100%;
  height: auto;
  border-radius  :   12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.related-resources {
	padding:     80px 0;
  background: white;
}

.related-resources h2 {
   text-align: center;
    font-size     :      2.3rem;
   margin-bottom     :       15px;
 color: #1a1a1a;
}

.related-resources > .container > p {
   text-align: center;
                    font-size: 1.2rem;
   color: #666;
                    margin-bottom: 50px;
}

.resources-grid {
   display   :      grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 30px;
}

.resource-card {

  background: #f8f9fa;
    border-radius: 12px;
  overflow: hidden;
	transition  :      transform 0.3s ease;
     }

.resource-card:hover {
  transform: translateY(-5px);


}

.resource-card img {
    width: 100%;
    height: 200px;
  object-fit: cover;

}

.resource-content {
    padding: 30px;
}

.resource-content h3 {
       font-size: 1.4rem;
    margin-bottom     :  15px;
   color: #2c5aa0;
}

.resource-content p {
      color: #666;
    line-height   : 1.6;

}@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .about-hero-text h1 {
        font-size: 2.3rem;
    }
    
    .story-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .approach-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thankyou-content {
        padding: 40px 30px;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-text h1 {
        font-size: 1.9rem;
    }
    
    .story-content h2,
    .approach-content h2 {
        font-size: 2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 35px 25px;
    }
    
    .expertise-item {
        padding: 30px 20px;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .number {
        font-size: 2.5rem;
    }
}.policySection 
 {
    background: #f8f9fa;
    padding: 80px 2rem;
}

.policyContainer {


   max-width :      800px;

    margin: 0 auto;

    text-align: left;

}

.policyContainer h2 {

	      font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom  :  1.5rem;
   font-weight: 700;

}

.policyContainer p {
    color: #7f8c8d;
        margin-bottom: 1.5rem;
      line-height: 1.7;
    font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}