*

{
    margin: 0;
  padding: 0;
    box-sizing  :    border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
   line-height: 1.6;
	 color: #2c3e50;
      background: #ffffff;
}

svg defs {
  position: absolute;
}

.main-navigation  {
  background: #ffffff;
   padding: 1.2rem 0;
    position: sticky;
   top :     0;
    z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease; 

}

.main-navigation.scrolled {
	    padding: 0.8rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	}

.nav-wrapper
	{
   max-width: 1200px;
    margin: 0 auto;
       padding     :  0 20px;
    display: flex;
	 justify-content: space-between;
    align-items: center;
}

.brand-section .site-logo {
		height: 45px;
    width: auto;
	}

.nav-links {
  display: flex;
   gap: 2rem;
  align-items: center;
}

.nav-item {
  color: #2c3e50;
	 text-decoration: none;
  font-weight: 500;
   transition: color 0.3s;
    font-size: 15px;
}

.nav-item:hover {
   color: #667eea;
}

.nav-item.active {
   color: #667eea;
}

.cta-nav {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
    padding: 0.6rem 1.5rem;
      border-radius :     6px;}

.cta-nav:hover
	{
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.mobile-toggle  
  {
   padding: 0.5rem;
	display: none;
    background     :      none;
    cursor: pointer;
	 border: none;
}

.burger-icon     {
                    fill: none;
	height: 28px;
  width:    28px;
	stroke-width: 2;
	stroke: #2c3e50;
   stroke-linecap: round;
}

.hero-section {
	 padding     : 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content-wrap {
   max-width: 1200px;
	margin: 0 auto;
	display: grid;
  grid-template-columns: 1fr 1fr;
          gap  :    60px;
          align-items: center;
}

.main-headline {
   font-size: 3rem;
  font-weight: 700;
       color: #1a202c;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  color: #4a5568;
    margin-bottom:2rem;
}  

.hero-actions {
   display: flex;
  gap: 1rem;

}

.primary-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
   padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
     font-weight     :        600;
  transition:       all 0.3s;
    display: inline-block;


}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}  

.secondary-btn {
    background: white;
   color     :    #667eea;
   padding: 1rem 2rem;
	 border-radius: 8px;
  text-decoration  :      none;
    font-weight  :  600;
    border: 2px solid #667eea;
   transition: all 0.3s;
    display: inline-block;
}

.secondary-btn:hover {
	background: #667eea;
	 color:    white;
     }

.hero-image {
   width: 100%;
   border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.benefits-section {
  padding:    80px 20px;

	    background: white;
}

.section-container {
    max-width: 1200px;
  margin: 0 auto;
}

.section-title {
   font-size: 2.5rem;
    text-align   :    center;
    margin-bottom: 1rem;
	 color: #1a202c;
}

.section-intro {
  text-align: center;
   font-size: 1.1rem;
	color :        #718096;
  margin-bottom:  3rem;
}

.benefits-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 30px;
}

.benefit-card {
   padding :      2rem;
    background: #f7fafc;
  border-radius: 12px;
   transition: all 0.3s;
   opacity: 0;
  transform: translateY(20px);
	
}

.benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.icon-holder {
  height: 60px;
      margin-bottom: 1.5rem;
   width: 60px;
}

.benefit-icon {

  width: 100%;
    height: 100%;
			stroke: #667eea;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin :     round;
     }

.benefit-title {
  font-size: 1.3rem;
      margin-bottom    :   0.8rem;
   color: #2d3748;


}

.benefit-text {

    color: #718096;
	line-height: 1.7;
	
}

.about-section {
   	 padding: 80px 20px;
		 background: #f7fafc;
	}

.about-wrapper {
	grid-template-columns: 1fr 1fr;
  display: grid;
   align-items: center;
  margin: 0 auto;
          gap: 60px;
   max-width: 1200px;
}

.about-img {
   width: 100%;
   border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-heading {
        font-size: 2.3rem;
   margin-bottom: 1.5rem;
   color: #1a202c;
}

.about-paragraph {
    color: #4a5568;
       margin-bottom: 1.2rem;
    font-size: 1.05rem;
   line-height: 1.8;
}

.stats-row


{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat-item {
   text-align: center;
} 

.stat-number {


    font-size: 2.5rem;
 font-weight: 700;
   color  :     #667eea;
    margin-bottom: 0.5rem;
	}

.stat-label 
 {
  color: #718096;
         font-size: 0.9rem;
}

.services-preview {
    padding:       80px 20px;
  background: white;
}

.services-container {
	     max-width: 1200px;
   margin: 0 auto;
	}

.services-headline {
   font-size     :  2.5rem;
   text-align     :       center;
    margin-bottom: 1rem;
    color: #1a202c;
}

.services-subheadline {
    text-align: center;
    font-size: 1.1rem;
   color: #718096;
  margin-bottom: 3rem;
}

.services-layout {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.service-box
	{
  padding: 2.5rem;
     background  : #f7fafc;
      border-radius:      12px;
       position: relative;
     transition: all 0.3s;
      border:       2px solid transparent;
           opacity:       0;
     transform: translateY(20px);
}

.service-box.visible{
   opacity: 1;
  transform: translateY(0);
}

.service-box:hover {
  border-color     :        #667eea; 
  transform: translateY(-5px); 
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.service-box.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.featured-badge {
   	position: absolute;
  top: 20px;
   right: 20px;
  background: rgba(255,255,255,0.2);
   padding: 0.3rem 0.8rem;
     border-radius: 20px;
  font-size  :        0.85rem;
    font-weight: 600;
	}

.service-icon-wrap {
    width    :    50px;
    height: 50px;
   margin-bottom  :  1.5rem;
}

.service-icon {
  width: 100%;
			height:      100%;
   stroke     :   #667eea;
    fill: none;
   stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.featured .service-icon  {
        stroke: white;

}

.service-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.featured .service-name,
.featured .service-description,
.featured .service-features {
 color: white;
}

.service-description {
   color: #4a5568;
  margin-bottom: 1.5rem;
 line-height: 1.7;
}

.service-features {
  list-style: none;
   padding: 0;
}  

.service-features li {
  padding: 0.5rem 0;
    color: #718096;
    position :      relative;
  padding-left: 1.5rem;
}



.service-features li:before {
     content: "✓";
  position: absolute;
    left: 0;
   color: #667eea;
   font-weight: 700;
}

.featured .service-features li 
 {
	  color: rgba(255,255,255,0.9);


}

.featured .service-features li:before {

    color     :        white;}


.services-cta-wrap {
   text-align: center;
}

.services-cta-btn {
  display: inline-block; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	   color: white; 
	    padding: 1rem 2.5rem; 
	   border-radius: 8px; 
	     text-decoration: none; 
	    font-weight : 600; 
	  transition: all 0.3s;
}

.services-cta-btn:hover

{
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);


}

.cta-banner 
 {
    padding: 60px 20px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
}

.cta-content-wrapper {
                    max-width: 1200px;
	margin  :0 auto;
    display: flex;
   justify-content: space-between;
     align-items: center;
  gap: 40px;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.cta-message {
    font-size: 1.1rem;
  opacity: 0.95;
}

.cta-action-btn		{
    background   : white;
    color: #667eea;
  padding: 1rem 2rem;
        border-radius    :8px;
               text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
   display: inline-block;
  white-space :    nowrap;
}

.cta-action-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.approach-section {
      padding: 80px 20px; 
		 background: #f7fafc;
     }


.approach-container {
  max-width: 1200px;
	 margin: 0 auto;
}

.approach-title {
        font-size: 2.5rem;
   text-align: center;
    margin-bottom: 3rem;
  color  :       #1a202c;
}

.approach-grid  {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px; 
	
}

.approach-step {
    padding: 2rem;
   background: white;
      border-radius: 12px;
   transition  :       all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.approach-step.visible {
   opacity    :       1;
  transform: translateY(0);
}

.approach-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.step-number {
	    font-size     :3rem;
   font-weight: 700;
  color: #667eea;
	opacity: 0.3;
  margin-bottom:   1rem;
     }

.step-title {
    color: #2d3748;
   margin-bottom: 1rem;
  font-size: 1.4rem;
	
}

.step-description{
   color: #718096;
  line-height: 1.7;
}

.testimonials-section {
  padding: 80px 20px;
   background: white;
}

.testimonials-wrap {


    max-width     :  900px;
  margin: 0 auto;
	}

.testimonials-heading {
	font-size: 2.5rem;
                    text-align: center;
    margin-bottom   : 3rem;
   color: #1a202c;
} 

.testimonials-slider {


    position    :   relative;
		min-height: 300px; 

}

.testimonial-item {
   display: none;
   transition: opacity 0.5s ease;
}

.testimonial-content {
    background: #f7fafc;
    padding: 3rem;
  border-radius: 12px;
   text-align: center;
}

.testimonial-text     {
  font-size: 1.2rem;
	font-style    :        italic;
   color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author 
 {
   margin-top     :     2rem;
}

.author-name {
    font-weight: 700;
    color: #2d3748;
  font-size: 1.1rem;
}

.author-role {
	color :      #718096;
			font-size: 0.95rem;
}

.image-showcase {
	 padding    :    80px 20px;
   background:       #f7fafc;
}

.showcase-wrapper {


   max-width: 1200px;
  margin:0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	 gap: 30px;
     }

.showcase-image {
         width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: all 0.3s;
}

.showcase-image:hover {

	  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
	}  

.contact-section	{
  padding:        80px 20px;
  background: white;
     }

.contact-container  
  {
    max-width: 1200px;
  margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-heading {
    font-size: 2.3rem;
   margin-bottom: 1rem;
  color  :   #1a202c;


}

.contact-intro {
    color: #4a5568;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
   line-height: 1.7;


}

.contact-details {
	display: flex;
                    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
   display :      flex;
  gap  :   1.5rem;
   align-items: flex-start;
}

.detail-icon-wrap {
    width: 40px;
   height: 40px;
    flex-shrink: 0;
}

.detail-icon {
 width: 100%;
    height: 100%;
	stroke: #667eea;
   fill   :      none;
    stroke-width: 2;
   stroke-linecap: round;
   stroke-linejoin: round;
}

.detail-label {
   font-weight     :        600;
  color: #2d3748;
          margin-bottom: 0.3rem;
}

.detail-value {
  color: #4a5568; 
	  line-height: 1.6;
}

.contact-form {
   background: #f7fafc;
  padding: 2.5rem;
   border-radius: 12px;
}

.form-row {
	margin-bottom: 1.5rem;
}

.form-group   {
   display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 0.5rem;
   font-weight: 600;
   color: #2d3748;
}

.form-input,
.form-select,
.form-textarea {
   padding: 0.8rem;
    border: 2px solid #e2e8f0;
  border-radius : 6px;
  font-size: 1rem;
    font-family: inherit;
   transition   :     all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
   outline: none;
    border-color  : #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
  resize: vertical;
   min-height: 120px;
}

.form-submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	               color: white;
	  padding:       1rem 2.5rem;
	  border: none;
	   border-radius: 8px;
	   font-size: 1rem;
	   font-weight: 600;
	    cursor   : pointer;
	   transition: all 0.3s;
	    width: 100%;
} 

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.site-footer {
    background  :   #1a202c;
    color: #cbd5e0;
	padding: 60px 20px 20px;
}

.footer-main


{
       max-width: 1200px;
  margin  : 0 auto;
  display: grid;
     grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
       margin-bottom :        3rem; 
	
}

.footer-logo {
   height: 40px;
   margin-bottom: 1.5rem;
	
}

.footer-description {
  color   :    #a0aec0;
   line-height: 1.7;
  font-size: 0.95rem;
}

.footer-heading {
    color: white;
   margin-bottom   :       1.2rem;
    font-size: 1.1rem;


}



.footer-links {
       list-style: none;
               padding: 0;
}

.footer-links li {
   margin-bottom: 0.8rem;
}

.footer-links a {
	color: #a0aec0;
   text-decoration: none;
   transition: color 0.3s;
}

.footer-links a:hover {
   color: #667eea;
}

.footer-contact		{
       list-style: none;
          padding: 0;}



.footer-contact li {
  color: #a0aec0;
  margin-bottom: 0.5rem;
}

.footer-bottom {
    max-width: 1200px;
   margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #2d3748;
   text-align: center;
}

.copyright{
   font-size: 0.9rem;

  color: #718096;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-content-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-headline {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
    }
    
    .cta-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .primary-btn,
    .secondary-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}.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;
    }
}.page-header-section {
    padding: 100px 20px 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	 text-align: center; 
	
}

.page-header-content {
   max-width: 800px;
    margin: 0 auto;
}

.page-main-title {
   font-size  :3rem;
    margin-bottom: 1rem;
        font-weight: 700;
}

.page-subtitle {
       font-size: 1.3rem;
	      opacity: 0.95;
}

.services-detailed-section {
	padding    : 80px 20px;
   background: white;
}

.services-detailed-container {
	 max-width: 1200px;

  margin: 0 auto;

    display: flex;

   flex-direction: column;

   gap   :     60px;
}

.service-detail-card {
   display: grid;
  grid-template-columns: 1fr 1.2fr;
	gap: 50px;
   align-items: center;
  padding: 40px;
  background: #f7fafc;
    border-radius: 16px;
	 transition: all 0.3s;
}

.service-detail-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.service-detail-card.reverse{

	  grid-template-columns: 1.2fr 1fr; 



}

.service-detail-card.reverse .service-detail-image {
	order: 2;
}

.service-detail-card.reverse .service-detail-content   {
   order: 1;
}

.detail-img {
    width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-category  {
  display: inline-block;
         padding: 0.4rem 1rem;
  background: #e0e7ff;
         color :#667eea;
   border-radius: 20px;
	font-size: 0.85rem;
    font-weight: 600;
  margin-bottom: 1rem;
	
}



.service-category.popular {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color :   white;
}

.service-detail-title  {
   color: #1a202c;
   margin-bottom: 1rem;
  font-size: 2rem;
}


.service-detail-description {
   color  :   #4a5568;
    line-height: 1.8;
  margin-bottom: 2rem;
	font-size: 1.05rem;
} 

.service-features-list {
   display :flex;
     flex-direction: column;
   	gap: 1rem;
   	margin-bottom: 2rem;


}

.feature-item {
	   display: flex;
  align-items: flex-start;
    gap: 0.8rem;
     }

.feature-icon {
    width: 24px;
  height: 24px;
	 flex-shrink: 0;
  stroke: #667eea;
  fill: none;
   stroke-width: 2.5;
     stroke-linecap: round;
   stroke-linejoin: round;
    margin-top: 2px;
}

.feature-item span {
    line-height: 1.6;
	 color: #2d3748;

}

.service-detail-footer {
	display: flex;
  justify-content: space-between;
  align-items    :   center;
   padding-top: 1.5rem;
   border-top: 2px solid #e2e8f0;
}

.service-duration {
    color :      #718096;
   font-weight: 600;
}

.service-cta-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 0.9rem 2rem;
  border-radius: 8px;
   text-decoration   :        none;
                    font-weight: 600;
    transition    :        all 0.3s;
    display: inline-block;
}

.service-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.comparison-section {


    padding :       80px 20px;
   background: #f7fafc;
	}

.comparison-wrapper
{
          max-width: 1200px;
      margin: 0 auto;
}

.comparison-heading {
  font-size     :       2.5rem;

  text-align: center;

          margin-bottom: 1rem;

   color: #1a202c;
}

.comparison-intro {
	 text-align: center;
    font-size: 1.1rem;
  color: #718096;
        margin-bottom: 3rem;
}

.comparison-table-container {

    overflow-x: auto;


}



.comparison-table {
	               width: 100%;
	border-collapse: collapse;
   background     :        white;
    border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.comparison-table thead {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.comparison-table th {

	 padding: 1.2rem;
    text-align: left;
  font-weight   :600;
  font-size: 1.05rem;
}

.comparison-table td {

	    padding: 1.2rem;
   border-bottom: 1px solid #e2e8f0;
}

.comparison-table tbody tr:last-child td  {
	   border-bottom: none;
	}

.feature-col    {
	font-weight: 600;
    color   :      #2d3748;
}

.highlighted-col {


   background    :#f0f4ff;

}

.comparison-table tbody tr:hover


{
   background: #f7fafc;
}

.process-section {
	padding: 80px 20px;
    background: white;
}  

.process-container {
  margin: 0 auto;
    max-width: 1000px;
}

.process-title  {
    color: #1a202c;
	 margin-bottom    :     3rem;
   text-align: center;
   font-size: 2.5rem;
}

.process-timeline {
   display: flex;
   flex-direction: column;
  gap: 0;
}

.timeline-item {
	    display: grid;
  grid-template-columns: 80px 1fr;
   gap   : 2rem;
    align-items: start;

}

.timeline-marker		{
   width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  border-radius: 50%;
  display :flex;
  align-items     :       center;
  justify-content: center;
        font-size: 1.5rem;
  font-weight    :      700;
   flex-shrink:      0;
}

.timeline-content {
    padding-bottom: 2rem;
}

.timeline-heading {


    font-size: 1.4rem;
    color: #2d3748;
  margin-bottom:        0.8rem;

}

.timeline-text {
  color :       #718096;
	line-height: 1.7;
}

.timeline-connector {
                    width: 3px;
   height    :     40px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    margin-left: 28.5px;
} 

.faq-section {
   padding: 80px 20px;
    background: #f7fafc;
}

.faq-container {
	  max-width: 1200px;
	 margin: 0 auto;
     }

.faq-title {


    font-size: 2.5rem; 
  text-align: center; 
  margin-bottom: 3rem; 
        color  :      #1a202c;

     }

.faq-grid
{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.faq-item {
	background     :      white;
  padding: 2rem;
   border-radius:     12px;
   transition     :        all 0.3s;
}

.faq-item:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.faq-question {
	font-size: 1.2rem; 
  color: #2d3748; 
   margin-bottom: 1rem;
	
}

.faq-answer	{
    color: #718096;
      line-height     :     1.7;
}

.final-cta-section {
    padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-heading    {
                    font-size: 2.5rem; 
   margin-bottom: 1rem;
}

.final-cta-text {
  font-size: 1.2rem;
    margin-bottom: 2rem;
  opacity: 0.95;
}

.final-cta-btn {
       background : white;
               color  :      #667eea;
   padding: 1.2rem 2.5rem;
   border-radius: 8px;
   text-decoration: none;
    font-weight: 600;
  display: inline-block;
  transition  :       all 0.3s;

}

.final-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.thankyou-hero	{
    padding: 100px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   min-height  :   60vh;
    display: flex;
    align-items: center;
}

.thankyou-content-wrap {
   max-width  : 800px;
   margin: 0 auto;
	text-align: center;
}

.success-icon-wrapper
	{

	  width    :        100px;
    height: 100px;
    margin: 0 auto 2rem;
   background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
		 justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);}

.success-checkmark {
    width: 60px;
   height: 60px;
	 stroke: #10b981;
  fill: none;
   stroke-width:   3;
  stroke-linecap: round;
  stroke-linejoin   :  round;
}

.thankyou-title {
  font-size :     2.8rem;
   color: #1a202c;
    margin-bottom  :      1rem;
     }

.thankyou-message	{
      font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 3rem;
  line-height: 1.7; 

}

.thankyou-info-box {

		background: white;
   padding  :    2.5rem;
	 border-radius: 12px;
	margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align     :     left;

}

.info-box-heading {


    font-size: 1.8rem;
    color: #2d3748;
  margin-bottom: 2rem;
   text-align: center;
     }

.info-steps {

	  display: flex;
	 flex-direction: column;
   gap: 2rem;
	}

.info-step {
         display: flex;
   gap: 1.5rem;
  align-items: flex-start; 


}

.step-icon-wrap {
    display: flex;
    border-radius: 10px;
   width    :      50px;
   height: 50px;
  flex-shrink: 0;
  background: #e0e7ff;
  align-items: center;
	justify-content: center;
}

.step-icon {
   width: 28px;
   height: 28px;
  stroke: #667eea;
  fill: none;
	 stroke-width: 2;
	 stroke-linecap: round;
    stroke-linejoin: round;
} 

.step-text {

	          flex: 1;

}

.step-title {
			font-size: 1.2rem;
   color: #2d3748;
       margin-bottom: 0.5rem;
}

.step-description {
  color: #718096;
                    line-height: 1.6;
}

.thankyou-actions {
   display: flex;
   gap: 1rem;
   justify-content: center;
}

.btn-primary-ty {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 1rem 2rem;
        border-radius: 8px;
    text-decoration:    none;
  font-weight: 600;
    transition: all 0.3s;
                    display: inline-block;
     }

.btn-primary-ty:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary-ty {
  background: white;
	   color: #667eea;
	  padding: 1rem 2rem;
	  border-radius: 8px;
	     text-decoration: none;
		 font-weight: 600;
	  border: 2px solid #667eea;
	    transition: all 0.3s;
	  display: inline-block;
}

.btn-secondary-ty:hover

{
  background: #667eea;
    color  :      white;
}

.resources-section {
      padding: 80px 20px;
     background: white;
}

.resources-wrapper {
    max-width: 1200px;
   margin: 0 auto;
}

.resources-heading {
  font-size: 2.5rem;
      text-align: center;
       margin-bottom: 1rem;
      color: #1a202c;
}

.resources-intro {
   text-align: center;
   font-size: 1.1rem;
   color : #718096;
  margin-bottom: 3rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.resource-card


{
  background: #f7fafc;
   padding    :      2rem;
   border-radius: 12px;
        text-align: center;
  transition    : all 0.3s;
}

.resource-card:hover {
     transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);}

.resource-icon-box {

	  width: 70px;
  height: 70px;
    margin: 0 auto 1.5rem;
   background: white;
  border-radius: 12px;
  display: flex;
    align-items: center;
    justify-content    :center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.resource-icon {
               width: 35px;
	    height    :      35px;
	        stroke: #667eea;
	   fill: none;
	  stroke-width:   2;
	    stroke-linecap: round;
	   stroke-linejoin: round;

}

.resource-title {
  font-size: 1.3rem;
    color: #2d3748;
  margin-bottom     :  1rem;
}

.resource-description {
  color: #718096;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.resource-link {
   color: #667eea;
   text-decoration: none;
  font-weight: 600;
   transition: color 0.3s;
}

.resource-link:hover {
   color    :     #764ba2;
}

.contact-info-section {
   padding: 80px 20px;
   background: #f7fafc;
	}

.contact-info-wrapper  {
	  max-width     :    900px;
  margin:    0 auto;
	 text-align: center;

}

.contact-info-heading {
	   font-size: 2.3rem;
    color: #1a202c;
    margin-bottom: 1rem;



}

.contact-info-text {
    font-size: 1.1rem;

	       color    :#718096;

	    margin-bottom: 3rem;
}

.contact-methods {
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
} 

.contact-method {
    background: white;
   padding: 2rem;
   border-radius    : 12px;
    display: flex;
  align-items: center;
   gap: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05); 

}

.method-icon-wrap {
  -moz-border-radius: 12px;
    justify-content: center;
   background: #e0e7ff;
  height: 60px;
    flex-shrink     :    0;
   -webkit-border-radius: 12px;
    border-radius: 12px;
		 width: 60px;
    display: flex;
    align-items: center;
}

.method-icon {
          width: 30px;
      height: 30px;
                  stroke:      #667eea;
       fill: none;
       stroke-width: 2;
       stroke-linecap: round;
       stroke-linejoin:   round;
}


.method-details {
  text-align  :      left;
    flex: 1;
}  

.method-label {
   font-weight: 600;

   color: #2d3748;

    margin-bottom: 0.3rem;
} 

.method-value {
      color: #4a5568;
	 font-size: 1.05rem;
}@media (max-width: 768px) {
    .page-main-title {
        font-size: 2.2rem;
    }
    
    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .service-detail-card.reverse .service-detail-image,
    .service-detail-card.reverse .service-detail-content {
        order: unset;
    }
    
    .service-detail-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }
    
    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timeline-connector {
        margin-left: 23.5px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-title {
        font-size: 2rem;
    }
    
    .thankyou-info-box {
        padding: 1.5rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .method-details {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-main-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .service-detail-title {
        font-size: 1.6rem;
    }
    
    .comparison-heading,
    .process-title,
    .faq-title,
    .final-cta-heading,
    .resources-heading,
    .contact-info-heading {
        font-size: 1.8rem;
    }
}