* {
   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: #fefefe;


}

.navigation-wrapper {
	position: fixed;
    top    :0;
    width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
   transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
   max-width: 1200px;
               margin: 0 auto;
   padding: 1rem 2rem;
    display: flex;
  justify-content    :space-between;
	 align-items: center;
}

.brand-section .brand-logo {
   height  :     45px;
	width: auto;
}


.nav-links-desktop {
    display: flex;
  list-style   :    none;
   gap: 2rem;
}

.nav-item   {
        text-decoration: none;
   color: #333;
   font-weight: 500;
  transition: color 0.3s ease;
}

.nav-item:hover {
    color: #007bff;
}

.mobile-menu-toggle {
   display: none;
  flex-direction: column;
	cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
	 width: 25px;
   height: 3px;
  background: #333;
	 transition: 0.3s;


}

.mobile-nav-overlay {
   position: fixed;
    top: 0;
    left  :0;
  width: 100%;
   height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  transform: translateX(-100%);
   transition   :    transform 0.3s ease;
    z-index:      999; 
	
}

.mobile-nav-overlay.active {
  transform: translateX(0);
}

.mobile-nav-content


{
   padding :     6rem 2rem;
   display: flex;
    flex-direction: column;
  gap:    1.5rem;
}

.mobile-nav-link   {
    color: white;
   text-decoration: none;
   font-size: 1.2rem;
   font-weight: 500;
}

.hero-section {
	padding: 8rem 2rem 4rem;
    max-width: 1200px;
  margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 3rem;
      align-items: center;
        min-height     :   80vh;
} 

.hero-content {
       max-width: 550px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
    margin-bottom    : 1.5rem;
   color: #1a1a1a;
}

.hero-subtitle {


	 font-size: 1.3rem;
    color: #666;
    margin-bottom: 2.5rem;
	}

.hero-actions {
        display  :   flex;
   gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 0.9rem 2rem;
	border-radius: 8px;
  text-decoration    :none;
   font-weight: 600;
  transition  :     all 0.3s ease;
   display:inline-block; 
	
}

.cta-button.primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
    color     :    white;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.cta-button.primary:hover {
	  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);


}

.cta-button.secondary {
	  background:     transparent;
    color: #007bff;
  border: 2px solid #007bff;}

.cta-button.secondary:hover     {
  background: #007bff;
	color: white;
}

.hero-visual {

                    justify-self: end; 
	


}

.hero-image {
       width   :100%;
   max-width: 500px;
    height :       auto;
    border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	}

.features-grid {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.container {


   max-width: 1200px;
    margin: 0 auto;
     }

.section-heading {
    font-size    :      2.5rem;
   text-align: center;
    margin-bottom: 3rem;
  color: #1a1a1a;


}

.feature-cards {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
               background: white;
   padding  :     2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-image {

   width    :100%;
   height: 200px;
  object-fit: cover;
  border-radius: 8px;
   margin-bottom: 1.5rem;
	}

.feature-card h3 {
   margin-bottom: 1rem;
    color: #1a1a1a;
   font-size: 1.4rem;
}

.feature-card p
	{
   color: #666;
	 line-height: 1.7;
}

.cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.cta-container {
  max-width: 1200px;
      margin :        0 auto;
   display: grid;
                    grid-template-columns: 1fr 1fr;
  gap: 3rem;
	align-items: center;

}

.cta-content h2 {
	 font-size: 2.3rem;
   margin-bottom:   1.5rem;
}

.cta-content p {
   font-size: 1.1rem;
  margin-bottom:  2rem;
   opacity: 0.9;
}

.cta-button-large {
    background: white;
	  color     : #007bff;
	    padding: 1rem 2.5rem;
	    border-radius: 8px;
		text-decoration: none;
		 font-weight: 600;
	     transition: all 0.3s ease;
	   display: inline-block;
}

.cta-button-large:hover {
     transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	}

.cta-image {


   width  :       100%; 
	  border-radius: 12px; 
	  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);


}

.contact-section {
    padding    :     5rem 2rem;
    background: #f8f9fa;
}

.contact-wrapper {
   max-width: 1200px;
    margin: 0 auto;
   display: grid;
   grid-template-columns   :   1fr 1fr;
        gap: 4rem;
   align-items  :   start;
}

.contact-info h2 {
   font-size: 2.2rem;
   margin-bottom: 1.5rem;
	color: #1a1a1a;
}

.contact-info p

{
   color: #666;
    margin-bottom:      2rem;
	line-height: 1.7;
}

.contact-details {
    display: flex;
  flex-direction: column;
    gap: 1rem;
}

.contact-item {
	display: flex;
   flex-direction: column;
  gap  :       0.3rem;
}

.contact-item strong {
    color: #007bff;
  font-size: 0.9rem;
    text-transform: uppercase;
   letter-spacing    :       0.5px;
}

.contact-form-container {
  background: white;
  padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {


   display: flex;
    flex-direction: column;
   gap:    1.5rem; 
	

}

.form-row {

	   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-input,
.form-select,
.form-textarea {
  padding: 1rem;
  border: 2px solid #e9ecef;
	border-radius: 8px;
      font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family :inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
   outline:none;
    border-color: #007bff;
}

.form-textarea {
  resize:  vertical;
	  min-height: 120px;
}

.form-submit {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color   :   white;
  padding: 1rem 2rem;
    border: none;
  border-radius: 8px;
   font-size: 1.1rem;
   font-weight: 600;
   cursor:     pointer;
   transition:    all 0.3s ease;
}

.form-submit:hover{


  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);


}

.footer-section {
   background: #1a1a1a;
    color: white;
  padding: 3rem 2rem 1.5rem;
}

.footer-content {
  max-width: 1200px; 
		margin: 0 auto; 
	  display: grid; 
	    grid-template-columns: 1fr 2fr; 
	         gap: 3rem; 
	  margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
	 display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;


}

.footer-column h4 {
   margin-bottom: 1rem; 
	    color: #007bff;
}

.footer-column ul {

	   list-style: none;

}

.footer-column li {
       margin-bottom: 0.5rem;


}

.footer-column a {

  -o-transition: color 0.3s ease;
   color: #ccc;
   -moz-transition: color 0.3s ease;
    text-decoration  :none;
   transition: color 0.3s ease;
	}

.footer-column a:hover {
   color: white;
}

.footer-column p {
  color:      #ccc;
        line-height: 1.6;
}

.footer-bottom		{
    border-top :  1px solid #333;
    padding-top: 1.5rem;
	text-align :   center;
  color: #999;
}@media (max-width: 768px) {
    .nav-links-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 6rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}.nav-item.active {
    color: #007bff;
	font-weight: 600;
}

.about-hero {
     padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-hero-container {
   max-width: 1200px;
    margin: 0 auto;
      display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;


}

.about-main-title {
  font-size: 3.5rem;
   font-weight: 800;
    color: #1a1a1a;
   margin-bottom: 1.5rem;
  line-height   :     1.1;


}

.about-lead-text {
   font-size: 1.3rem;
	color: #555;
 line-height: 1.7;
   margin-bottom: 2rem;
}

.about-hero-image	{
    width  :        100%;
    border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.mission-section {
   padding: 5rem 2rem;
    background: white;
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto; 
	
}

.mission-heading {
  font-size: 2.8rem;
   text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
   gap: 4rem;
	align-items: center;
}

.mission-text p {
    font-size: 1.1rem;
	line-height: 1.8;
    color: #666;
   margin-bottom: 1.5rem;
}

.mission-stats
	{
   display: flex;
  flex-direction: column;
    gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
    border-radius: 12px;
}

.stat-number {
   font-size   :  2.5rem;
	font-weight: 800;
   color: #007bff;
  margin-bottom   :   0.5rem;
}

.stat-label {
       color: #666; 
	   letter-spacing: 0.5px; 
	  font-size    :        0.9rem; 
		text-transform   : uppercase;


}

.values-section {
	padding: 5rem 2rem;
   background: #f8f9fa;
}

.values-wrapper {
	 max-width: 1200px;
     margin: 0 auto;


} 

.values-title {
   font-size     :      2.8rem;
  text-align: center;
   margin-bottom: 3rem;
   color: #1a1a1a;
}

.values-grid    {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 2rem;
}

.value-card {
  background: white;
   padding: 2.5rem;
  border-radius :     12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-card h3 {
	    font-size: 1.5rem;
  color: #007bff;
    margin-bottom: 1rem;
}

.value-card p {
  color   :   #666;
  line-height  :1.7;
}

.approach-section {
    padding: 5rem 2rem;
	    background: white;
}

.approach-container {
    max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 4rem;
	align-items: center;
}

.approach-image {
    width: 100%; 
	                    border-radius: 15px; 
	  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}  

.approach-content h2	{
  font-size: 2.5rem;
   margin-bottom   :  2rem;
  color: #1a1a1a;
}

.approach-steps


{
  display   : flex;
    flex-direction    :     column;
    gap: 2rem;
}

.step-item {
   display:      flex;
    gap: 1.5rem;
   align-items: flex-start;
}

.step-number {
  background: linear-gradient(135deg, #007bff, #0056b3); 
	    color: white; 
	  width: 45px; 
	      height: 45px; 
	    border-radius: 50%; 
	   display: flex; 
	   align-items: center; 
	   justify-content: center; 
	   font-weight: 700; 
		flex-shrink: 0;
	}

.step-content h4 {
    font-size :     1.3rem;
    margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.step-content p {
    color: #666;
  line-height: 1.6;
}

.expertise-showcase {

         padding: 5rem 2rem;
   background: #f8f9fa;
}

.expertise-container {
    max-width: 1200px;
  margin  :     0 auto;
}

.expertise-heading {
  font-size: 2.8rem;
   text-align   : center;
                    margin-bottom: 3rem;
    color: #1a1a1a;
}

.expertise-content {
    display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items: center;
}

.expertise-text p
{
   font-size    :   1.1rem;
    line-height: 1.8;
   color: #666;
 margin-bottom: 2rem; 

}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    padding: 0.8rem 0;
      border-bottom: 1px solid #e9ecef;
   color: #333;
    font-weight: 500;

}

.expertise-list li:before {
  content: "✓";
   color: #007bff;
	font-weight: bold;
		 margin-right :       0.8rem;
}

.expertise-image {
	  width: 100%;
   border-radius    :15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
	}

.thankyou-hero {
   padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   min-height: 70vh;
}

.thankyou-container {
    max-width: 1200px; 
   margin   :        0 auto; 
  display: grid; 
   grid-template-columns    :   2fr 1fr; 
  gap: 4rem; 
    align-items: center;
}

.success-indicator {
  text-align: center;
   margin-bottom     :  2rem;
}

.checkmark-wrapper {
      display: inline-block;
   width: 80px;
    height: 80px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 50%;
	position: relative;
   margin-bottom: 1rem;
                    animation: checkmarkPulse 2s infinite;
}

.checkmark {
   position: absolute;
   top: 50%;
  left :    50%;
  transform: translate(-50%, -50%);
      width: 35px;
  height: 20px;
  border: 4px solid white;
    border-top: none;
               border-right: none;
  transform: translate(-50%, -60%) rotate(-45deg);


}@keyframes checkmarkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}.thankyou-title {
   font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.thankyou-subtitle {
    font-size: 1.2rem;
  margin-bottom: 3rem;
   line-height: 1.6;
   color: #666;
}

.next-steps h2 {
    font-size: 2rem;
  margin-bottom: 2rem;
    color: #1a1a1a;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.step-box {
  background: white;
    padding: 2rem;
         border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   text-align: center;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
	border-radius: 50%;
   display: flex;
  align-items: center;
    justify-content: center;
          font-weight   :       700;
   font-size: 1.2rem;
        margin: 0 auto 1rem;
}

.step-box h3 {
    font-size: 1.2rem;
  margin-bottom: 1rem;
	color: #1a1a1a;
}

.step-box p {

	  color :      #666;
          line-height: 1.6;}

.contact-info-box {

	  background: linear-gradient(135deg, #007bff, #0056b3);
   color: white;
  padding: 2rem;
   border-radius: 12px;
  text-align: center;
  margin-bottom: 3rem;

}

.contact-info-box h3 {
				 margin-bottom: 0.5rem;
}  

.urgent-contact {
  font-size: 1.5rem;
   font-weight: 700;
	margin-top: 1rem;
	
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content :       center;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
    border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
          transition: all 0.3s ease;
}

.btn-primary
{
  background: linear-gradient(135deg, #007bff, #0056b3);
    color :     white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-secondary:hover {
     background: #007bff;
  color: white;
}

.thankyou-image   {
                    width: 100%;
    border-radius: 15px;
     box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.additional-resources {
   padding: 5rem 2rem;
  background: white;
}

.resources-container {
    max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.resources-container h2 {
   font-size: 2.3rem;
    margin-bottom   : 1rem;
  color: #1a1a1a;
}

.resources-container p {
  font-size: 1.1rem;
    color: #666;
   margin-bottom: 3rem;
	}

.resource-cards {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.resource-card {
  background: #f8f9fa; 
    border-radius: 12px; 
	 overflow  :      hidden; 
   transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-image{
  width: 100%;
  height: 200px;
   object-fit: cover;
}

.resource-content {
   padding: 2rem;
  text-align  :  left;
}

.resource-content h4 {
  font-size: 1.3rem;
    margin-bottom: 1rem;
	color: #1a1a1a;
}


.resource-content p {
	 color: #666;
    line-height: 1.6;
   margin: 0;
}@media (max-width: 768px) {
    .about-hero-container,
    .mission-content,
    .approach-container,
    .expertise-content,
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-main-title {
        font-size: 2.5rem;
    }
    
    .thankyou-title {
        font-size: 2.2rem;
    }
    
    .mission-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .resource-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-main-title {
        font-size: 2rem;
    }
    
    .thankyou-title {
        font-size: 1.8rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}.content-section {
	 padding: 5rem 2rem;
   background: #fefefe;
}

.content-wrapper {
   margin: 0 auto;
    max-width: 1200px;

}

.content-info {
      max-width: 800px;
    margin: 0 auto;
     }

.content-info h2 {
  font-size: 2.2rem;
 margin-bottom: 1.5rem;
   color: #1a1a1a;
}

.content-info p {
  color: #666;
    margin-bottom: 1.5rem;
   line-height: 1.7;
}