.carousel-wrapper {
   position: relative;
       overflow: hidden;
    width:        100%;
  max-width   :  1180px;
  margin: 0 auto;}

.carousel-track {
               display: flex;
         transition: transform 0.5s ease-in-out;
    -webkit-transition:     transform 0.5s ease-in-out;
   -moz-transition: transform 0.5s ease-in-out;
}

.carousel-slide {
	min-width: 100%;
    box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
	height: auto;
	display: block;
}

.carousel-controls {
   position: absolute;
	top: 50%;
       width: 100%;
    display   :       flex;
     justify-content: space-between;
  transform: translateY(-50%);
   pointer-events: none;
	
}

.carousel-btn   {

	   pointer-events: all;
  background: rgba(255,255,255,0.85);
 border:    none;
		 width: 48px;
	 height : 48px;
    border-radius: 50%;
 cursor: pointer;
  display: flex;
    align-items: center;
  justify-content :   center;
          transition: background 0.25s;
	margin    :       0 16px;


}

.carousel-btn:hover {

  background: rgba(255,255,255,0.95);
	}

.carousel-btn:before {
  content: '';
    width: 12px;
			height    :12px;
   border-top: 2px solid #2a2a2a;
	 border-right: 2px solid #2a2a2a;
}

.carousel-prev:before     {
  transform: rotate(-135deg);
    margin-left: 4px;
}

.carousel-next:before {
  transform: rotate(45deg);
   margin-right: 4px;
}

.carousel-indicators {
   position: absolute;
    bottom: 20px;
   left: 50%;
  transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.carousel-indicator {
	width: 10px;
   height: 10px;
    border-radius    : 50%;
  background: rgba(255,255,255,0.5);
    border    :   none;
	cursor: pointer;
	transition: background 0.25s;
}

.carousel-indicator.active  {
  background: rgba(255,255,255,0.95); 

}@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
        margin: 0 8px;
    }
    
    .carousel-btn:before {
        width: 10px;
        height: 10px;
    }
}.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;
    }
}.services-hero {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
		color: white;
    padding: 95px 24px 85px;
               text-align: center;
} 

.hero-text h1 {
   font-size  :    48px;
    margin-bottom: 22px;
       font-weight: 700;
}

.hero-text p {

	  font-size: 19px;
  max-width: 780px;
   margin: 0 auto;
    opacity: 0.95;

}

.services-overview {
    padding: 85px 24px;
		 background: white;
}



.overview-container
	{
  max-width: 1280px;
   margin: 0 auto;
}


.intro-text {
	  margin-bottom: 65px;
         text-align: center;
     }

.intro-text h2 {
    font-size: 38px;

	    margin-bottom: 18px;

		color: #1a1a1a; 
	
}

.intro-text p {
    font-size: 18px;
  color: #5a5a5a;
   max-width: 820px;
  margin: 0 auto;
	}

.service-cards {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
	}

.service-card	{

	  background: #f9f9f9;
         border-radius: 14px;
   padding: 38px;
  transition: transform 0.3s, box-shadow 0.3s;
   position: relative;
  border: 2px solid transparent;
	}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.service-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	border-color: #667eea;
}

.popular-badge {
   position: absolute;
	top: -12px;
          right: 24px;
  background: #f5576c;
	color: white;
 padding: 6px 18px;
  border-radius :20px;
	font-size: 13px;
    font-weight     :      600;
}

.card-header {
  margin-bottom: 24px;
      padding-bottom :20px;
  border-bottom: 2px solid rgba(0,0,0,0.1);
}

.service-card.featured .card-header
{
  border-bottom-color: rgba(255,255,255,0.3);
}

.card-header h3 {
     font-size: 26px;
    margin-bottom: 12px; 

}

.price-tag {

    font-size: 22px;

		font-weight: 700;

	   color: #667eea;
	}

.service-card.featured .price-tag {
    color: white;
}


.card-body p {
  margin-bottom: 24px;
   line-height: 1.7; 
	
}

.benefits-list {
   list-style: none;
  padding: 0;
}

.benefits-list li {
   padding  :  10px 0;
   padding-left: 28px;
    position: relative;
  font-size: 15.5px;
}

.benefits-list li:before     {
  content: '✓';
    position: absolute;
    left: 0;
      color: #667eea;
  font-weight    :      700;
    font-size: 18px;
}

.service-card.featured .benefits-list li:before {
    color :     white;
}

.process-section {
	    background: #f5f5f5;
   padding: 85px 24px;


}

.process-container   {
      max-width: 1180px;

   margin: 0 auto;

  text-align: center;



}

.process-container h2 {
   font-size: 38px;
   margin-bottom: 16px;
    color   : #1a1a1a;
}

.process-intro
	{
	         font-size: 18px;
  color: #5a5a5a;
  margin-bottom: 55px;

} 

.process-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
}

.step-item {
   background: white;
    padding: 35px 28px;
	border-radius   :     12px;
   transition: transform 0.3s;
}

.step-item:hover {
  transform: translateY(-6px);
}

.step-number {
   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: 24px;
   font-weight: 700;
  margin: 0 auto 22px; 

}

.step-item h3 {
  font-size: 20px;
  margin-bottom: 14px;
    color: #2a2a2a;
}

.step-item p {
  font-size: 15px;
    color  :        #5a5a5a;
	 line-height: 1.6;
}

.testimonial-area {
	padding     :  85px 24px;
 background   :    white; 
	
}

.testimonial-wrapper {
         max-width: 1180px;
   margin     :   0 auto;


}

.testimonial-wrapper h2
{
   font-size: 38px;
  color: #1a1a1a;
   margin-bottom: 55px;
    text-align: center; 

}

.testimonial-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 32px;
}

.testimonial-box {
      border-left: 4px solid #667eea;
    border-radius     : 14px;
   background: #f9f9f9;
	 padding: 38px;
     }

.quote-text {
     font-size: 16.5px;
    line-height: 1.8;
    color: #3a3a3a;
	 margin-bottom: 24px;
  font-style: italic;
}

.author-info {

	    border-top: 1px solid #e0e0e0;
   padding-top: 18px;}

.author-name {
  font-weight: 600;

                    color:   #2a2a2a;

     margin-bottom: 4px;
}

.author-role {
  font-size    :      14px;
  color     :     #7a7a7a;
}

.cta-banner {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); 
	  padding: 85px 24px; 
	    text-align:       center;
}

.cta-content h2 {
    font-size: 42px;
   color: white;
    margin-bottom: 18px;
}

.cta-content p {
  font-size: 19px;
               color: white;
     margin-bottom    :       32px;
  max-width  : 720px;
        margin-left: auto;
    margin-right: auto;
}

.cta-btn-primary {
  display: inline-block;
   background: white;
         color: #f5576c;
   padding: 16px 48px;
   text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
   font-size: 17px;
  transition: transform 0.2s, box-shadow 0.2s;


}

.cta-btn-primary:hover {

	  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);}

.thankyou-main {
	   padding  :      95px 24px;
  min-height: calc(100vh - 400px);
   background: white;
}

.thankyou-container{
  max-width: 820px;
               margin: 0 auto;
  text-align: center;
}

.success-icon	{
	margin-bottom: 38px;}

.checkmark-circle {
	width     :   100px;
     height: 100px;
     background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
     border-radius: 50%;
                  margin: 0 auto;
     display     : flex;
     align-items: center;
       justify-content: center;
       animation :  scaleIn 0.5s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}.checkmark 
 {
  width: 35px;
	height: 60px;
    border  :  solid white;
         border-width: 0 5px 5px 0;
  transform: rotate(45deg);
    margin-bottom: 12px; 

}

.thankyou-container h1 {


   font-size  :       42px;
    color    :  #1a1a1a;
    margin-bottom: 24px;}

.confirmation-text {
    font-size: 18px;
   color     :    #5a5a5a;
  line-height: 1.8;
	margin-bottom: 55px;
}

.next-steps {
  background: #f9f9f9;
    padding: 45px 38px;
	 border-radius: 14px;
   margin-bottom: 45px;
  text-align: left;

}

.next-steps h2 {
   font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 32px;
   text-align: center;
}

.steps-list {
    display     :     flex;
    flex-direction: column;
   gap: 28px;
}

.step-element {
   display: flex;
   gap: 22px;
	align-items  :    flex-start;
}

.step-icon {
        width: 45px;
   height: 45px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   border-radius: 50%;
    display :      flex;
	align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
    flex-shrink: 0;
}

.step-text h3 {
  font-size    : 19px;
  color :#2a2a2a;
  margin-bottom:8px;
}

.step-text p {
   font-size: 15.5px;
    color: #5a5a5a;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
    gap: 18px;
    justify-content: center;
   margin-bottom: 38px;
	 flex-wrap: wrap;
}

.btn-home,
.btn-services  
  {
	display: inline-block;
   padding: 14px 38px;
  text-decoration: none;
  border-radius: 8px;
	font-weight: 600;
   font-size     :      16px;
    transition: transform 0.2s;
}

.btn-home {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	  color: white;
}

.btn-services {
  border: 2px solid #667eea;
   background: white;
     color: #667eea; 

}

.btn-home:hover,
.btn-services:hover

{
  transform: translateY(-2px);
}


.additional-info {

	  padding-top: 32px;
    border-top    :      1px solid #e0e0e0;
}

.additional-info p {
	    font-size: 15px;
    line-height: 1.7;
   color:    #7a7a7a;
	}@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 34px;
    }

    .services-hero {
        padding: 75px 24px 65px;
    }

    .intro-text h2,
    .process-container h2,
    .testimonial-wrapper h2 {
        font-size: 30px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-container h1 {
        font-size: 32px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .btn-home,
    .btn-services {
        width: 100%;
        text-align: center;
    }

    .step-element {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .next-steps {
        padding: 32px 24px;
    }
}