@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #667eea;
  --color-secondary: #764ba2;
  --color-text: #1a1a1a;
  --color-light: #f8f9fa;
  --color-border: #ddd;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 6px 16px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --transition-base: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: white;
  color: var(--color-text);
	line-height: 1.6;

	}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
    margin-bottom:        0.5rem;
}

h1 {
   font-size     :       3.2rem;
}

h2 {
     font-size: 2.2rem;
}

h3 {
  font-size     :1.4rem;
}

h4 {
	font-size    :  1.1rem;

}

h5	{
    font-size: 1rem;

}

h6 {


        font-size: 0.9rem;

}

p {
       margin-bottom    :   1rem;
    color: #555;
}

a {
  color: var(--color-primary);
	text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--color-secondary);
}

button    {
    font-family: inherit;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

input, select, textarea {
                    font-family: inherit;
  border-radius: var(--radius-sm);
}

img {
		 max-width: 100%;
    height: auto;
	display: block;
}

code {
  font-family: 'Courier New', monospace;
  background: var(--color-light);
 padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

pre {
  background: var(--color-light);
   padding: 1rem;
  border-radius: var(--radius-md);
    overflow-x  : auto;
}@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color  :        white;
    padding: 4rem 2rem;
   text-align: center;
  min-height: 350px;
   display: flex;
    flex-direction: column;
    justify-content: center;
   align-items: center;
}

.services-hero h1 {
		font-size :     3rem;
    margin-bottom: 1rem;
   font-weight: 700;
} 

.services-hero p  {
   font-size     : 1.2rem;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.95);
}

.services-detailed		{
    max-width: 1200px; 
		margin: 0 auto; 
	    padding: 4rem 2rem;
}

.service-detailed-card

{
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
	padding: 2rem;
 background: white;
	 border-radius    :        10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
   transition: all 0.3s ease;
}

.service-detailed-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.service-detailed-card.reverse {
    grid-template-columns    :       1fr 1fr; 

}

.service-detailed-card.reverse .service-image {
    order: 2;
}

.service-detailed-card.reverse .service-content {
	  order: 1;
     }

.service-image img {
         width: 100%;
	height    :  350px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-content h2 {
     font-size: 2rem;
    color: #1a1a1a;
  margin-bottom :        1rem;
}

.service-content p {
	color: #555;
	 font-size: 1rem;
   line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style:        none;
                    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.feature-list li {


   color:    #667eea;
  font-weight: 500;
  padding-left: 1.5rem;
    position: relative;
   margin-bottom: 0;

}

.feature-list li:before {
   position: absolute;
   color: #667eea;
  content: "✓";
  left: 0;
   font-weight: 700;
}@media (max-width: 1024px) {
    .service-detailed-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detailed-card.reverse .service-image,
    .service-detailed-card.reverse .service-content {
        order: unset;
    }

    .service-image img {
        height: 300px;
    }

    .service-content h2 {
        font-size: 1.6rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }
}.pricing-overview {
  padding: 4rem 2rem;
    background: #f8f9fa;
}

.pricing-overview h2    {
  font-size: 2.2rem;
               text-align:center;
   margin-bottom: 3rem;
  color: #1a1a1a;
}

.pricing-grid {
    display :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
    max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
	background: white;
	padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	text-align: center;
    transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pricing-card:hover    {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.pricing-card.featured {
	border-color: #667eea;
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.2);
}

.pricing-card h3 {
  font-size: 1.4rem;
    margin-bottom: 1rem;
	 color: #1a1a1a;
}

.price {

  font-size: 2.2rem;
  font-weight: 700;
     color: #667eea;
   margin-bottom: 0.5rem;
     }


.price-desc {
  color: #999;
  font-size: 0.9rem;
   margin-bottom: 1.5rem;
}

.pricing-features {
   text-align: left;
	list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-features li {
   padding  :        0.5rem 0;
   color: #555;
   border-bottom: 1px solid #eee;
}

.pricing-features li:last-child

{
   border-bottom: none;
}

.testimonials-section {
   padding: 4rem 2rem;
    max-width    :      1200px;
   margin: 0 auto;
}

.testimonials-section h2 {
   	 text-align: center;
   font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonials-grid {
       display    :    grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card{
   background: #f8f9fa;
   padding: 2rem;
   border-radius: 10px;
   border-left: 4px solid #667eea;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 1rem;
  font-style: italic;
   color: #555;
	margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author

{
  margin-top: 1.5rem;
    border-top: 1px solid #ddd;
	 padding-top: 1rem;
}

.author-name		{
   font-weight: 600;
   color: #1a1a1a;
    margin-bottom: 0.25rem;


}

.author-title {
   color: #999;
	font-size: 0.9rem;
  margin: 0;
}

.faq-section {
    background: #f8f9fa;
    padding     :        4rem 2rem;
}

.faq-section h2     {
   text-align  :   center;
   font-size: 2.2rem;
    margin-bottom: 3rem;
	color: #1a1a1a;
}

.faq-container {
   max-width:        800px;
   margin: 0 auto;
}

.faq-item {
  background: white;
	margin-bottom: 1.5rem;
  border-radius: 8px;
   overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
     }

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-question  
  {
	padding: 1.5rem;
  background: white;
	cursor :  pointer;
   font-size: 1.1rem;
   color: #1a1a1a;
    display: flex;
   justify-content: space-between;
  align-items: center;
  margin: 0;
   transition: all 0.3s ease;
}

.faq-question:hover {
  color: #667eea;
	background: #f8f9fa;
}

.faq-question:after {
  content: "+";
   font-size: 1.5rem;
    font-weight   :   700;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
                    background: #f8f9fa;
   color: #667eea;
}

.faq-item.active .faq-question:after {
  transform: rotate(45deg);
}

.faq-answer {
   margin: 0;
  overflow: hidden;
                    max-height: 0;
          padding: 0 1.5rem;
  color   :     #555;
   transition: max-height 0.3s ease;
  line-height :       1.7;
}

.faq-item.active .faq-answer {
   padding:        0 1.5rem 1.5rem;
   max-height: 500px;
}

.cta-section-services {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%); 
	  color: white; 
	    padding: 3.5rem 2rem; 
						text-align: center; 
	    margin: 4rem 0;

}

.cta-section-services h2 {
       color: white;
	font-size: 2rem;
  margin-bottom     :       1rem;
}



.cta-section-services p {
    font-size: 1.1rem;

		margin-bottom: 1.5rem;

	  color: rgba(255, 255, 255, 0.95);
}

.cta-link-btn   {
  display:        inline-block;
    background: white;
    color :       #764ba2;
  padding: 1rem 2.8rem;
   border-radius: 8px;
  font-weight: 600;
	text-decoration: none;
        transition: all 0.3s ease;
}

.cta-link-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.thankyou-section {
  min-height: calc(100vh - 300px);
  display: flex;
   align-items: center;
    justify-content: center;
    padding  :  3rem 2rem;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%); 
	
}

.thankyou-container 
 {
    background     : white;
    padding: 3rem;
          border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    max-width: 600px;
				 text-align: center;
  opacity   :       1;
  transform: translateY(0);
}

.thankyou-icon {

   margin-bottom    :        1.5rem;
     }

.thankyou-icon img {

  width: 80px;
   height: 80px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); 
	


}

.thankyou-container h1 {
               font-size :    2.2rem;
      color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.thankyou-subtitle {
	font-size: 1.2rem;
   color: #667eea;
   margin-bottom: 1.5rem;
} 

.thankyou-message {
  background: #f8f9fa;
          padding :     1.5rem;
  border-radius: 8px;
   margin-bottom: 2rem;
   text-align: left;
}

.thankyou-message p {
	color: #555;
   line-height  :   1.7;
    margin-bottom: 0.8rem;
}

.message-highlight {
	font-weight: 600;
   color: #667eea;
       text-align: center;
}

.next-steps {
   margin: 2.5rem 0;
   text-align: left;
} 

.next-steps h2 {
  font-size: 1.5rem;
   color: #1a1a1a;
    text-align: center;
   margin-bottom: 1.5rem;
}

.steps-grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step-item {
    background: #f8f9fa;
  padding: 1.5rem;
   border-radius: 8px;
  text-align: center;
} 

.step-number {
          width  :       40px;
    height: 40px;
   background: #667eea;
  color:       white;
    border-radius :     50%;
   display: flex;
   align-items: center;
 justify-content: center;
		 font-weight: 700;
  margin: 0 auto 1rem;
     font-size: 1.2rem;
}

.step-item h3 {
  color: #1a1a1a;
   margin-bottom: 0.5rem;
  font-size :   1rem;
}

.step-item p {
  color: #555;
    font-size: 0.9rem;
    margin     :      0;
}

.thankyou-actions {

	display: flex;

	          gap: 1rem;

	   margin :        2rem 0;

	  flex-wrap: wrap;

	    justify-content: center;

}

.action-btn {
  padding    :   1rem 2rem;
   border-radius     :   8px;
    font-weight: 600;
    text-decoration: none;
          transition: all 0.3s ease;
  display: inline-block;
}

.primary-btn {
   background: #667eea;
  color: white;
}

.primary-btn:hover    {
   background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

.secondary-btn {
  background: white;
   color: #667eea;
   border: 2px solid #667eea;
}

.secondary-btn:hover {
   background: #667eea;
    color:   white;
  transform: translateY(-2px);
}

.additional-info {
  background: #e8eef9;
	 padding: 1.5rem;
   border-radius:      8px;
   margin-top   :       2rem;
}

.additional-info h3 {
  color     :  #1a1a1a;
    margin-bottom: 0.8rem;
}

.additional-info p {
  color    :        #555; 
	   margin-bottom   :     0.5rem;
}

.info-text {
               color: #999;
  font-size: 0.9rem;
}

.suggested-services    {

	    padding: 4rem 2rem;
   background: #f8f9fa;
  max-width: 1200px;
   margin: 0 auto;
     }

.suggested-services h2 {
  text-align: center;
  font-size: 2rem;
    margin-bottom: 2rem;
  color: #1a1a1a;
}

.services-suggestion-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-suggestion-card {
   background: white;
   padding: 1.5rem;
	border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
          transition: all 0.3s ease;
}

.service-suggestion-card:hover {
  transform: translateY(-3px); 
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.service-suggestion-card h3	{
    color: #667eea;
  margin-bottom: 0.5rem;
}

.service-suggestion-card p {
                    color: #555;

	 font-size: 0.95rem;

  margin-bottom: 1rem;
}

.suggestion-link
{
   color: #667eea;
    font-weight: 600;
      text-decoration: none;
    transition: color 0.3s ease;
}

.suggestion-link:hover {
     color: #764ba2;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
        text-align: center;
    }
}.policySection {

  padding: 80px 2rem;
    background   :       #f8f9fa;
	}

.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;
    }
}