*	{
	    margin: 0;
  padding: 0;
   box-sizing: border-box;
	}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
   color: #333;
}

.nav-container {
    background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	 position: sticky;
   top: 0;
	z-index: 1000;
	
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
	 display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem; 
	
}

.nav-logo .logo-img {
  height     :        45px;
   width: auto;
}

.desktop-nav
{
        display: flex;
   gap: 2rem;
}

.nav-link {
    text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
   transition: color 0.3s ease;
}

.nav-link:hover {
  color: #3498db;
}

.mobile-nav-toggle {


        display: none;
   flex-direction: column;
  cursor: pointer;
    gap: 4px;
}

.burger-line 
 {
  width     :    25px;
      height: 3px;
   background    :     #2c3e50;
  transition: 0.3s; 

}

.mobile-nav-menu {
   display: none;
   background: white;
    padding: 1rem 2rem;
    border-top: 1px solid #eee;
}

.mobile-nav-link {
  padding     :0.8rem 0;
   text-decoration: none;
  display   :        block;
	border-bottom: 1px solid #f0f0f0;
    color: #2c3e50;
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color    :white;
	 padding: 5rem 2rem;
  display: flex;
               align-items: center;
    min-height: 70vh;
}

.hero-content {
  max-width: 1200px;
    margin     :    0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
   align-items: center;
}

.hero-title {
  font-size: 3.5rem; 
    font-weight: 700; 
   margin-bottom   :        1.5rem; 
    line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons
{
          flex-wrap: wrap;
    display: flex;
    gap: 1rem;
}

.btn-primary {
  background: #e74c3c;
   color: white;
   padding: 1rem 2rem;
               text-decoration: none;
    border-radius: 6px;
   font-weight: 600;
    transition: all 0.3s ease;
   border: none;
    cursor: pointer;
    display     :    inline-block;
}

.btn-primary:hover {
  -moz-transform: translateY(-2px);
    background     :    #c0392b;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -ms-transform: translateY(-2px);
}

.btn-secondary {
          background  :transparent;
   color: white;
   padding: 1rem 2rem;
   text-decoration: none;
   border: 2px solid white;
    border-radius: 6px;
    font-weight: 600;
   transition: all 0.3s ease;

}

.btn-secondary:hover  
  {

    background: white;
   color: #667eea;
}

.hero-img		{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.stats-section {
  background: #f8f9fa;
    padding: 4rem 2rem;
}

.container {
   max-width: 1200px;
    margin: 0 auto;

}

.stats-grid
	{
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  text-align: center;
}

.stat-number {
   font-size: 3rem;
    font-weight:    700;
   color: #3498db;
  margin-bottom: 0.5rem;
	
}

.stat-text {
  font-size: 1.1rem;
  color: #666; 

} 

.services-section {
   padding: 5rem 2rem;
    background: white;

}

.section-title 
 {
  text-align: center;
	 font-size: 2.5rem;
   margin-bottom: 3rem;
  color: #2c3e50;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card     {
   background: white;
                    border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 2rem;
  text-align:    center;
   transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.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: #2c3e50;
}

.service-card p    {

	   color :#666;
   line-height: 1.6;



}

.features-section {
    background:  #ecf0f1;
    padding: 5rem 2rem;
}

.features-content h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
   color: #2c3e50;
}

.features-list {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap:      2rem;}

.feature-item {
    background: white;
          padding: 2rem;
    border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.feature-item h4 {

	        color: #3498db;
   margin-bottom: 1rem;
    font-size: 1.3rem;
	}

.cta-section   {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);

  color: white;

  padding: 5rem 2rem;

	text-align: center;
}

.cta-content h2 {
  margin-bottom: 1rem;
      font-size: 2.5rem;
}

.cta-content p {
   font-size: 1.2rem;
   margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-primary.large {
   font-size: 1.2rem;
  padding  :   1.2rem 2.5rem;
	
}

.contact-section {
   padding: 5rem 2rem;
	background: #f8f9fa;
}

.contact-wrapper {
    display: grid;
   grid-template-columns    :      1fr 2fr;
   gap: 4rem;
   margin-top: 3rem;
}

.contact-info h3

{
   margin-bottom: 2rem;
    color :      #2c3e50;
}

.contact-item  {

	   margin-bottom: 2rem;

}

.contact-item strong {
    color: #3498db;
   display: block;
   margin-bottom: 0.5rem;
}

.contact-form {
    background: white;
  padding: 3rem;
  border-radius    :   10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 500;
   margin-bottom  :    0.5rem;
	color: #2c3e50;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
  padding: 0.8rem;
    border: 2px solid #ddd;
  border-radius: 5px;
    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: #3498db;
}

.footer {
   background: #2c3e50;
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
   margin-bottom: 2rem;
}

.footer-logo	{
   height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-section h4 {
   margin-bottom: 1rem;
   color: #3498db;
}

.footer-links		{
   list-style    :      none;
}

.footer-links li {
   margin-bottom: 0.5rem;
	}

.footer-links a {
   color: #bdc3c7;
  text-decoration: none;
  transition   :    color 0.3s ease;
    -webkit-transition  :       color 0.3s ease;
}

.footer-links a:hover {
     color: white;
}

.footer-bottom {
       text-align: center;
    padding-top: 2rem;
   border-top: 1px solid #34495e;
   color: #bdc3c7;
	}@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .mobile-nav-menu.active {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 3rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .services-section,
    .features-section,
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}.nav-link.active {
   color: #3498db;
    font-weight: 600;
}

.about-hero {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 4rem 2rem;
	 text-align: center; 
	
}

.about-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

.about-subtitle {
   font-size: 1.3rem;
   max-width: 800px;
   margin: 0 auto;
    opacity: 0.9;
}

.company-story {
          padding: 5rem 2rem;
   background: white;
}

.story-content {
   display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 4rem;
  align-items: center;
}

.story-text h2 {
  margin-bottom: 2rem;
    color: #2c3e50;
   font-size: 2.5rem;
}

.story-text p {
   font-size: 1.1rem;
	color: #555;
  line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image img {
	width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.values-section{
    background: #f8f9fa;
     padding: 5rem 2rem;

}

.values-grid {
  display :        grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
   background: white;
    padding: 2.5rem;
  border-radius:   10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
                    transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h3 {
  font-size: 1.5rem;
   color  :       #3498db;
      margin-bottom: 1rem;
}

.value-card p {
    color: #666;
   line-height: 1.6;
}

.expertise-section {
      padding: 5rem 2rem;
    background: white;
}

.expertise-content {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items: flex-start;
}

.expertise-text h2 {
   font-size: 2.5rem;
   color: #2c3e50;
	margin-bottom     :        2rem;

}

.expertise-list  {
	 display: flex;
    flex-direction: column;
       gap    :  2rem;
} 

.expertise-item {
   border-left: 4px solid #3498db;
  padding-left: 1.5rem;
}

.expertise-item h4 {
    font-size: 1.3rem;
          color: #2c3e50;
   margin-bottom: 0.5rem;
}

.expertise-item p {
	color: #666;
         line-height: 1.6;
}

.expertise-image img
{
    border-radius: 10px;
   object-fit: cover;
   width: 100%;
    height: 450px;
}  

.achievements-section {
  background: #ecf0f1;
    padding: 4rem 2rem;
}

.achievements-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	 gap: 2rem;
               text-align   :center;
}

.achievement-item {

	    background: white;
    padding: 2rem;
         border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}



.achievement-number {
    font-size: 3rem;
  font-weight: 700;
   color: #e74c3c;
   margin-bottom: 0.5rem;
}

.achievement-text {
    font-size   :       1.1rem; 
   color:    #666;
}

.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: #2c3e50;
    margin-bottom: 2rem; 
	
}

.approach-text p {
    font-size: 1.1rem;
   line-height: 1.8;
    margin-bottom: 1.5rem;
                    color: #555;
}

.approach-features {
  display: grid;
	 grid-template-columns:       1fr 1fr;
  gap: 1rem;
   margin-top: 2rem; 

}

.feature {
	 background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
 border-left: 3px solid #3498db;
   font-weight: 500;
   color: #2c3e50;
}

.approach-image img {
    width    :      100%;
    height: 350px;
    object-fit: cover;
   border-radius: 10px;
}

.mission-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 5rem 2rem;
   text-align: center;
}

.mission-content h2 {
   font-size: 2.5rem;
  margin-bottom: 2rem;
}

.mission-text {
   font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
   line-height : 1.8;
}

.mission-goals {
  display    :   grid; 
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
	    gap: 2rem; 
	  max-width: 900px; 
	  margin: 0 auto;
	}

.goal-item {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
   border-radius: 10px;
  backdrop-filter: blur(10px);
}

.goal-item h4 {
   font-size: 1.3rem;
         margin-bottom: 1rem;
   color: #fff;
}

.goal-item p {
       opacity: 0.9;
   line-height: 1.6;
}

.thankyou-hero {

	  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
   color: white;
  padding: 5rem 2rem;
          text-align: center;
    min-height: 60vh;
  display: flex;
  align-items: center;
}

.thankyou-content {
    max-width: 800px;
  margin: 0 auto;
     }

.success-icon {
    margin-bottom: 2rem; 
	
}

.checkmark {
  width: 80px;
   height :       80px;
   border-radius: 50%;
  background: rgba(255,255,255,0.2);
          margin: 0 auto;
  position: relative;
}

.checkmark::after {
     content: '✓';
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    font-size:    2.5rem;
    color: white;
	font-weight: bold; 

}

.thankyou-title


{
    font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.thankyou-subtitle {
    font-size: 1.3rem;
   margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.thankyou-info
	{
  background: rgba(255,255,255,0.1);
   padding: 3rem;
    border-radius: 15px;
  margin-bottom    : 3rem;
  backdrop-filter: blur(10px);
}

.thankyou-info h3 {

	font-size: 1.8rem;
      margin-bottom: 2rem;


}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
  align-items: flex-start;
   gap: 1.5rem;
   text-align:    left;
}

.step-number {
  background: rgba(255,255,255,0.2);
    width: 40px;
     height: 40px;
   border-radius: 50%;
    display: flex;
               align-items: center;
    justify-content: center;
   font-weight: bold;
  font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
	font-size :  1.2rem;
   margin-bottom: 0.5rem;
}

.step-content p {
  opacity     :        0.9;
   line-height: 1.5;
}

.thankyou-actions {
				 display: flex;
    gap: 1rem;
   justify-content: center;
   flex-wrap: wrap;
}

.additional-info {
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.info-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.info-card {
  background: white;
  padding    : 2rem;
    border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.info-card h4 {
   color: #3498db;
   font-size: 1.3rem;
	margin-bottom: 1rem;
}

.info-card p {
   color:    #666;
	 line-height: 1.6;


}

.testimonial-preview {
  padding :       4rem 2rem;
  background: white;
  text-align: center;
}

.testimonial-preview h3 {
    font-size: 2rem;
      color: #2c3e50;
   margin-bottom    :2rem;
}

.testimonial-item {
   max-width: 700px;
    margin: 0 auto;


}

.testimonial-item blockquote {
        font-size: 1.2rem;
   font-style: italic;
   margin-bottom: 1rem;
    line-height: 1.6;
  padding: 0 2rem;
	 position: relative;
   color: #555;
     }

.testimonial-item blockquote::before   {
  content: '"';
  font-size: 3rem;
  position   :   absolute;
    left: -10px;
   top: -10px;
   color: #3498db;
}

.testimonial-item cite {
                    color: #3498db;
  font-weight: 500;
}@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .story-content,
    .expertise-content,
    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-features {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .thankyou-title {
        font-size: 2.5rem;
    }
    
    .thankyou-subtitle {
        font-size: 1.1rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps {
        gap: 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .thankyou-hero {
        padding: 3rem 1rem;
    }
    
    .company-story,
    .values-section,
    .expertise-section,
    .achievements-section,
    .approach-section,
    .mission-section,
    .additional-info,
    .testimonial-preview {
        padding: 3rem 1rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-info {
        padding: 2rem;
    }
}.policy-section {
  max-width: 800px;
   margin: 0 auto;
   padding: 2rem;
}

.policy-section h3 {
  font-size: 1.8rem; 
	  color: #2c3e50; 
	    margin-bottom: 1rem;
}

.policy-section p {


   margin-bottom    :     1.5rem;

	   color: #666;

}

.policy-section ul {
    list-style: disc;
  margin-left: 2rem;
   margin-bottom: 1.5rem;
}

.policy-section li {
  margin-bottom  :    0.5rem;
   color: #666;
}