* {
	 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: #fafafa;
     }

.primary-nav {


  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   padding  :    1rem 0;
  position: sticky;
  top: 0;
    z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
    margin: 0 auto;
   display :   flex;
  justify-content: space-between;
  align-items: center;
          padding: 0 2rem;
}

.logo-img {
   height: 45px;
   width  :        auto;
}

.nav-links {
   display: flex;
   gap: 2rem;
}

.nav-link {
    color: white;
   text-decoration: none;
   font-weight: 500;
      transition: color 0.3s ease;
 position: relative;
}

.nav-link:hover {

	    color: #3498db;
	}

.nav-link::after {
  content: '';
          position: absolute;
      bottom: -5px;
  left: 0;
  width: 0;
    height: 2px;
    background-color: #3498db;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
  display: none;
    flex-direction: column;
   cursor: pointer;
    gap: 3px;
}

.bar {


  width  :      25px;
   height: 3px;
   background-color: white;
   transition: all 0.3s ease; 
	}

.hamburger.active .bar:nth-child(1)  
  {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
 opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-area {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding   :    5rem 0;
    color: white;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display    :  grid;
     grid-template-columns    : 1fr 1fr;
    gap: 3rem;
    align-items: center;
  padding: 0 2rem;
}

.hero-text h1
	{
    font-size: 2.8rem;
  font-weight: 700;
   margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-text p {
	    font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;}

.hero-buttons {
    display: flex;
  gap: 1rem;
    flex-wrap   :    wrap;
}

.cta-button {
  padding: 12px 24px;
   text-decoration: none;
    border-radius: 6px;
   font-weight: 600;
   transition     :   all 0.3s ease;
    display: inline-block;
   text-align: center;
}

.cta-button.primary {
    background-color: #e74c3c;
                    color: white;
}

.cta-button.primary:hover {

	   background-color: #c0392b;
  transform: translateY(-2px);


}

.cta-button.secondary {
    background-color   :     transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover 
 {
  background-color: white;
   color: #667eea;
}

.cta-button.large {

	    padding: 16px 32px;
    font-size: 1.1rem;
	}

.hero-image img {
    width: 100%;
  height :       auto;
   border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-overview  
  {

    padding: 5rem 0;
    background-color: white;
}

.services-overview h2 {
	text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
    color: #2c3e50; 
	
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}  

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px 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 15px 40px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  padding: 1.5rem 1.5rem 1rem;
   color: #2c3e50;
  font-size: 1.3rem;

}

.service-card p    {
   padding: 0 1.5rem 1.5rem;
   color: #666;
   line-height: 1.7;
}

.expertise-section {
	padding: 5rem 0;
   background-color: #f8f9fa;
}

.expertise-content {
    display: grid;
       grid-template-columns: 1fr 1fr;
   	 gap: 3rem;
       align-items: center;
}

.expertise-text h2 {
     font-size: 2.3rem;
	color: #2c3e50;
  margin-bottom: 1.5rem; 
	
}

.expertise-text p {
    font-size: 1.1rem;
    color: #555;
  margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits-list {


   list-style: none;
}

.benefits-list li {
    color: #444;
  padding-left  : 2rem;
  padding:        0.8rem 0;
   position: relative;
}

.benefits-list li::before {
   left: 0;
     font-size: 1.2rem;
    font-weight: bold;
  content: '✓';
   position: absolute;
   color: #27ae60;
}

.expertise-image img {

	    width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
	


}

.cta-section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 4rem 0;
   text-align  :center;
  color  :    white;
}

.cta-content h2
{
	    font-size: 2.5rem;
   margin-bottom: 1.5rem;
}

.cta-content p    {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  max-width    :      800px;
   margin-left:     auto;
    margin-right     :     auto;
}

.contact-section		{
    padding:        5rem 0;
    background-color: white;
} 

.contact-section h2 {


   text-align: center;
    font-size: 2.5rem;
                    margin-bottom: 3rem;
   color: #2c3e50;
}

.contact-content {
	    display: grid;
   grid-template-columns: 1fr 2fr;
  gap: 3rem;}

.contact-info h3 {
  color: #2c3e50;
    margin-bottom: 2rem;
  font-size: 1.5rem;
}

.contact-item {
  margin-bottom     :        1.5rem;
}

.contact-item strong {
   color: #2c3e50;
   display:     block;
  margin-bottom: 0.5rem;
}

.contact-item p
{
   color: #666;
  line-height: 1.6;
}

.contact-form {
               background-color: #f8f9fa;
   padding: 2rem;
  border-radius: 12px;
}

.form-group
	{
    margin-bottom :   1.5rem;
}

.form-group label {
   display: block;
   margin-bottom: 0.5rem;
	color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea{
	width: 100%;
	    padding: 12px 15px;
	  border: 2px solid #ddd;
	    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: #3498db;
}

.submit-btn    {

	  background-color: #2c3e50;
  color: white;
   padding: 15px 30px;
    border: none;
    border-radius: 6px;
  font-size: 1.1rem;
  font-weight:     600;
	cursor: pointer;
    transition: background-color 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background-color: #34495e;
}

.site-footer {
   background-color   :   #2c3e50;
  color: white;
 padding: 3rem 0 1rem;
}

.footer-content{
   margin: 0 auto;
    max-width: 1200px;
  display: grid;
    gap: 3rem;
  padding: 0 2rem;
    grid-template-columns: 1fr 2fr;
}

.footer-logo {
   height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
   display  : grid;
  grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.footer-section h4 {
   margin-bottom    :        1rem;
   color: #3498db;
}

.footer-section p,
.footer-section a {
   color: #bdc3c7;
   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 #34495e;
   margin-top: 2rem;
  padding-top     :   1rem;
    text-align :  center;
  color: #95a5a6;
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #2c3e50;
        flex-direction: column;
        padding: 1rem 2rem;
        transform: translateY(-100%);
        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-text h1 {
        font-size: 2.2rem;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .content-wrapper {
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .services-overview h2,
    .contact-section h2 {
        font-size: 2rem;
    }
}.nav-link.active {
  color    :       #3498db;
}

.nav-link.active::after {
	width: 100%;
}

.about-hero {
  background: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%);
    padding: 4rem 0;
  color: white;
               text-align: center;
}

.about-hero-content h1 
 {
	   font-size: 2.8rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
    line-height: 1.2;
     }

.about-hero-content p {
  font-size: 1.3rem;
  opacity     :        0.9;
   max-width: 800px;
  margin  :        0 auto;
  line-height: 1.6;
}

.story-section {
    background-color     :        white;
  padding: 5rem 0;
}

.story-content {
	 display     :    grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
     align-items: center;
}

.story-text h2

{
    font-size:     2.4rem; 
	   color: #2c3e50; 
	   margin-bottom: 1.5rem;
}

.story-text p {
    color: #555;
   margin-bottom: 1.5rem;
    font-size: 1.1rem;
  line-height: 1.7;
}

.story-image img {
   width: 100%;
  height     :   auto;
    border-radius : 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1); 

}

.mission-values {
  padding :        5rem 0;
  background-color: #f8f9fa;
}

.mission-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 3rem;
}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
    background: white;
   padding: 2.5rem 2rem;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition   :    transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
} 

.value-card h3 {
	 font-size: 1.4rem; 
   color: #2c3e50; 
    margin-bottom : 1rem;
	}

.value-card p {
   color  :  #666;
  line-height:1.6;
}

.approach-section {
  padding: 5rem 0;
  background-color: white;
}

.approach-content {
	  display: grid; 
    grid-template-columns: 1fr 1fr; 
  gap: 3rem; 
   align-items: center;}

.approach-text h2


{

    font-size: 2.4rem;
          color: #2c3e50;
  margin-bottom  : 1.5rem;

}

.approach-text p  {
      font-size: 1.1rem;
  color: #555;
    line-height: 1.7;
                    margin-bottom: 2rem;
}

.approach-item	{
   margin-bottom: 2rem;
  padding-left: 1.5rem;
	border-left: 3px solid #3498db;
}

.approach-item h4 {
  color: #2c3e50;
    font-size: 1.2rem;
   margin-bottom: 0.5rem;
}  

.approach-item p {
   color: #666;
    font-size: 1rem;
   line-height: 1.6;
}

.approach-image img {
  width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.methodology-section {

	  padding: 5rem 0;
    background-color: #f8f9fa;}

.methodology-section h2 {
    text-align     :      center;
   font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 3rem;
}

.methodology-grid{

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;


}

.method-card {
    background    :     white;
   border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition     :  transform 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
}

.method-card img {
    width: 100%;
  height: 200px;
    object-fit: cover;
}

.method-card h3 {
   padding: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
   font-size: 1.3rem;
}

.method-card p {


   color: #666;
    padding  :     0 1.5rem 1.5rem;
  line-height: 1.7;
	}

.stats-section {
	               padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
     }

.stats-section h2 {
     text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
 text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
   font-weight: 700;
  margin-bottom: 0.5rem;
	color: #fff;
}

.stat-label {
    font-size: 1.1rem;
   opacity: 0.9;
}

.contact-cta {
    text-align: center;
    padding: 4rem 0;
    color    :      white;
    background-color: #2c3e50;
}

.contact-cta h2 {
  font-size: 2.5rem;
   margin-bottom: 1.5rem;
}


.contact-cta p {
   font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
    max-width: 600px;
   margin-left: auto;
   margin-right: auto;
}

.thankyou-hero  {
  background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    padding: 5rem 0;
    color: white;
   text-align :    center;
}

.thankyou-content {
    margin: 0 auto;
  max-width: 600px;
}

.success-icon {
    margin-bottom: 2rem;
    display:      flex;
  justify-content: center;
}

.checkmark {
  width: 80px;
   height: 80px;
   border-radius :50%;
  background-color: rgba(255,255,255,0.2);
   position:relative;
   margin: 0 auto; 

}



.checkmark::after {
  content: '✓';
	position: absolute;
   top: 50%;
    left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: white;
   font-weight: bold;
}

.thankyou-content h1 {
   font-size: 2.8rem;
  font-weight: 700;
   margin-bottom: 1rem;
}

.thankyou-subtitle {
  opacity: 0.9;
  font-size: 1.3rem;
  line-height: 1.6;
}

.next-steps {

	       padding: 5rem 0;
    background-color: white;
	}

.next-steps h2   {


  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 3rem;

}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; 
	
}

.step-card {
  background     :    white;
	padding    : 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   text-align :       center;
    position    :      relative;
    border-top: 4px solid #3498db;
}

.step-number {
  position: absolute;
	top: -20px;
   left: 50%;
  transform: translateX(-50%);
  width: 40px;
         height: 40px;
  background-color: #3498db;
	color: white;
  border-radius: 50%;
   -webkit-border-radius: 50%;
  display: flex;
    align-items: center;
	 justify-content: center;
    font-weight: bold;
  font-size: 1.2rem;
	
}

.step-card h3 {
   margin-top: 1rem;
  margin-bottom: 1rem;
    color: #2c3e50;
	 font-size: 1.3rem;
}

.step-card p {
  color: #666;
  line-height: 1.6;
}

.additional-resources {
   padding: 5rem 0;
  background-color :     #f8f9fa;
}

.additional-resources h2 {
  color: #2c3e50;
	  text-align: center;
	   font-size: 2.5rem;
	   margin-bottom: 3rem;
}

.resources-grid {
    display   :grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	               gap: 2rem;
} 

.resource-card {
          background: white;
	border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card img 
 {
	  width: 100%;
    height: 180px;
    object-fit: cover;
     }

.resource-card h3 {

	  padding   :  1.5rem 1.5rem 1rem;
   color: #2c3e50;
   font-size: 1.3rem;
	}

.resource-card p	{
    padding :0 1.5rem 1.5rem;
   color: #666;
    line-height  :     1.7;


}

.quick-tips {
   padding: 5rem 0;
  background-color: white;
}

.quick-tips h2 {
   text-align: center;
  font-size: 2.5rem;
        color: #2c3e50;
   margin-bottom: 3rem;
}

.tips-container {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;


} 

.tip-item {
   padding    :        2rem;
   background-color: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #e74c3c;
}

.tip-item h4 {
	color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
} 

.tip-item p {
    color: #666;
   line-height: 1.6;
}

.return-navigation {
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  text-align: center;


}

.navigation-content h2 {
       font-size:      2.5rem;
   margin-bottom :  1.5rem;


	}

.navigation-content p  {
  font-size: 1.2rem;
  margin-bottom    :   2rem;
   opacity: 0.9;
    max-width: 600px;
   margin-left: auto;
  margin-right: auto;
}

.nav-buttons {
	display: flex;
    gap: 1rem;
    justify-content: center;
	 flex-wrap: wrap;
}@media (max-width: 768px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .story-content,
    .approach-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .methodology-grid,
    .resources-grid,
    .tips-container {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .about-hero-content p,
    .thankyou-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}