:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --dark-bg: #0f1419;
    --light-bg: #ffffff;
    --text-dark: #1a1a2e;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

* {
    margin   :    0;

	    padding: 0;

	  box-sizing    :        border-box;}

html {
    scroll-behavior :       smooth; 
	
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  background-color: var(--light-bg);
   line-height: 1.6;
}

.navbar {

  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   padding: 1rem 0;
   position: sticky;
   top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(102, 126, 234, 0.2);
	}

.nav-container {
   max-width: 1200px;
  margin: 0 auto;
	padding: 0 2rem;
  display :      flex;
               justify-content: space-between;
  align-items: center;
}



.nav-logo {

   display: flex;
  align-items: center;
}

.logo-img    {
   height: 40px;
    width     :   auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
        display: flex;
   list-style: none;
  gap: 3rem; 

}

.nav-link {
	 color: white;
  text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
}

.nav-link::after {
  content: '';
	 position: absolute;
    bottom: -5px;
    left: 0;
  width: 0;
	 height: 2px;
        background :   white;
   transition: width 0.3s ease;
}

.nav-link:hover::after {


	 width:        100%;
	}  

.nav-toggle {
  display: none;
    flex-direction: column;
  cursor: pointer;

}

.nav-toggle span {
   width: 25px;
  height: 3px;
    background: white;
   margin: 5px 0;
   transition  :       0.3s;
   border-radius :        2px;
}

.hero {

    max-width: 1200px;
   margin: 0 auto;
	 padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;

}


.hero-content h1 {
	font-size: 3.5rem;
	font-weight   :      700;
   line-height: 1.2;
  margin-bottom     :    1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
}

.hero-subtitle {

  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 2rem;
   line-height: 1.7;

}

.cta-button {
  display: inline-block;

	  padding   :   1rem 2rem;

	  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));

	   color: white;

	   text-decoration: none;

	  border-radius: 50px;

	  font-weight: 600;

		transition: all 0.3s ease;

	   border: none;

	   cursor: pointer;

	    font-size :  1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}


.hero-image img {
      width   :    100%;
  height: auto;
               border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.intro-section {

  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
                    padding: 5rem 2rem;
    text-align    :center;


}

.intro-section h2 {

    font-size: 2.5rem;
 margin-bottom: 3rem;
  color: var(--text-dark);}

.intro-grid
	{
   max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.intro-card  {
          background: white;
	padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.intro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
  border-color: var(--primary-color);
}

.card-icon {
   margin-bottom: 1.5rem;
}



.svg-icon {
   width: 50px;
	 height: 50px;
  stroke: var(--primary-color);
    fill: none;
     stroke-width: 2;
    transition: all 0.3s ease;
}

.intro-card:hover .svg-icon {


  stroke: var(--secondary-color);
  filter: drop-shadow(0 0 8px rgba(118, 75, 162, 0.4));
  transform: scale(1.1);
     }

.intro-card h3     {
   font-size    :  1.4rem;
	margin-bottom: 1rem;
  color: var(--text-dark);
}

.intro-card p {


  color: var(--text-light);
    line-height     :       1.8;
	}

.services-preview {
    max-width     :      1200px;

	   margin :     0 auto;

	  padding: 5rem 2rem;
}

.services-preview h2 {


    font-size: 2.5rem;
   text-align: center;
      margin-bottom    :     3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap  :     2rem;
    margin-bottom :3rem;
}

.service-card {
  border-radius    :   12px;
   overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   background: white;
  position    :        relative;
}

.service-card img {
    width: 100%;
  height: 250px;
  object-fit: cover;
	transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.08); 
	
}

.service-card h3 {
   font-size: 1.4rem;
    padding: 1.5rem 1.5rem 0.5rem;
  color: var(--text-dark);
	}

.service-card p

{
    padding: 0.5rem 1.5rem;
  color: var(--text-light);
	 font-size     :      0.95rem;
     line-height: 1.7;
}

.service-badge {
    display :inline-block;
	  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	    color: white;
	         padding: 0.4rem 1rem;
		 border-radius    :      20px;
	    font-size: 0.75rem;
	               font-weight    :  600;
	  margin: 1rem 1.5rem 1.5rem;
	   text-transform: uppercase;
}

.view-services-link {
  display: block;
    text-align: center;
  color: var(--primary-color);
   text-decoration:none;
    font-weight: 600;
  font-size: 1.1rem;
	 transition:  all 0.3s ease;
   margin-top     :        2rem;
}  

.view-services-link:hover {


  color: var(--secondary-color);
  transform: translateX(5px);




}

.approach-section {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
	 padding: 5rem 2rem;
}

.approach-section h2 {

	    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;

}

.approach-content {
   max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns   :       1fr 1fr;
   gap: 3rem;
  align-items: center;
}

.approach-text h3 {
	   font-size    :       1.8rem;
	margin-bottom: 1.5rem;
  color: var(--primary-color); 
}

.approach-text p {
	  color: var(--text-light);
	   margin-bottom: 1.5rem;
	  line-height: 1.9;
	  font-size: 1rem; 


}

.approach-image img {
	   width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); 
	

}

.cta-section


{
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 4rem 2rem;
        text-align: center;
    color: white;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-section p {
	   font-size: 1.1rem;
  margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .cta-button.primary {
   background: white;
  color: var(--primary-color);
  font-weight: 700;
}

.cta-section .cta-button.primary:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-section {
  max-width: 1200px;
   margin: 0 auto;
         padding: 5rem 2rem;
}

.contact-section h2 {
	   font-size: 2.5rem;
    text-align     :  center;
    margin-bottom: 3rem;
	}

.contact-container {
         display: grid;
   grid-template-columns: 2fr 1fr;
       gap: 3rem;
}

.contact-form 
 {

	   background: white;
	 padding :        2.5rem;
    border-radius  :  12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);


}

.form-group  {
       margin-bottom    :        1.5rem; 

}



.form-group label {
         display   :        block;
    font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
   padding:       0.9rem;
  border: 2px solid var(--border-color);
   border-radius: 8px;
   font-size: 1rem;
   font-family: inherit;
               transition   :     all 0.3s ease;
  background: var(--light-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-button {


  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border: none;
   border-radius: 50px;
   font-weight: 600;
 font-size: 1rem;
  cursor: pointer;
     width: 100%;
  transition: all 0.3s ease;

}

.submit-button:hover {


  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);}

.contact-info {
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  height: fit-content;
}

.contact-info h3 {
   font-size: 1.4rem;
          margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.contact-info p {
	margin-bottom  :       1.5rem;
  line-height: 1.8;
  color: var(--text-light);
}

.contact-info strong {
  color: var(--primary-color);
}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.5rem 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .intro-section h2,
    .services-preview h2,
    .approach-section h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .approach-content {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .nav-container {
        padding: 0 1rem;
    }
}.footer  {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color: white;
   padding: 3rem 2rem 1.5rem 2rem;
  margin-top: 4rem;
   font-size: 1rem; 
	
	}

.footer-content {
  max-width: 1200px;
       margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 2rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-logo-img {
    height: 45px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}



.footer-description {
   opacity: 0.9;
    line-height: 1.7;
         margin-bottom: 1rem;
}

.footer-links {
   list-style: none;
   padding: 0;
  margin: 0;
}

.footer-links li {
   margin-bottom: 0.8rem;
}

.footer-links a {
  color: white;
    -moz-transition: color 0.3s;
   text-decoration: none;
   font-weight: 500;
   -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.footer-links a:hover


{
  color: var(--accent-color);
}


.social-links {
    display :   flex;
   gap     :    1.2rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block; 
  color: white; 
       font-size: 1.2rem; 
  transition: color 0.3s;
}

.social-link:hover {
  color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top:     2.5rem;
   padding-top    :      1.2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
	 font-size: 0.95rem;
   opacity: 0.8;
}

.services-breadcrumb {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);

}

.breadcrumb-container {
      max-width:  1200px;
	 margin: 0 auto;
    font-size: 0.95rem;
  color: var(--text-light);}

.breadcrumb-container a {
  color: var(--primary-color);
    text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-container a:hover {


  color: var(--secondary-color);
     }

.breadcrumb-container span {
		 margin: 0 0.5rem;
} 

.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
   text-align: center;
	padding: 4rem 2rem;


}

.services-hero h1 {
   font-size: 2.8rem;
  margin-bottom: 1rem;
   font-weight: 700; 
	
}

.services-hero p {
   font-size: 1.2rem;
    opacity: 0.95;
    max-width  :       600px;
  margin: 0 auto;
}

.services-detailed {
   max-width: 1200px;
     margin: 0 auto;
     padding: 5rem 2rem;
}

.service-container {
  display: flex;
   flex-direction: column;
    gap: 5rem;
}

.service-item
	{

    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items    :        center;
	}

.service-item.reverse {
		 grid-template-columns: 1fr 1fr;
  direction: rtl;
     }

.service-item.reverse > *  
  {
  direction:     ltr;
}

.service-image {
    position: relative;
        border-radius     :    12px;
   overflow: hidden;
}

.service-image img {
  height: 100%;
     transition: transform 0.4s ease;
     width: 100%;
      object-fit   :      cover;
}  

.service-image:hover img {
  transform: scale(1.05);
}

.service-content h2 {
  font-size   :    2rem;
  color: var(--text-dark);
 margin-bottom: 0.5rem;
}

.service-duration {
  color: var(--primary-color);
   font-weight: 600;
   font-size: 0.95rem;
   margin-bottom: 1.5rem;
   display: flex;
	 align-items: center;
  gap: 0.5rem;
}

.service-duration::before {
  content: '';
         width   :       8px;
    height: 8px;
  background: var(--primary-color);
    border-radius: 50%;
} 

.service-content h3 {
	font-size  :   1.3rem;
  color: var(--text-dark);
   margin-top: 1.5rem;
   margin-bottom: 0.8rem;
	padding-top: 1rem;
  border-top: 2px solid var(--border-color);
	
}

.service-content h3:first-of-type {
  border-top: none;
   padding-top: 0;
  margin-top: 0; 

}

.service-content p {
  color: var(--text-light);
  line-height: 1.8;
    margin-bottom: 1rem;
}

.service-list {
				 list-style: none;
  margin: 1.5rem 0;
}

.service-list li {
    padding: 0.6rem 0;
  padding-left: 1.8rem;
    position: relative;
  color: var(--text-light);
  line-height: 1.7;
}

.service-list li::before {
  content: '✓';
      position: absolute;
    left: 0;
  color: var(--primary-color);
	font-weight: 700;
  font-size     :    1.1rem;
}

.service-cta	{
    display: inline-block;
   margin-top: 1.5rem;
 padding: 0.9rem 1.8rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
    text-decoration: none;
  border-radius:        50px;
     font-weight: 600;
   transition     : all 0.3s ease;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.service-comparison {
	  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
  padding: 4rem 2rem;

}

.service-comparison h2 {
   font-size  :        2.2rem;
   text-align: center;
   margin-bottom: 3rem;
}

.comparison-table {
  max-width:    1000px;
   margin: 0 auto;
  overflow-x:        auto;
}

.comparison-table table 
 {
   width :      100%;
    border-collapse: collapse;
    background    :      white;
  border-radius: 12px;
  overflow    :   hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);}

.comparison-table thead

{
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}


.comparison-table th {
    font-weight: 600;
  font-size  :       0.95rem;
	 text-align: left;
                    padding: 1.2rem;
}

.comparison-table td

{
   padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
}

.comparison-table tbody tr:hover {
  background: rgba(102, 126, 234, 0.05);
}

.comparison-table tbody tr:last-child td     {
    border-bottom: none;
}

.pricing-section {
  max-width: 1200px;
		margin: 0 auto;
	padding: 5rem 2rem;
    text-align: center;
} 

.pricing-section h2 {
    font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {

  color: var(--text-light);
     font-size: 1.1rem;
     margin-bottom: 3rem;
	}

.pricing-cards {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
	  background: white;
   padding  :  2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
  border: 2px solid var(--border-color);
   position: relative;
 text-align: center;}

.pricing-card:hover {
	  transform: translateY(-10px);

  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);

  border-color: var(--primary-color);
}

.pricing-card.featured  
  {
  border-color: var(--primary-color);
     background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
     transform: scale(1.05);
}



.featured-badge {
		 position: absolute;
	         top :-12px;
	   left: 50%;
	  transform: translateX(-50%);
	  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	   color: white;
		 padding     :     0.4rem 1.2rem;
	          border-radius: 20px;
	    font-size: 0.75rem;
	   font-weight: 700;
		text-transform  :     uppercase; 
	
}

.pricing-card h3 {
  font-size   :  1.5rem;
    margin-bottom: 1rem;
  color: var(--text-dark);
    margin-top :      1rem;
}

.price {
  font-size: 1.8rem;
  color: var(--primary-color);
   font-weight: 700;
   margin: 1.5rem 0;
}

.pricing-features {
         list-style: none;
      text-align: left;
        margin: 1.5rem 0;
}

.pricing-features li {
   padding: 0.6rem 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);


}

.pricing-features li:last-child    {
  border-bottom: none;
}

.pricing-cta {

	  display: inline-block;
   margin-top: 1.5rem;
   padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
   color:     white;
	text-decoration: none;
   border-radius: 50px;
    font-weight :       600;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.faq-section {
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
  padding: 5rem 2rem;
}

.faq-section h2 {
  font-size: 2.5rem;
   text-align: center;
          margin-bottom  :   3rem;
}

.faq-container
	{
    max-width: 800px;
   margin     :     0 auto;
		 display: flex;
  flex-direction: column;
    gap: 1rem;
}

.faq-item {
   background: white;
    border-radius: 12px;
  overflow    :      hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
  border-color: var(--primary-color);
     }

.faq-question {
     padding   :     1.5rem;
   cursor    :  pointer;
   font-size: 1.1rem;
  color: var(--text-dark);
     font-weight: 600;
    display:  flex;
  justify-content: space-between;
    align-items    :     center;
   user-select  :     none;
   transition: all 0.3s ease;
    margin:       0;
}


.faq-question::after {
  content: '▼';
        font-size: 0.8rem;
  color: var(--primary-color);
   transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(-180deg);
}

.faq-question:hover {

  background: rgba(102, 126, 234, 0.05);
  color: var(--primary-color);
	}

.faq-answer {
    max-height: 0;
   -o-transition: max-height 0.3s ease;
  overflow: hidden;
    transition: max-height 0.3s ease;
    -moz-transition  :       max-height 0.3s ease;
   -webkit-transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0; 
	
}

.cta-final
	{
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color   :       white;
   text-align: center;
	padding  :     4rem 2rem;
}

.cta-final h2 {
	font-size: 2.2rem;
   margin-bottom: 1rem;
}

.cta-final p {
  font-size: 1.1rem;
 margin-bottom: 2rem;
  opacity:        0.95;
}



.cta-final .cta-button {

 background: white;
  color: var(--primary-color);
   font-weight: 700;}

.thankyou-section {
    max-width :      900px;
  margin: 0 auto;
   padding: 4rem 2rem;
     min-height :      60vh;
   display: flex;
    align-items: center;
}

.thankyou-container		{


    width     :       100%;
	text-align: center;}

.success-icon
	{
    margin-bottom: 2rem;
}

.success-icon img  {
   width: 80px;
  height: 80px;
  stroke: var(--success-color);
  animation: scaleIn 0.6s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1 {
   font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom :   1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
}

.thankyou-message {
  font-size  :       1.1rem;
  color: var(--text-light);
    line-height: 1.8;
	margin-bottom: 3rem;
  max-width: 700px;
    margin-left: auto;
	margin-right: auto; 

}

.thankyou-details

{
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    padding: 3rem 2rem;
  border-radius: 12px;
                    margin-bottom: 3rem;
  border: 1px solid var(--border-color);
}

.thankyou-details h2 {
   font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
  text-align  :   center;
}

.step {
  flex: 1;
}

.step-number {
	 display:  inline-flex; 
	  align-items: center; 
	   justify-content: center; 
	                    width: 50px; 
	  height: 50px; 
	  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); 
		 color: white; 
	  border-radius     :   50%; 
	 font-weight: 700; 
			font-size: 1.5rem; 
	  margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.1rem;
  color: var(--text-dark);
    margin-bottom: 0.5rem;

}

.step p {
  color: var(--text-light);
	font-size: 0.95rem;
    line-height: 1.6;
}

.thankyou-info {


    margin-bottom: 3rem; 


}

.thankyou-info h2 {
    font-size: 1.8rem;
  color: var(--text-dark);
    margin-bottom: 2rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-card {
  background: white;
   padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.info-card:hover     {

	  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);}

.info-card h3 {
	 font-size  :  1.2rem;
  color: var(--text-dark);
   margin-bottom: 1rem;
}

.info-card p {
  color: var(--text-light);
	    line-height: 1.7;
	        font-size: 0.95rem;
}

.thankyou-cta {
    gap: 1.5rem;
   margin-bottom: 2rem;
        display: flex;
    flex-wrap: wrap;
               justify-content: center;
} 

.back-home-button,
.view-services-button {
   border-radius: 50px;
    transition     :       all 0.3s ease;
  text-decoration  :none;
 display: inline-block;
    padding: 1rem 2rem;
      font-weight :600;
}

.back-home-button {
     background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
   color: white;
	}

.back-home-button:hover {
	  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);


}

.view-services-button  {
   background:white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.view-services-button:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.contact-note {
  color: var(--text-light);
   font-size: 0.9rem;
    margin-top   :       1rem;
}

.next-steps-section		{
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    padding: 4rem 2rem;
}


.next-steps-section h2 {
  font-size: 2rem;
   text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom     :   2rem;
	font-size: 1.05rem;
}

.related-services {
    max-width: 1000px;
	margin   :      0 auto;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.related-service


{
          background:    white;
    padding  :        2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
   transition: all 0.3s ease;
	 text-align: center;
}

.related-service:hover  
  {
  transform: translateY(-8px);
	  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
	  border-color: var(--primary-color);
}

.related-service h3		{
     font-size  :     1.3rem;
  color: var(--text-dark);
   margin-bottom: 1rem;
     }

.related-service p {
  color: var(--text-light);
   line-height: 1.7;
  margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.related-service a {

	    display: inline-block;
  color: var(--primary-color);
   text-decoration     :    none;
	 font-weight: 600;
    transition: all 0.3s ease;


}

.related-service a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}@media (max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
    }

    .service-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .services-hero h1 {
        font-size: 1.8rem;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .thankyou-section {
        padding: 2rem;
        min-height: auto;
    }

    .thankyou-section h1 {
        font-size: 1.8rem;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .thankyou-cta {
        flex-direction: column;
    }

    .back-home-button,
    .view-services-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .service-cta,
    .pricing-cta {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }
}.policySection 
 {
   padding: 5rem 2rem;
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
  min-height: calc(100vh - 400px);

}

.policyContainer {
    max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.policyContainer h1 {
  font-size:        2.8rem;
  color: var(--text-dark);
    margin-bottom: 2rem;
	 font-weight:  700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip   :text;
}

.policyContainer h2 {

	  font-size: 1.8rem;
  color: var(--text-dark);
    margin-top: 2.5rem;
	margin-bottom: 1.2rem;
   font-weight: 700;
   padding-top: 1.5rem;
  border-top: 2px solid var(--border-color);
	


}

.policyContainer h2:first-of-type{
    border-top: none;
		padding-top: 0;
    margin-top  : 0;
}

.policyContainer p
{
  color: var(--text-light);

	   margin-bottom: 1.5rem;

	   line-height: 1.9;

	   font-size: 1rem;

	   text-align     :       justify;
}

.policyContainer strong
{
  color: var(--primary-color); 
 font-weight: 600;
}@media (max-width: 768px) {
    .policySection {
        padding: 3rem 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.8rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 2rem 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.7;
    }
}