*

{
  margin: 0;
   padding: 0;
    box-sizing    :  border-box;
}

html {
   scroll-behavior: smooth;
}

body {

	  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
   color   :    #2c3e50;
    background-color    : #fafafa;
}

.navigation-bar {
   	 background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
       z-index: 100;
     }

.nav-container {
   max-width:     1200px;
     margin: 0 auto;
	padding: 1rem 2rem;
        display: flex;
         justify-content: space-between;
	 align-items: center;
}

.nav-logo-section {
  flex-shrink: 0;
}

.nav-logo {
  height: 40px;
   width: auto;
}  

.nav-menu {
	   display: flex;
   list-style: none;
  gap   :        2rem;
     }

.nav-link {
   text-decoration: none;
    color: #2c3e50;
   font-weight: 500;
    transition: color 0.3s ease;
   font-size: 1rem;
}

.nav-link:hover {
	color: #8b5fbf;
}

.burger-menu {
    display: none;
   flex-direction: column;
    background: none;
  border: none;
  cursor: pointer;
   gap   :   0.35rem;
}

.burger-menu span {
  width :       25px;
    height: 3px;
   background-color: #2c3e50;
    border-radius  :  2px;
          transition: all 0.3s ease;
} 

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}  

.burger-menu.active span:nth-child(2)		{
   opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
	 max-width :       1200px;
       margin: 3rem auto;
  padding: 0 2rem;
    display:        grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;

}

.hero-content h1 {
	 font-size: 2.5rem;
			line-height: 1.3;
	margin-bottom     :1.5rem;
    color: #1a2332;
    font-weight: 700;
}

.hero-content p  {
  font-size: 1.1rem;

  color: #555;

    margin-bottom   :     2rem;

  line-height     :   1.8;
}


.hero-image {
  position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #8b5fbf 0%, #6b4a9f 100%);
  color: #fff;
      text-decoration:      none;
	border-radius: 6px;
        font-weight: 600;
    transition: all 0.3s ease;
  border :        none;
    cursor: pointer;
   font-size: 1rem;
}

.cta-button:hover  {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 95, 191, 0.3);
}

.cta-button.large {
    padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

.section-container {
     max-width: 1200px;
   margin    :   0 auto;
    padding: 0 2rem;
}

.about-section {
   padding: 4rem 0;
    background-color: #fff; 

}

.about-section h2 {
       font-size: 2rem;
    text-align : center;
  margin-bottom: 3rem;
  color: #1a2332;
   font-weight     :     700; 

}

.about-grid {
  display:   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap    :       2rem;
}

.about-card {
  background: #f5f7fa;
  border: 1px solid #e8edf5;
   transition: all 0.3s ease;
      border-radius: 10px;
   padding: 2rem;
}

.about-card:hover 
 {
  transform: translateY(-5px);

  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);

  border-color: #8b5fbf;
}

.about-card img {
  width: 100%;
   height: 200px;
    object-fit   :  cover;
  border-radius: 8px;
   margin-bottom: 1.5rem;
}

.about-card h3 {
        font-size: 1.3rem;
   margin-bottom: 1rem;
 color: #2c3e50;
	font-weight: 600;
} 

.about-card p {
  color: #666;
   line-height: 1.7;
	
}

.services-preview {
       background-color: #fafafa;
    padding: 4rem 0;}

.services-preview h2 {
  font-size :    2rem;
	text-align: center;
  margin-bottom: 3rem;
  color: #1a2332;
   font-weight: 700;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2.5rem;
}

.service-item {
	 background: #fff;
   padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
   border-left: 4px solid #8b5fbf;
}

.service-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.service-item img {
    border-radius: 8px;
	object-fit: cover;
    margin-bottom: 1.5rem;
       height    : 180px;
				 width: 100%;
}

.service-item h3 {
   font-size: 1.2rem;
   margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

.service-item p {
  color: #666;
    font-size: 0.95rem;
   line-height: 1.6;
}

.value-section {


    padding: 4rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #fff 100%);
	}

.value-section h2 {
    font-size    :       2rem; 
  text-align: center; 
    margin-bottom: 3rem; 
    color: #1a2332; 
   font-weight: 700;
} 

.value-grid {
	    display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
	    gap: 2rem;
}

.value-item	{
  padding: 2rem;
  text-align     :   center;
	 background: #fff;
     border-radius: 10px;
   border: 1px solid #e8edf5;
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: #8b5fbf;
  box-shadow: 0 8px 20px rgba(139, 95, 191, 0.15);
}

.value-number {
    font-size: 2.5rem;
  font-weight: 700;
  color: #8b5fbf;
    margin-bottom: 1rem;
}

.value-item h4 {
   font-size: 1.2rem;
    margin-bottom: 1rem;
         color: #2c3e50;
   font-weight: 600;
}

.value-item p {
	                    color: #666;
    line-height: 1.7; 
	

}

.expertise-section {
   padding: 4rem 0;
  background-color: #fff;
}

.expertise-section h2 {
  font-size: 2rem;
    text-align: center;
  margin-bottom: 3rem;
    color: #1a2332;
  font-weight: 700;
}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 2rem;

}

.expertise-card {
    -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
   transition: all 0.3s ease;
   -o-transition: all 0.3s ease;
   background: #f5f7fa;
   border-radius: 10px;
    overflow: hidden;
}

.expertise-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.expertise-card img {
	width  :      100%;
	height  :     220px;
    object-fit: cover;
}

.expertise-card h3
{
   font-size: 1.2rem;
    padding: 1.5rem 1.5rem 0.5rem;
   color: #2c3e50;
  font-weight: 600;
}

.expertise-card p


{
  color: #666;
   line-height: 1.6;
    padding: 0 1.5rem 1.5rem;
}

.cta-section		{
    padding: 5rem 0;
  background: linear-gradient(135deg, #8b5fbf 0%, #6b4a9f 100%);
  color: #fff;
}

.cta-content {


    text-align     :      center;


}

.cta-content h2
{
    font-size: 2rem;
   margin-bottom     :1.5rem;
   font-weight     :        700;
}

.cta-content p{
    font-size    :1.1rem;

  margin-bottom: 2rem;

        line-height: 1.8;

  opacity: 0.95; 

} 

.cta-content .cta-button {
	 background: #fff;
  color :#8b5fbf;

}

.cta-content .cta-button:hover {
	   background: #f5f7fa;


}

.contact-section {
	padding: 4rem 0;
  background-color   :   #fafafa;
}

.contact-section h2 {
    font-size: 2rem;
  text-align: center;
   margin-bottom: 3rem;
    color     :       #1a2332;
          font-weight: 700;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  background: #fff;
    padding: 2.5rem;
   border-radius :     12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-info h3{
   font-weight: 600;
    color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #666;
   margin-bottom: 1rem;
    line-height     :       1.8;
}

.contact-phone {
    color: #8b5fbf;
   font-weight: 600;
   margin-top: 1.5rem;


}

.contact-form {
   display: flex;
    flex-direction: column;
   gap     : 1.2rem;
}

.form-group {
   display: flex;
  flex-direction: column;
}

.form-group label
	{
   font-weight: 600;
    margin-bottom: 0.5rem;
   color: #2c3e50;
    font-size: 0.95rem;

}

.form-group input,
.form-group select,
.form-group textarea	{
    padding: 0.8rem;
    border: 2px solid #e8edf5;
   border-radius: 6px;
    font-family   :    inherit;
   font-size:      1rem;
	 transition: all 0.3s ease;
    color  :  #2c3e50;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
       outline: none;
  border-color: #8b5fbf;
  box-shadow: 0 0 0 3px rgba(139, 95, 191, 0.1);
}

.submit-button {
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #8b5fbf 0%, #6b4a9f 100%);
    color: #fff;
    border: none;
   border-radius: 6px;
	font-weight: 600;
   font-size: 1rem;
   cursor: pointer;
	 transition  :    all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 95, 191, 0.3);
}

.footer-section {
     background-color: #1a2332;
    color: #e0e0e0;
  padding: 3rem 0 1rem;
}

.footer-container {
        max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
}

.footer-main {
    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	  gap: 2rem;
	    margin-bottom: 2rem;
}

.footer-logo-img {
   height :     35px;
      width: auto;
     filter: brightness(0) invert(1);
   	margin-bottom: 1rem;
}

.footer-info,
.footer-address,
.footer-contact {
  padding-bottom: 1.5rem;
}

.footer-info h4,
.footer-address h4,
.footer-contact h4,
.footer-nav h4 {
    font-size: 1rem;
    margin-bottom    :   1rem;
    color: #fff;
   font-weight: 600;
}

.footer-info p,
.footer-address p,
.footer-contact p {
   color :       #b0b0b0;
	line-height: 1.8;
  font-size: 0.95rem;
}

.footer-nav    {
         margin-bottom: 2rem;
}

.footer-nav ul {
               flex-wrap: wrap;
       list-style:    none;
  display: flex;
        gap: 1.5rem;
}

.footer-nav a{
    color   :       #b0b0b0;
  text-decoration: none;
    font-size: 0.95rem;
  transition: color 0.3s ease;


}

.footer-nav a:hover {
  color: #8b5fbf;
}

.footer-legal {
    border-top   :    1px solid #333;
   padding-top     :    1.5rem;
  text-align: center;
    color: #888;
    font-size: 0.9rem;
     }@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem auto;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-section h2,
    .services-preview h2,
    .value-section h2,
    .expertise-section h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .section-container {
        padding: 0 1rem;
    }

    .about-grid,
    .services-grid,
    .value-grid,
    .expertise-grid {
        gap: 1.5rem;
    }

    .about-card,
    .service-item,
    .value-item,
    .expertise-card {
        padding: 1.2rem;
    }

    .contact-wrapper {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 16px;
    }
}.policySection {
    padding: 80px 2rem;
    background: #f8f9fa;
}


.policyContainer {
    margin     :     0 auto;
    max-width: 800px;
    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, #8b5fbf 0%, #6b4a9f 100%);
    color: #fff;
   padding  :  3rem 0;
    text-align: center;
    margin-bottom: 3rem; 
	
}

.services-hero-content {
   max-width   :        1200px;
   margin: 0 auto;
    padding: 2rem; 

}

.services-hero h1 {
  font-weight: 700;
   font-size: 2.5rem;
  margin-bottom: 1rem;
	
}

.services-hero p {
    font-size: 1.2rem;
  opacity: 0.95;
   line-height     :     1.6;
}

.services-detailed {
    padding: 3rem 0;
   background-color: #fafafa;
}

.service-detailed-card {
  display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 3rem;
    align-items     : center;
    margin-bottom    :     4rem;
    background: #fff;
    padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-detailed-card.alternate	{

   grid-template-columns: 1fr 1fr;
}

.service-detailed-card.alternate {
  direction: rtl;
}

.service-detailed-card.alternate > *     {
  direction: ltr;
}

.service-detail-image{

  position: relative;
	}

.service-detail-image img {
   width: 100%;
  height: auto;
   border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-detail-content h2  {
    font-size: 2rem;
    color: #1a2332;
         margin-bottom: 1.5rem;
   font-weight:        700;
}

.service-detail-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
        font-size: 1rem;
}

.service-detail-content h3 {
  font-size: 1.2rem;
    margin-top: 1.5rem;
   margin-bottom :      1rem;
    color    :       #2c3e50;
   font-weight: 600;
}

.service-list {

	    list-style: none;
  padding: 0;
    margin-bottom: 1.5rem;}

.service-list li {
    padding: 0.6rem 0 0.6rem 1.8rem;
	position: relative;
    color  :   #555;
   line-height: 1.7;
}

.service-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8b5fbf;
  font-weight: bold;
    font-size  :    1.2rem;
}

.service-duration {
   padding: 1rem;
    background:       #f5f7fa;
  border-left :4px solid #8b5fbf;
  border-radius: 4px;
  color: #2c3e50;
  font-size: 0.95rem;
} 

.specializations-detail {
    padding: 4rem 0;
   background-color: #fff;
}

.specializations-detail h2 
 {
   font-size: 2rem;
   text-align: center;
                    margin-bottom     : 3rem;
	 color: #1a2332;
   font-weight: 700;
}

.spec-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}


.spec-card {
  background: #f5f7fa;
  border-radius    :        10px;
    -moz-transition   :        all 0.3s ease;
    overflow: hidden;
    transition:        all 0.3s ease;
   border: 1px solid #e8edf5;
}

.spec-card:hover {
  box-shadow: 0 12px 30px rgba(139, 95, 191, 0.15);
  transform: translateY(-5px);
   border-color:  #8b5fbf;
	
}

.spec-card img {
     width: 100%;
   height: 200px;
    object-fit: cover; 
	
}

.spec-card h3 {
  padding: 1.5rem 1.5rem 0.8rem;
   font-size: 1.1rem;
    color: #2c3e50;
        font-weight :    600;
}

.spec-card p {
                    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
               font-size: 0.95rem;
 color: #666;
}


.process-section {
    padding: 4rem 0;

  background: linear-gradient(135deg, #f5f7fa 0%, #fff 100%);
}

.process-section h2 {


   font-size: 2rem;
    text-align     :  center;
  margin-bottom: 3rem;
  color: #1a2332;
   font-weight: 700;

}

.process-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap    :    2rem;
}


.process-step {
  background: #fff;
   padding: 2rem;
	 border-radius: 10px;
  text-align: center;
    border: 2px solid #e8edf5;
  transition: all 0.3s ease;

}

.process-step:hover {
    border-color :     #8b5fbf;
  box-shadow: 0 8px 20px rgba(139, 95, 191, 0.1);
}

.step-number {
    font-size: 2.5rem;
   font-weight: 700;
   color: #8b5fbf;
	 margin-bottom: 1rem;
}  

.process-step h3 {
	   font-size: 1.2rem;
  margin-bottom: 1rem;
   color: #2c3e50;
   font-weight: 600;
	}

.process-step p     {
	color: #666;
   line-height   :    1.6;
    font-size     :   0.95rem;
}

.pricing-overview {
   padding: 4rem 0;
    background-color: #fafafa;
}

.pricing-overview h2 {
          font-size: 2rem;
  text-align :  center;
    margin-bottom: 1rem;
    color    :      #1a2332;
    font-weight: 700;
}

.pricing-intro {
  max-width: 600px;
   margin-left: auto;
  text-align   :     center;
   font-size: 1rem;
  color: #666;
               margin-right: auto;
	margin-bottom: 2.5rem;
}

.pricing-cards {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
}

.pricing-card {
   -moz-transition: all 0.3s ease;
   background: #fff;
	-webkit-transition   :       all 0.3s ease;
          padding: 2rem;
 border-radius: 10px;
  border: 2px solid #e8edf5;
	transition: all 0.3s ease;
  position :   relative;
   display: flex;
   flex-direction: column;
}

.pricing-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #8b5fbf;
  box-shadow: 0 8px 20px rgba(139, 95, 191, 0.15);
}

.featured-badge {
	 position: absolute;
  top: -12px;
  left: 20px;
   background: #8b5fbf;
    color: #fff;
   padding: 0.4rem 1rem;
  border-radius: 20px;
    font-size: 0.85rem;
	font-weight: 600;
}

.pricing-card h3 {
		 font-size: 1.3rem;
  color: #2c3e50;
   margin-bottom  :   1rem;
   font-weight: 600;
}

.price    {
    font-size: 1.8rem;
  color: #8b5fbf;
        font-weight: 700;
    margin-bottom: 0.3rem;
}

.pricing-card > p {
    color     :        #999;
	font-size: 0.9rem;
   margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
  margin: 0;
          flex-grow: 1;
}

.pricing-features li {
   padding: 0.6rem 0;
        color: #666;
    font-size: 0.95rem;
       border-bottom: 1px solid #f0f0f0;
  padding-left: 1.5rem;
   position: relative;
}

.pricing-features li:last-child		{
	border-bottom: none; 

}

.pricing-features li:before {
  content: "✓";
  position     :  absolute;
   left: 0;
   color: #8b5fbf;
   font-weight   :bold;
}



.testimonials-section {
	padding    :       4rem 0; 
	  background: linear-gradient(135deg, #f5f7fa 0%, #fff 100%);
} 

.testimonials-section h2	{
      font-size: 2rem;
	text-align: center;
    margin-bottom: 3rem;
   color: #1a2332;
	font-weight: 700;
}

.testimonials-grid  
  {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}


.testimonial-card {
   background: #fff; 
	    padding: 2rem; 
	    border-radius: 10px; 
	 border-left: 4px solid #8b5fbf; 
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); 
	  transition   :    all 0.3s ease; 

}

.testimonial-card:hover {
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);


}

.testimonial-text {
   color: #555;
  font-size: 1rem;
   line-height    :       1.8;
   margin-bottom: 1.5rem;
   font-style     :    italic;
}

.testimonial-author {
 color: #8b5fbf;
    font-weight: 600;
    font-size: 0.95rem;
   margin: 0;
	
}

.faq-section {
   padding: 4rem 0;
   background-color: #fafafa;
}

.faq-section h2 {
   text-align: center;
    font-weight: 700;
   margin-bottom: 3rem;
    color: #1a2332;
  font-size  :    2rem;
}

.faq-container {
   max-width: 800px;
  margin: 0 auto;
}

.faq-item{
  background   :  #fff;
  padding: 1.5rem;
    margin-bottom: 1rem;
  border-radius: 8px;
   border: 1px solid #e8edf5;
   transition: all 0.3s ease;
  cursor     :  pointer;
}

.faq-item:hover


{
  border-color: #8b5fbf;
  box-shadow: 0 4px 12px rgba(139, 95, 191, 0.1);
}

.faq-question {
   font-size: 1.1rem;
  color :   #2c3e50;
                    margin: 0 0 0.8rem 0;
  font-weight: 600;
   display: flex;
  justify-content     :   space-between;
    align-items: center;
}

.faq-question:after {
  content: "+";
    font-size: 1.5rem;
   color :      #8b5fbf;
         transition   :    all 0.3s ease;
}

.faq-item.active .faq-question:after {
     content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  color: #666;
    -o-transition     :     max-height 0.3s ease;
   line-height: 1.7;
               font-size: 0.95rem;
   margin: 0;
	 max-height: 1000px;
  -webkit-transition     :  max-height 0.3s ease;
    overflow: hidden;
  transition: max-height 0.3s ease;

}

.faq-item:not(.active) .faq-answer	{
  max-height: 0;
  overflow   :        hidden;
}

.cta-section-services {

    padding: 5rem 0;
  background: linear-gradient(135deg, #8b5fbf 0%, #6b4a9f 100%);
  color: #fff;
   text-align: center;


}

.cta-section-services h2 {
    font-size: 2rem;
   margin-bottom  :   1rem;
    font-weight: 700;
}

.cta-section-services p {

	    font-size: 1.1rem;
    margin-bottom: 2rem;
  opacity: 0.95;

}

.thankyou-section {
    min-height: 70vh;
  display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #fff 100%);
}

.thankyou-container {
    max-width: 700px;
   margin: 0 auto;
               padding: 0 2rem;
  text-align: center;
  background: #fff;
   padding  : 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.success-icon  {
    margin-bottom   : 2rem; 
	
}

.success-icon svg {
   display: inline-block;
       animation  :    scaleIn 0.5s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1 {
  font-size   :        2.5rem;
    color: #1a2332;
  margin-bottom: 1.5rem;
   font-weight: 700;}

.thankyou-content  {
   text-align: left;
}

.main-message {
   font-size: 1.2rem;
         color: #555;
    line-height: 1.8;
	 margin-bottom: 2rem;
}

.thankyou-details {
   background    :      #f5f7fa;
        padding: 2rem;
   border-radius     :        10px;
   margin-bottom :2rem;
  border-left   :    4px solid #8b5fbf;
}

.thankyou-details h2 {
    font-size: 1.3rem;
  color: #2c3e50;
    margin-bottom: 1.5rem;
  font-weight: 600;
}

.next-steps {
		 list-style: none;
     padding    :    0;
   margin: 0;
}

.next-steps li {
	    padding: 0.8rem 0;
    color: #555;
    font-size: 1rem;
   line-height: 1.6;
  padding-left: 1.8rem;
   position: relative;
}



.next-steps li:before

{
     content: "✓";
    position  :  absolute;
      left: 0;
   color: #8b5fbf;
   font-weight :    bold;
	 font-size:   1.1rem;
	}

.thankyou-info-box {
    background: #e8f4f8;
    padding: 1.5rem;
	border-radius: 8px;
    margin-bottom: 2rem;
  border  :   1px solid #d0e8f0;
	
}

.thankyou-info-box h3 {
    font-size: 1.1rem;
   color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.thankyou-info-box p {
   color    :       #555;
  font-size: 0.95rem;
      margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-phone-thankyou {
  color: #8b5fbf;
    font-weight: 700;
               font-size: 1rem;
}

.action-buttons {
       display: flex;
   gap: 1rem;
	flex-wrap: wrap;
     margin-bottom: 2rem;
  justify-content: center;
     }

.btn-primary,
.btn-secondary {
	padding: 0.9rem 1.8rem;
    border-radius: 6px;
	 text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
   font-size: 0.95rem;
   display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #8b5fbf 0%, #6b4a9f 100%); 
		color: #fff; 
	
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 95, 191, 0.3);
}

.btn-secondary {


    background: #e8edf5;
         color: #2c3e50;
  border: 1px solid #d0d8e8;
	
}

.btn-secondary:hover {
  -moz-transform: translateY(-2px);
   background: #d0d8e8;
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
}

.inspiration-section {
  text-align: center;
  padding-top: 1rem;
    border-top: 1px solid #e8edf5;
}

.inspiration-text {


   color    :#888;
   font-size: 1rem;
  font-style: italic;
  margin: 0;
	}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-detailed-card,
    .service-detailed-card.alternate {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
        padding: 1.5rem;
    }

    .service-detailed-card.alternate > * {
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .pricing-cards {
        gap: 1.5rem;
    }

    .testimonials-grid {
        gap: 1.5rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .success-icon svg {
        width: 60px;
        height: 60px;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.3rem;
    }

    .service-detail-content h3 {
        font-size: 1.05rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .main-message {
        font-size: 1rem;
    }

    .thankyou-details {
        padding: 1.5rem;
    }
}