*    {
    margin  :    0;
	padding: 0;
                    box-sizing: border-box;
	}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  color: #333;
}

.main-navigation {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    position: fixed;
  width  :     100%;
  top: 0;
   z-index    :    1000;
  box-shadow: 0 2px 15px 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 20px;
}

.company-logo {
    height: 45px; 
  width: auto;


}

.menu-links {
  display: flex;
   gap: 2rem;
}

.nav-link {
     font-weight: 500;

	    color: white;

	  position: relative;

	  text-decoration: none;

	   transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
          color: #ffd700;
}


.nav-link::after {
  content: '';
	 position: absolute;
  bottom: -5px;
    left: 0;
   width: 0;
	 height: 2px;
  background: #ffd700;
  transition: width 0.3s ease; 
	
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
        flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-toggle span {
    width: 25px;
	height: 3px;
   background: white;
  transition: 0.3s;
}

.hero-section    {
   padding    : 120px 20px 80px;
     background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
       min-height: 100vh;
       display: flex;
      align-items: center;
}

.hero-content {


    max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items: center;

}

.hero-text h1 {


    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
   font-size: 3.5rem;
  color: #2c3e50;

}

.hero-description {
   font-size: 1.2rem;
  color: #5a6c7d;
	 line-height: 1.7;
	 margin-bottom: 2rem; 
	
}

.hero-buttons {
   flex-wrap: wrap;
  gap: 1rem;
   display: flex;
}

.primary-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
  padding: 15px 30px;
    text-decoration: none;
   border-radius   :     8px;
   font-weight: 600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   display: inline-block;
}

.primary-btn:hover {


  transform: translateY(-2px);
	  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);

}

.secondary-btn {
    background: transparent;
  color: #667eea;
   padding: 15px 30px;
	text-decoration: none;
   border: 2px solid #667eea;
    border-radius   :  8px;
    font-weight: 600;
   transition: all 0.3s ease;
   display: inline-block;
}



.secondary-btn:hover {
       background: #667eea;
       color     :  white;}

.featured-img {
  width: 100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.features-grid {
  padding   :        80px 20px;
 background: white; 

}

.container {
	max-width     :  1200px;
    margin: 0 auto; 

}



.features-grid h2 {
   text-align: center;
    font-size: 2.5rem;
  color   :       #2c3e50;
    margin-bottom: 3rem;
}

.features-container {
    display:        grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.feature-item {
   background: #f8f9fc;
   padding: 2rem;
   border-radius: 12px;
   text-align: center;
    transition  :       transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px); 
	  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-image {
       width: 100%;
	 height: 200px;
    object-fit: cover;
    border-radius: 8px;
  margin-bottom: 1.5rem;
}

.feature-item h3 {

	   font-size: 1.5rem;
  color: #2c3e50;
   margin-bottom   : 1rem;
	}

.feature-item p {
   color:  #5a6c7d;
   line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding     : 80px 20px;
  text-align: center;
   color     :       white;
}

.cta-content {
  max-width: 800px;
	margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom   :    1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
  margin-bottom: 2rem;
   line-height: 1.7;
}

.cta-button {
  background: white;
       color: #667eea;
   padding: 18px 35px;
   text-decoration: none;
  border-radius: 50px;
   font-weight: 600;
   font-size: 1.1rem;
	 transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.3);
}



.about-preview {
    padding  :      80px 20px;
  background    :   #f8f9fc;
}

.about-container {
  max-width   :   1200px;
	margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 4rem;
    align-items: center;
}

.about-text h2 {
  font-size:      2.5rem;
  color: #2c3e50;
	 margin-bottom: 1.5rem;

}

.about-text p {
   color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.stats-row {
   display: flex;
   gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
   display: block;
      font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.stat-label {
   font-size: 0.9rem;
    color: #5a6c7d;
}

.about-img {
   width: 100%;
    height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}



.contact-form


{
    padding: 80px 20px;
   background: white;


}

.form-container
	{

		 max-width: 800px;
  margin :    0 auto;
     }

.form-header {
   text-align: center;
	margin-bottom :       3rem; 
	
}

.form-header h2 {
    font-size:      2.5rem;
   color: #2c3e50;
  margin-bottom: 1rem;
}

.form-header p {
  color: #5a6c7d;
    font-size: 1.1rem;
}

.contact-form-element {
    background: #f8f9fc;
	    padding: 2.5rem;
	    border-radius: 15px;
	  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
  display: grid;
    grid-template-columns:     1fr 1fr;
         gap: 1.5rem;
   margin-bottom: 1.5rem;
}

.input-group {
  display:  flex;
  flex-direction: column;
}

.input-group.full-width {
                    margin-bottom: 1.5rem;
}

.input-group label

{
  margin-bottom   : 0.5rem;
    color: #2c3e50;
  font-weight   :    600;
}

.input-group input,
.input-group select,
.input-group textarea   {
   padding: 12px 15px;
    border: 2px solid #e1e8ed;
	border-radius: 8px;
   font-size: 1rem;
   transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
    padding: 15px 40px;
    border: none;
    border-radius :      8px;
   font-size: 1.1rem;
   font-weight: 600;
    cursor    :  pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
   width: 100%; 
	
}

.submit-btn:hover	{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.main-footer {
       background  :      #2c3e50;
    color: white;
   padding    :        60px 20px 20px;
}

.footer-content {
    max-width:     1200px;
    margin   : 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
   margin-bottom: 1rem;
    color: #ffd700;
}

.footer-logo {
	height: 40px;
	   width   :   auto;
	  filter: brightness(0) invert(1);
	    margin-bottom: 1rem;
}

.company-description {
  color: #bdc3c7;
  line-height: 1.6;
}

.address,
.phone {
   color: #bdc3c7;
    line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-section a {
   color: #bdc3c7;
    text-decoration: none;
  display: block;
    margin-bottom: 0.5rem;
       transition: color 0.3s ease;
}

.footer-section a:hover {
               color: #ffd700;
}


.footer-bottom {
   text-align: center;
  margin-top: 2rem;
    padding-top     :     2rem;
          border-top :       1px solid #34495e;
}

.footer-bottom p {
         color: #bdc3c7;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .menu-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .menu-links.active {
        left: 0;
    }

    .nav-link {
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-row {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .features-grid h2,
    .cta-content h2,
    .about-text h2,
    .form-header h2 {
        font-size: 2rem;
    }

    .contact-form-element {
        padding: 1.5rem;
    }
}.page-hero {
   padding: 120px 20px 60px;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  color   :   white;
	text-align: center;
    min-height: 50vh;
    display: flex;
  align-items: center;
    justify-content:    center;
}

.hero-content-wrapper h1 {
	font-size: 3rem;
   margin-bottom    :      1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
   max-width     :800px;
  margin: 0 auto;
  opacity: 0.9;
   line-height: 1.6;
}

.company-story {
   padding: 80px 20px;
    background: white;
}

.story-container {
  max-width: 1200px;

	   margin: 0 auto;

	   display: grid;

	    grid-template-columns: 1fr 1fr;

	  gap: 4rem;

	  align-items:        center;
}

.story-content h2 {
   font-size: 2.5rem;
	    color: #2c3e50;
	    margin-bottom: 1.5rem;
}

.story-content p {
    color: #5a6c7d;
   margin-bottom: 1.5rem;
    line-height: 1.7;
      font-size: 1.1rem;
} 

.timeline-section {
  margin-top: 3rem;
}

.timeline-item


{
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
    padding-left :        1rem;
    border-left: 3px solid #3498db;
}

.timeline-year {
  background:      #3498db;
	color: white;
    padding   : 0.5rem 1rem;
	 border-radius: 20px;
        font-weight: 700;
    margin-right: 1.5rem;
   min-width: 70px;
  text-align: center;
}

.timeline-content h4 {
  color     :    #2c3e50;
  margin-bottom: 0.5rem;
   font-size: 1.2rem;
}

.timeline-content p {
  color: #7f8c8d;
    font-size: 1rem;
          margin-bottom: 0;
}

.story-img {
    width: 100%;
  height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
} 

.methodology-section {
    padding:      80px 20px;
    background: #f8f9fc;
}

.method-container {
   max-width: 1200px;
    margin  :      0 auto;
}

.methodology-section h2 {
  text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom :        3rem;
}

.methods-grid {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.method-card {
   background: white;
  padding: 2.5rem 2rem;
    border-radius: 15px;
   text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.method-card:hover   {
  transform: translateY(-10px);

	  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.method-icon
	{
    width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color: white;
   border-radius: 50%;
   display :        flex;
   align-items: center;
   justify-content: center;
   font-size: 1.8rem;
   font-weight: 700;
    margin :  0 auto 1.5rem;
} 

.method-card h3 {
    font-size: 1.4rem;
	 color: #2c3e50;
    margin-bottom: 1rem;
}

.method-card p {
  color: #5a6c7d;
    line-height: 1.6;
}

.expertise-showcase {
   padding: 80px 20px;
    background: white;
}

.expertise-content {

	   max-width: 1200px;
    margin: 0 auto;
    display     :     grid;
	grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.expertise-text h2

{
   font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.benefits-list {
  list-style :       none;
  margin-bottom: 2rem;
}  

.benefits-list li {
  position: relative;
   padding-left: 2rem;
   margin-bottom: 1rem;
     color     :        #5a6c7d;
  line-height: 1.6;


}

.benefits-list li::before   {
  content: '✓';
    position    : absolute;
  left: 0;
   color: #27ae60;
  font-weight: 700;
    font-size: 1.2rem;
}

.credentials {
  display: flex;
   gap:       2rem;
  flex-wrap: wrap;
}

.credential-item {
   text-align     :      center;
}

.credential-number   {
	display: block;
	font-size:   2.2rem;
  font-weight: 700;
  color: #3498db;
}

.credential-text   {
    color: #5a6c7d;
   font-size: 0.9rem;
}


.expertise-images


{
  display: grid;
     grid-template-columns: 1fr 1fr;
  gap: 1rem;
    height :        400px;
}

.expertise-main-img {

	   grid-column: 1 / 3;
  width: 100%;
  height: 70%;
   object-fit: cover;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	}

.expertise-secondary-img {

  grid-column    :     1 / 3;
    width: 100%;
  height     :    25%;
   object-fit: cover;
	border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
               margin-top: 0.5rem;}

.values-section {


  padding: 80px 20px;
  background: #f8f9fc;
     }

.values-container {
  max-width: 1200px;
     margin: 0 auto;
}

.values-section h2 {
  text-align: center;
    font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item {
       background: white;
  padding: 2rem;
	border-radius: 12px;
  border-left: 5px solid #3498db;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);}

.value-item h4 {
   font-size: 1.3rem;
    color: #2c3e50;
	margin-bottom: 1rem;
	}

.value-item p {
	  color: #5a6c7d;
   line-height     :    1.6;
}

.testimonials-section {
    padding: 80px 20px;
    background: white;
}

.testimonials-container {

	  max-width: 1200px;
  margin: 0 auto;


}

.testimonials-section h2 {
   text-align: center;
   font-size: 2.5rem;
    color :       #2c3e50;
   margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.testimonial-card {
  background  :  #f8f9fc;
  padding :2.5rem;
   border-radius     :   15px;
    position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-card::before {
  color     :       #3498db; 
  font-size: 4rem; 
  opacity: 0.3; 
  content: '"'; 
   left: 20px; 
  top   :        -10px; 
  position: absolute;
}

.testimonial-card p {
   	font-style: italic;
    color: #5a6c7d;
    line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author strong   {
   color: #2c3e50;
   display: block;
          margin-bottom     :        0.3rem;
}

.testimonial-author span {
  color:#7f8c8d;
   font-size: 0.9rem;
}

.thankyou-hero {
    padding    :      120px 20px 60px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    min-height: 100vh;
   display: flex;
   align-items: center;
}

.thankyou-container {
  max-width :1200px;
   margin: 0 auto;
          display: grid;
        grid-template-columns: 1fr 1fr;
    gap: 4rem;
         align-items: center; 
	
}

.success-content {
    color: white;
}

.success-icon {
   width: 100px;
   height: 100px;
    margin: 0 auto 2rem;
	position: relative;
}

.checkmark {
	width    :    100px;
   height: 100px;
   border-radius: 50%;
  background: rgba(255,255,255,0.2);
   position: relative;
}

.checkmark::after {
  content: '✓'; 
	  position: absolute; 
	   top: 50%; 
	    left:       50%; 
	  transform: translate(-50%, -50%); 
		font-size: 3rem; 
	   color: white; 
	    font-weight: 700;
}

.success-content h1 {
    font-size: 3rem;
   text-align: center;
    margin-bottom: 1.5rem;
   font-weight: 700;
}

.success-message {
    font-size: 1.2rem;
  text-align: center;
   margin-bottom: 3rem;
     opacity: 0.9;
	line-height: 1.7;
}


.next-steps {
  background: rgba(255,255,255,0.1);
    padding: 2rem;
   border-radius: 15px;
    margin-bottom: 2rem;
}

.next-steps h3 {
  text-align: center;
    margin-bottom: 2rem;
   font-size: 1.5rem;
}

.steps-list {
   flex-direction: column;
   gap: 1.5rem;
   display: flex; 
	
}

.step-item {

	   display    :    flex;
    align-items: flex-start;
    gap: 1rem;}

.step-number   {
   width: 40px;

	   height: 40px;

	  background: rgba(255,255,255,0.2);

	   border-radius:       50%;

	   display  :      flex;

	    align-items: center;

	       justify-content: center;

	    font-weight: 700;

	    flex-shrink: 0;
}

.step-content h4 {
       margin-bottom: 0.5rem;
      font-size: 1.1rem;}

.step-content p


{
    opacity: 0.9;
    line-height: 1.5;
  font-size: 0.95rem;

}

.contact-reminder {
  background: rgba(255,255,255,0.1);
	 padding: 2rem;
  border-radius: 15px;
        text-align: center;
    margin-bottom: 2rem;
}

.contact-reminder h3 {
  margin-bottom: 1rem;
    font-size: 1.3rem;
}

.phone-link {
    color: white;
    font-size: 1.5rem;
  font-weight: 700;
    text-decoration: none;
  display: block;
   margin: 1rem 0;
    transition: opacity 0.3s ease;
}

.phone-link:hover {

  opacity: 0.8;}

.office-hours {

  opacity: 0.8;
        font-size: 0.9rem;

}

.action-buttons {
    display    :    flex;
    gap :   1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thankyou-img {
	    width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2); 

	}

.additional-resources    {
  padding: 80px 20px;
  background: #f8f9fc;
}

.resources-container {
  max-width: 1200px;
				 margin: 0 auto;
}

.additional-resources h2 {
    text-align: center;
	 font-size: 2.2rem;
  color: #2c3e50;
   margin-bottom: 3rem;
}

.resources-grid    {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 2rem;
}

.resource-card {
   background: white;
  border-radius: 15px;
     overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition:     transform 0.3s ease, box-shadow 0.3s ease;
}  

.resource-card:hover {
     transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);}

.resource-image {
     width: 100%;
  height: 200px;
  object-fit: cover;
     }


.resource-card h4{
  padding: 1.5rem 1.5rem 0.5rem;
	color    :       #2c3e50;
  font-size: 1.2rem;

}

.resource-card p {
   padding: 0 1.5rem 1.5rem;
  color: #5a6c7d;
   line-height: 1.6;
}@media (max-width: 768px) {
    .hero-content-wrapper h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .story-container,
    .expertise-content,
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 3px solid #3498db;
        padding-left: 0;
        padding-top: 1rem;
    }

    .timeline-year {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .steps-list {
        gap: 2rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .credentials {
        justify-content: center;
    }

    .expertise-images {
        grid-template-columns: 1fr;
        height: auto;
    }

    .expertise-main-img,
    .expertise-secondary-img {
        grid-column: 1;
        height: 250px;
    }

    .success-content h1 {
        font-size: 2.2rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}