* {
    margin :  0;
	  padding: 0;
	  box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body {

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
                       color: #2c3e50;
      background-color: #f8fafc;


}

.header-section {
     background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
   position: sticky;
   top: 0;
  z-index: 100;
}

.navbar-main {
                    max-width: 1200px;
  margin: 0 auto;
  padding     :   1rem 2rem;
	}

.navbar-container  
  {
  display: flex;
    justify-content:   space-between;
         align-items: center;
}

.logo-wrapper {
    flex-shrink: 0;

}

.logo-image {

	  height :  45px;
    width: auto;
  filter: brightness(0) invert(1);
}

.menu-toggle
	{
  display  :     none;
    flex-direction: column;
       cursor: pointer;
  gap: 6px;
  background: none;
   border: none;
}

.hamburger-line {
   width   :  28px;
    height: 3px;
	background-color: #2c3e50;
  border-radius: 2px;
	 transition: all 0.3s ease;


	} 

.menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3)

{
  transform: rotate(-45deg) translate(7px, -7px);

}

.nav-links {
   	 display    :       flex;
    list-style: none;
   gap: 2rem; 
	}

.nav-link-item {
   text-decoration: none;
  color :#2c3e50;
  font-weight: 500;
   transition  :color 0.3s ease;
  position: relative;
}

.nav-link-item::after{
  content: '';
      position: absolute;
   bottom: -4px;
   left    :0;
  width: 0;
  height: 2px;
  background-color: #3498db;
   transition: width 0.3s ease;
	
}

.nav-link-item:hover::after,
.nav-link-item:hover {
  color   :   #3498db;
  width :100%;
	
}

.hero-section {
  max-width: 1200px;
    margin: 0 auto;
    padding   :  4rem 2rem;
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
               align-items:center;
}

.hero-content {
   display: flex;
    flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  font-size   :        2.8rem;
	font-weight: 700;
    line-height: 1.2;
   color: #1a252f;
}

.hero-subtitle  {


  font-size: 1.15rem;
  color: #546e7a;
  line-height: 1.7; 

}

.hero-cta  
  {
  display: flex;
  gap: 1rem;
   margin-top: 1rem;
}

.cta-button-primary {
   display: inline-block;
    padding: 14px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
  border-radius: 6px;
          font-weight: 600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button-primary:hover {

	  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);


}

.hero-image {


  position: relative;


}

.hero-img {
    width: 100%;
       height: auto;
       border-radius: 12px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); 

     }

.features-section {
  max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-title {
  font-size: 2.2rem;
    font-weight  :    700;
   text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.features-grid {
   display :  grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
}

.feature-card {
  background:   white;
     padding: 2rem;
 border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
     margin-bottom: 1.5rem;
  width     :        50px;
  height  :        50px;

}



.feature-svg {
   width    :     100%;
   height: 100%;
    stroke: #667eea;
    fill  :       none;
    stroke-width: 2;
  stroke-linecap: round;
    stroke-linejoin:round;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
   margin-bottom:       0.8rem;
   color: #2c3e50;
}

.feature-text {
      color: #546e7a; 
    line-height: 1.7; 
    font-size: 0.95rem;
	}

.showcase-section {
    max-width: 1200px;
     margin: 0 auto;
   padding: 5rem 2rem;
  background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
    border-radius: 20px;
}

.showcase-grid {
      display     :      grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;

}

.showcase-item {
    background: white;
	    border-radius: 12px;
	   overflow :     hidden;
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	       transition: transform 0.3s ease;
}

.showcase-item:hover {
  transform: scale(1.03);
}

.showcase-img    {
  width: 100%;
    height: 220px;
    object-fit: cover;
}

.showcase-title  {
    padding: 1.5rem;
   color: #2c3e50;
   font-size: 1.1rem;
    text-align: center;
    font-weight: 600;
}

.cta-section {
   max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
    text-align: center;
    color: white;
     }

.cta-section-title{
  font-size: 2rem;
   font-weight : 700;
  margin-bottom: 1rem;
}



.cta-section-text {
   font-size: 1.05rem;
  margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-button-secondary {
    display: inline-block;
  padding: 14px 32px;
    background: white;
    color: #667eea;
  text-decoration  :   none;
   border-radius: 6px;
    font-weight: 600;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); 

}

.benefits-section     {
    max-width    :        1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.benefits-list {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
                    padding: 2rem;
	 background: white;
  border-radius: 10px;
    border-left: 4px solid #667eea;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	
}

.benefit-number {


  font-size: 2.5rem;
   font-weight: 700;
    color: #667eea;
  margin-bottom: 0.5rem;}

.benefit-title {
	font-size: 1.2rem;
   font-weight: 600;
    color:   #2c3e50;
    margin-bottom: 0.8rem;
}

.benefit-desc {
                    color: #546e7a;
  line-height: 1.6;
}

.contact-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container {


          display    : grid;
	 grid-template-columns: 1fr 1fr;
  gap: 3rem;
    margin-top: 3rem;
}

.contact-form-wrapper {
   background: white;
	padding     : 2rem;
       border-radius   :12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form {
   display: flex;
    flex-direction: column;
      gap: 1.5rem;
}

.form-group {
  display: flex;

	  flex-direction: column;

	          gap: 0.5rem;

}

.form-label {
   font-weight: 600;
   color: #2c3e50;
   font-size: 0.95rem;
}


.form-input,
.form-textarea{
   padding: 12px 14px;
   border:   2px solid #e0e6ed;
   border-radius :       6px;
    font-size: 0.95rem;
   font-family: inherit;
    transition: border-color 0.3s ease; 
	
}

.form-input: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 {
    padding: 14px 28px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
   border-radius: 6px;
               font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.contact-info		{
	display: flex;

	  flex-direction: column;

	  gap: 2rem;
}

.contact-title {
  font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.contact-detail {
   display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-detail strong{
    color: #667eea;
     font-weight: 600;
}

.contact-detail p {
  color     :#546e7a;
  line-height: 1.6;
}


.footer-section {
    background: #1a252f;
  color:   #ecf0f1;
     padding: 3rem 2rem 1.5rem;
    margin-top  :5rem;
}

.footer-content   {
  max-width: 1200px;
    margin: 0 auto;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
      margin-bottom: 2rem;
}

.footer-column {
  display: flex;
               flex-direction     :      column;
    gap: 1rem;
}

.footer-logo-img {
   height: 40px;
       width: auto;
  filter: brightness(0) invert(1);
}



.footer-title    {
	  font-size: 1.05rem;
  font-weight: 600;
    color     :   #ffffff;
     }

.footer-links {
       list-style  : none;
	display: flex;
	flex-direction    :   column;
  gap: 0.7rem;

}

.footer-links a  {
   text-decoration: none;
  color: #bdc3c7;
   transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #667eea;
}  

.footer-text


{
	color: #bdc3c7;
    line-height: 1.6;
  font-size: 0.9rem;
}

.footer-bottom {
   max-width: 1200px;
  margin   :        0 auto;
    padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
  color :    #95a5a6;
    font-size: 0.9rem;

}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        list-style: none;
        padding: 1rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-link-item {
        padding: 0.75rem 0;
        border-bottom: 1px solid #e0e6ed;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
        gap: 2rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }

    .cta-section-title {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0.75rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        text-align: center;
    }
}.policySection {
    padding   :        80px 2rem;
 background  : #f8f9fa;
}

.policyContainer{
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.policyContainer h1 {
    font-size: 2.8rem;
  color: #2c3e50;
   margin-bottom: 1rem;
	 font-weight    :      700;
}

.policyContainer h2 {


  font-size: 2.5rem;
  color: #2c3e50;
	margin: 2.5rem 0 1.5rem 0;
   font-weight: 700;}

.policyContainer h3 {
    font-size: 1.4rem;
   	color: #34495e;
       margin: 1.5rem 0 1rem 0;
     font-weight: 600;
}

.policyContainer p {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
	 line-height    :      1.7;
  font-size: 1.1rem;
}

.policyContainer ul {
    margin: 1rem 0 1.5rem 1.5rem;
       color: #7f8c8d;
}

.policyContainer li		{
	 margin-bottom: 0.5rem;
    line-height :        1.6;
}

.policyContainer a {
			color   :       #3498db; 
  text-decoration: none; 
	
}

.policyContainer a:hover {
    text-decoration :  underline;
}@media (max-width: 768px) {
    .policyContainer h1 {
        font-size: 2.2rem;
    }

    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer h3 {
        font-size: 1.3rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}

@media (max-width: 480px) {
    .policyContainer {
        padding: 0 0.5rem;
    }

    .policySection {
        padding: 40px 0.5rem;
    }
}.services-hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
  max-width: 100%;
}

.services-hero-content {
  max-width: 1200px;
    margin:0 auto;
}

.services-hero-title {
   font-size: 2.8rem; 
	font-weight:    700; 
   margin-bottom: 1rem; 
    line-height: 1.2;
}

.services-hero-subtitle {
  font-size :1.2rem;
   font-weight: 300;
  opacity: 0.95;
   line-height: 1.6;

}

.services-main-section {


   max-width: 1200px;

   margin: 0 auto;

  padding: 5rem 2rem;
}

.services-container {
    display: grid;

		grid-template-columns: 1fr;

	   gap: 2.5rem;
}

.service-detailed-card {
  background: white;
    padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
       transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-left: 5px solid #667eea;
}

.service-detailed-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card-header   {
		 display: flex;
    align-items: flex-start;
   gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon-large {
  height: 60px;

  flex-shrink: 0;

   width: 60px;
	}

.service-svg-large
	{
    width    :     100%;
  height: 100%;
   stroke: #667eea;
  fill: none;
 stroke-width: 2;
    stroke-linecap: round;
   stroke-linejoin: round;
}

.service-card-title{
    font-size: 1.5rem;
	font-weight: 700;
  color: #2c3e50;
   line-height: 1.3;
	flex: 1;
}

.service-card-description {
  font-size: 1rem;
  color: #546e7a;
    line-height: 1.7;
   margin-bottom: 1.5rem;
}

.service-subheading {
  margin-top: 1.5rem;
    font-size: 1.05rem;
  margin-bottom :    0.8rem;
  color: #2c3e50;
	font-weight: 600;
}

.service-features-list    {
   list-style: none;
  padding     : 0;
	margin-bottom: 2rem;
}

.service-features-list li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    color     : #546e7a;
  position: relative;
   line-height: 1.6;
}

.service-features-list li::before {


  content: '✓';
   position: absolute;
  left   :0;
    color: #667eea;
    font-weight: bold;


}

.service-pricing   {
     display: flex;
     align-items: baseline;
     gap: 0.5rem;
     padding: 1.5rem;
     background: linear-gradient(135deg, #f0f4ff 0%, #f5f1ff 100%);
       border-radius: 8px;
       margin-top: 1.5rem;
}

.pricing-label {
	 font-size: 0.9rem;
	color: #546e7a;
    font-weight:    500;
}

.pricing-amount {
   font-size: 2rem;

	    font-weight   :       700;

	  color: #667eea;


}

.pricing-period {

	   font-size: 0.9rem;
  color: #546e7a;
    margin-left: auto; 

	}

.service-comparison-section {
  max-width :   1200px;
  margin   :        0 auto;
    padding: 5rem 2rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
   border-radius: 15px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table {
	width: 100%;
   border-collapse: collapse;
   background: white;
        border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.comparison-table th    {
    padding: 1.5rem;
  text-align: left;
  font-weight: 600;
   font-size:      0.95rem; 

}

.comparison-table td {
  padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e0e6ed;
    color: #546e7a;
   font-size     :   0.95rem;
}

.comparison-table tbody tr:hover {
   background-color: #f8fafc;
}



.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.service-faq-section 
 {
    max-width: 1200px;
    margin :       0 auto;
    padding: 5rem 2rem;
}

.faq-container	{
  grid-template-columns: 1fr;
    display: grid;
     gap: 1.5rem;
    margin-top: 3rem;
} 

.faq-item {
   background    :white;

  border-radius     :10px;

    overflow: hidden;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

      transition: box-shadow 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;

	   padding: 1.5rem;

	   background: white;

	    border: none;

	   text-align  :    left;

	    cursor: pointer;

	   font-size: 1.05rem;

	   font-weight: 600;

	  color  :#2c3e50;

	       display: flex;

		 justify-content    :     space-between;

	   align-items: center;

	   gap: 1rem;

	    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-icon {
     width: 20px;
  height: 20px;
    stroke     :#667eea;
  fill: none;
   stroke-width: 2;
         transition: transform 0.3s ease;
    flex-shrink   :     0;
	}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
   overflow: hidden;
   transition: max-height 0.3s ease;
    max-height: 0;
}



.faq-item.active .faq-answer {
     max-height: 500px;
}

.faq-answer p {
		padding: 0 1.5rem 1.5rem 1.5rem;
	color: #546e7a;
   line-height: 1.7;
  font-size: 0.95rem;
	}

.service-cta-section  {
	   max-width: 1200px;
   margin: 4rem auto;
	padding: 3rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    text-align  :   center;
               color: white;



}

.service-cta-title		{
    font-size  : 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-cta-text {


   font-size: 1.05rem;
  margin-bottom  :  2rem;
   line-height  :1.7;
         opacity   :   0.95;}

.thankyou-section  
  {
	padding: 5rem 2rem;
    margin: 0 auto;
   max-width: 1200px;
}

.thankyou-container {
	background: white;
      padding: 3rem;
    border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   text-align: center;
}

.thankyou-icon


{
  width: 100px;
  height: 100px;
    margin     :   0 auto 2rem;
}

.thankyou-checkmark {
                    width: 100%;
	height     :        100%;
   stroke :   #2ecc71;
  fill :        none;
  stroke-width: 2;
}

.thankyou-title {
   font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
   margin-bottom    :1rem;
}

.thankyou-message {
  font-size     :1.05rem;
	 color: #546e7a;
  line-height   :1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
  margin-left: auto;
 margin-right: auto;
}

.thankyou-details   {
	  background: linear-gradient(135deg, #f0f4ff 0%, #f5f1ff 100%);
  padding :       2rem;
               border-radius: 10px;
   margin-bottom: 2.5rem;
	 text-align: left;
          max-width: 500px;
   margin-left: auto;
  margin-right: auto;

     }

.thankyou-subtitle	{
   font-size: 1.2rem;
   font-weight: 600;
   color: #2c3e50;
       margin-bottom: 1.5rem;
    text-align: center;
}

.detail-row{
  display :   flex;
  justify-content: space-between;
  padding     :   0.8rem 0;
  border-bottom: 1px solid rgba(102, 126, 234, 0.2);

}

.detail-row:last-child {
		border-bottom: none;
	}

.detail-label {
  font-weight: 600;
   color: #667eea;
}

.detail-value {
         color  :    #2c3e50;
}



.thankyou-next-steps {
                    padding: 2rem;
    -webkit-border-radius: 10px;
    border-left    :4px solid #667eea;
  -moz-border-radius: 10px;
   margin-bottom   :  2.5rem;
  text-align     :  left;
    background: white;
          border-radius   :    10px;
}

.next-steps-title {
    font-size: 1.2rem;
		 font-weight  : 600;
   color: #2c3e50;
   margin-bottom     :        1.5rem; 

}

.next-steps-list {
	  padding: 0;
    counter-reset:       step-counter;
  list-style: none; 



}

.next-steps-list li {
	 counter-increment: step-counter;
   padding: 0.8rem 0 0.8rem 2.5rem;
   color: #546e7a;
   position    :    relative;
  line-height: 1.6;
}

.next-steps-list li::before {
  content: counter(step-counter);

                    position: absolute;

   left :0;

    width :      24px;

    height: 24px;

  background: #667eea;

       color: white;

         border-radius: 50%;

  display: flex;

    align-items: center;

  justify-content: center;

   font-weight: 600;

   font-size: 0.85rem;
}

.thankyou-contact-info {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  padding: 1.5rem;
	border-radius: 10px;
	margin-bottom     :   2.5rem;
    text-align    :     center;
}

.contact-prompt   {


	color: #546e7a;
   margin-bottom: 0.8rem;
    font-size: 0.95rem;}

.contact-phone,
.contact-address {
		 color: #2c3e50;
   margin: 0.5rem 0;
	 font-size: 0.95rem;


}

.thankyou-actions {
	display: flex;
   gap: 1rem;
    justify-content    :     center;
               flex-wrap: wrap;
}

.thankyou-button-primary,
.thankyou-button-secondary {
   border-radius: 6px;
   text-decoration: none;
	-o-transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 14px 32px;
    -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
   font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thankyou-button-primary  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	    color     :    white;
	  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.thankyou-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.thankyou-button-secondary {
    background    :     white;
    color: #667eea;
   border: 2px solid #667eea;
}

.thankyou-button-secondary:hover {


    background: #f8fafc;
  transform: translateY(-2px);}

.thankyou-social-section		{
    max-width: 1200px;
       margin: 0 auto;
    padding: 5rem 2rem;
  background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
  border-radius: 20px;
}

.social-benefits-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top   :  3rem;
}

.social-benefit-card {
                    background: white;
  padding: 2rem;
   border-radius: 10px;
  text-align    :  center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-benefit-card:hover {

  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);


}

.benefit-icon {
    width    :   50px;
   height    :       50px;
    margin: 0 auto 1.5rem;
}

.benefit-svg {
   width   :      100%;
	height: 100%;
    stroke   :#667eea;
   fill: none;
   stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card-title {
               font-size: 1.2rem;
         font-weight: 600;
   color:#2c3e50;
    margin-bottom: 0.8rem;
}

.benefit-card-text


{

  color: #546e7a;
          line-height: 1.6;
   font-size: 0.95rem;


}
@media (max-width: 768px) {
    .services-hero-title {
        font-size: 1.8rem;
    }

    .services-hero-subtitle {
        font-size: 1rem;
    }

    .service-detailed-card {
        padding: 1.5rem;
    }

    .service-card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-card-title {
        font-size: 1.2rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .service-cta-section {
        padding: 2rem 1.5rem;
    }

    .service-cta-title {
        font-size: 1.5rem;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-title {
        font-size: 1.6rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-button-primary,
    .thankyou-button-secondary {
        width: 100%;
        text-align: center;
    }

    .social-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 1.3rem;
    }

    .service-detailed-card {
        padding: 1.25rem;
        border-left-width: 3px;
    }

    .service-card-title {
        font-size: 1.05rem;
    }

    .service-card-description {
        font-size: 0.9rem;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-details,
    .thankyou-next-steps,
    .thankyou-contact-info {
        padding: 1rem;
    }

    .pricing-amount {
        font-size: 1.5rem;
    }
}