* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
   line-height: 1.6;
    background-color: #f8f9fa;
}

.navbar-main {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 1rem 0;
	position: sticky;
   top: 0;
   z-index: 100;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2); 
	
}

.navbar-container {
   max-width  :     1200px;
   margin: 0 auto;
          padding: 0 2rem;
    display: flex;
  justify-content: space-between;
    align-items: center;
}

.navbar-brand img {


  height: 45px;
    width: auto;
  filter: brightness(0) invert(1);
	}

.navbar-menu {
       display: flex;
   list-style: none;
	gap: 2rem; 
	
}

.navbar-menu a {

  color: white;
  text-decoration: none;
    font-weight: 500;
    transition:     opacity 0.3s ease;

}

.navbar-menu a:hover {
    opacity: 0.8;
}

.burger-menu
	{
  display: none;
  flex-direction: column;
   background: none;
  border: none;
   cursor: pointer;
   gap: 5px;
	
}

.burger-menu span {
  width: 25px;
   height: 3px;
    background: white;
  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  {
	  background: linear-gradient(to right, #f5f7fa, #c3cfe2); 
  padding: 5rem 2rem; 
  display: flex; 
	 align-items: center; 
    gap: 3rem; 
  max-width   :    1200px; 
      margin: 0 auto;
	}

.hero-content

{
 flex: 1;

}

.hero-content h1 {
  font-size: 3rem;
    color: #2c3e50;
    margin-bottom    :    1.5rem;
    line-height:      1.2;
}

.hero-content p {
   font-size: 1.1rem;
   color: #555;
    margin-bottom: 2rem;
}


.hero-image {
   flex: 1;
   max-width: 100%;
   height: auto;
   border-radius   : 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-button

{
   display: inline-block;
    padding     :        1rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    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 8px 20px rgba(102, 126, 234, 0.4);
}

.primary-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.secondary-btn {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	
}

.secondary-cta {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.section-container {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem; 
	
}

.value-proposition {
   padding   :      5rem 0;
   background     :       white;
}

.value-proposition h2 {
    text-align: center;
    font-size: 2.5rem;
   margin-bottom: 3rem;
  color: #2c3e50;
}

.value-grid {
    display:       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
		padding: 2rem;
	  border-radius: 12px;
	  text-align: center;
	    transition   : all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}


.icon-wrapper {
       width: 60px;
    height: 60px;
		margin: 0 auto 1.5rem;
	display  :  flex;
     align-items :  center;
   justify-content: center;
}

.icon-wrapper img {
    width: 100%;
   height: 100%;
   stroke: #667eea;
  transition:     all 0.3s ease;
}

.value-card:hover .icon-wrapper img {
   stroke: #764ba2;
  filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.4));
}



.value-card h3 {
	font-size   :  1.3rem;
   margin-bottom:       1rem;
    color: #2c3e50;
}

.value-card p

{
    color: #666;
    font-size: 0.95rem;
}

.approach-section {
    padding: 5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e0e7ff 100%);
}

.approach-section h2 {
  font-size: 2.5rem;
   margin-bottom   :      3rem;
         color :     #2c3e50;
} 

.approach-content {
	display    :        flex;
  align-items: center;
  gap: 3rem;
}

.approach-image {
	    flex: 1;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   max-width: 100%;
 height: auto;}

.approach-text {


  flex: 1;
	
     }

.approach-text h3 {
   color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.approach-text p {
  color: #555;
   margin-bottom: 1.5rem;
  font-size     :  1rem;
}

.approach-list {
   list-style: none;
  display: flex;
  flex-direction: column;
    gap: 0.8rem;
}

.approach-list li {
  padding-left: 1.5rem;
	position: relative;
  color     :   #2c3e50;
   font-weight: 500;
}

.approach-list li:before   {
  content: "✓";
  color: #667eea;
   position     :   absolute;
	 font-weight: bold;
    left :    0;
}

.services-preview     {
      padding: 5rem 0;
   background: white;
     }

.services-preview h2 {
   text-align: center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.services-grid {
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
   margin-bottom: 3rem;
     }

.service-item		{
  background: linear-gradient(to bottom right, #fafbff 0%, #f0f4ff 100%);
                    padding    : 2rem;
   border-radius: 12px;
	text-align: center;
   border-left   :4px solid #667eea;
   transition: all 0.3s ease;
}

.service-item:hover {
     box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
  transform: translateY(-5px);
	}


.service-item h3 {
	 font-size: 1.2rem;
   color: #2c3e50;
   margin: 1rem 0;
}

.service-item p {
	   color: #666;
    font-size: 0.95rem;
	}

.services-link-section {
   text-align: center;
   padding: 2rem;
  background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
   border-radius: 12px;
	
}

.services-link-section p {
  margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: 500;
}

.cta-consulting {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
				 color:   white;
    padding: 4rem 2rem;
   text-align: center;
}

.cta-consulting h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-consulting p {
    font-size: 1.1rem;
   margin-bottom: 2rem;
     opacity: 0.95;
}

.contact-section {
	   padding: 5rem 0;
   background    : white;
	}

.contact-section h2 {

	          text-align: center;
   font-size     :       2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
	}

.contact-wrapper {
       display :    grid;
          grid-template-columns: 1fr 1.2fr;
        gap     :     3rem;
}

.contact-info h3 {
  margin-bottom: 2rem; 
	     font-size  :     1.5rem; 
	    color    :   #2c3e50;
}

.contact-detail {
   margin-bottom: 2rem;
}

.detail-label {
    font-weight: 700;
  color: #667eea;
  display: block;
    margin-bottom: 0.5rem;
}

.contact-detail p {
	color: #555;
    line-height: 1.8;
}

.contact-form {
  background: linear-gradient(to bottom right, #f8f9fa 0%, #f0f4ff 100%);
    padding: 2.5rem;
     border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group	{
             margin-bottom :      1.5rem;
}

.form-group label {
  display: block;
    margin-bottom: 0.5rem;
  font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
  padding: 0.8rem;
  border  :  1px solid #ddd;
          border-radius: 6px;
    font-family  :       inherit;
    font-size     :    1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	  outline: none;
    border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);


}

.submit-btn


{
  width: 100%;
    padding:       1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
    border: none;
   border-radius: 6px;
     font-size: 1rem;
	 font-weight: 600;
    cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.footer-main {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);

  color: #ecf0f1;

    padding    :       4rem 0 1rem;
}

.footer-container		{
	 max-width: 1200px;
    margin: 0 auto;
  padding : 0 2rem; 

}

.footer-content    {
   display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
	 gap: 2rem; 
		 margin-bottom: 2rem;
}

.footer-brand img {


    height: 40px;
  filter: brightness(0) invert(1);
               margin-bottom: 1rem;
     }

.footer-info p


{
   font-size: 0.95rem;
	line-height :       1.8;
}

.footer-links h4

{
  margin-bottom: 1rem;
   font-size: 1rem;
   color: #fff;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ecf0f1;
	    text-decoration  :       none;
	    transition  :  color 0.3s ease;
	   font-size: 0.95rem;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(236, 240, 241, 0.1);
  font-size   : 0.9rem;
	opacity: 0.8;
	
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .navbar-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(102, 126, 234, 0.95);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .navbar-menu.active {
        max-height: 300px;
    }

    .navbar-menu li {
        padding: 0.8rem 1.5rem;
    }

    .hero-section {
        flex-direction: column;
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .approach-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .value-proposition h2 {
        font-size: 1.8rem;
    }

    .services-preview h2 {
        font-size: 1.8rem;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding  :   4rem 2rem;
     text-align: center;

}

.services-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.3rem;
	    opacity: 0.95;
}

.services-detailed {
      padding: 5rem 0;
	 background: white;
	}  

.services-detailed h2 {
   text-align: center;
	font-size: 2.5rem;
				 margin-bottom: 3rem;
   color: #2c3e50;
}

.service-detailed-card {
   margin-bottom: 4rem;
    padding: 3rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-detailed-card:hover {
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.service-detailed-card.alternate {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8e0ff 100%);
}

.service-card-header {
      display: flex;
    align-items: center;
   gap: 2rem;
    margin-bottom: 2rem;


}

.icon-wrapper-large    {
   width:    80px;

		height: 80px;

	   min-width: 80px;

	   display    :       flex;

	       align-items: center;

	       justify-content: center;

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

		border-radius:       12px;
}

.icon-wrapper-large img {
   width: 50%;
   height :      50%;
    stroke :    white;
   fill: none;
}

.service-card-header h3	{
   font-size: 2rem;
 color: #2c3e50;
  margin: 0;
}

.service-card-content {
   display: flex;
    gap: 3rem;
  align-items: center;}

.service-card-image {
   flex: 0 0 40%;
	border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card-text {
  flex: 1;
}

.service-card-text h4		{
    font-size: 1.2rem;
  color: #2c3e50;
    margin: 1.5rem 0 1rem;
}

.service-card-text p {
  color: #555;
  font-size: 1rem;
    line-height: 1.8;
   margin-bottom: 1rem;
} 

.service-list {
   list-style:   none;
   display    :     flex;
         flex-direction :   column;
  gap: 0.8rem;
  margin: 1rem 0;
}


.service-list li{
	 padding-left: 1.5rem;
  position  :     relative;
       color     :       #2c3e50;
	
}

.service-list li:before {
  content: "▸";
	position: absolute;
   left: 0;
    color: #667eea;
  font-size  :        1.2rem;
    font-weight     :       bold;
}

.service-highlights {
  background: rgba(102, 126, 234, 0.08);
  padding: 1rem;
	border-left: 4px solid #667eea;
    border-radius: 4px;
    font-size: 0.95rem;
 color: #555;
    margin-top: 1.5rem;
}

.service-packages {
    padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
}

.service-packages h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom     :        1rem;
   color     :      #2c3e50;
}

.section-intro {
    text-align: center;
    color: #666;
  font-size: 1.1rem;
   margin-bottom: 3rem;
}

.packages-grid   {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
     }

.package-card
	{

	  background: white;
	 padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
   position: relative;
    transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
 border-top  : 4px solid #667eea;

}

.package-card:hover  {
     transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2); 

}

.package-card.professional {
  border-top-color     :        #f093fb;
  transform: scale(1.02);
}

.package-card.professional:hover 
 {
  transform: scale(1.02) translateY(-10px);
	
}

.package-card.enterprise {
        border-top-color: #11998e;
}

.package-badge {
   position: absolute;
   top: -12px;
   left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color :   white;
	 padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.package-card h3   {
       font-size: 1.5rem;
   color: #2c3e50;
   margin-bottom: 1rem;
}

.package-price {
	    font-size: 2.5rem;
	font-weight: 700;
   color: #667eea;
  margin-bottom :  0.5rem;


}

.package-duration {
    color:        #999;
   font-size: 0.95rem;
      margin-bottom: 2rem;
}

.package-list 
 {
  margin-bottom: 2rem;
    flex-direction: column;
  display: flex;
  text-align: left;
    gap:        1rem;
        list-style: none;
}

.package-list li {
  padding-left: 1.5rem;
    position  :  relative;
	 color: #555;
   font-size: 0.95rem;
}

.package-list li:before {
  content: "✓";
   position  :absolute;
    left: 0;
  color: #667eea;
   font-weight: bold;
}

.package-btn   {
   display: inline-block;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  text-decoration :   none;
    border-radius  :     50px;
  font-weight: 600;
  transition: all 0.3s ease;
    border: none;
   cursor: pointer;
    width   :        100%;
   font-size :  1rem;
}

.package-btn:hover {
     transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);

}

.package-btn.premium


{
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.methodology-section {
 padding: 5rem 0;
    background: white;
}

.methodology-section h2  {
	 text-align: center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
    color    :      #2c3e50;
}

.methodology-steps


{
	display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

	gap: 2rem;
}

.method-step {
  text-align: center;
    padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
  border-radius: 12px;
   transition   :       all 0.3s ease;


}

.method-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
}

.step-number {
    width     :        50px;
   height: 50px;
   margin: 0 auto 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color:   white;
    border-radius   :   50%;
  display :      flex;
   align-items: center;
  justify-content :   center;
                    font-size: 1.5rem;
   font-weight: 700; 

}

.method-step h4 {
   font-size: 1.2rem;
   color: #2c3e50;
    margin-bottom: 1rem;
}

.method-step p     {
    color: #666;
    font-size: 0.95rem;
}

.expertise-section {


  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e0e7ff 100%);
}

.expertise-section h2 {
  text-align: center; 
   font-size: 2.5rem; 
    margin-bottom: 3rem; 
  color: #2c3e50;
}

.expertise-grid {
    display  :      grid; 
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
	   gap :      2rem;
}

.expertise-item	{


	 background: white;
	padding: 2rem;
  border-radius: 12px;
   text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;


}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
}

.expertise-item h3
{
      font-size: 1.2rem;
    color: #2c3e50;
	margin: 1rem 0;

}

.expertise-item p
	{
  color: #666;
         font-size: 0.95rem;
}

.faq-section {
   padding     :   5rem 0;
                    background   :        white;


}

.faq-section h2
{
  text-align: center;
  font-size     : 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-items {
	display: flex;
	flex-direction: column;
		 gap: 1rem;
    max-width: 800px;
   margin: 0 auto;
}

.faq-item {
  border :        1px solid #e0e0e0;
  border-radius: 8px;
   overflow: hidden;
}

.faq-question {
   width: 100%;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
    border: none;
         cursor: pointer;
	 display    :  flex;
  justify-content: space-between;
  align-items: center;
    font-size: 1rem;
   font-weight: 600;
   color: #2c3e50;
   transition     :      all 0.3s ease;

}

.faq-question:hover {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8e0ff 100%);
}

.faq-question.active 
 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.faq-icon		{
	font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
	
	}

.faq-answer {
	    max-height: 0;
        overflow: hidden;
   transition: max-height 0.3s ease;
}

.faq-answer.active
	{
    max-height: 500px;
}

.faq-answer p {


	padding: 1.5rem;
   color: #555;
   background: white;
    font-size: 0.95rem;
    line-height: 1.8;


}

.thankyou-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
   min-height: 80vh;
  display: flex;
					align-items: center;
}

.thankyou-wrapper {
  background: white;
 padding: 3rem;
     border-radius     :    16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.thankyou-icon {


         width: 80px;
   height: 80px;
   margin: 0 auto 2rem;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border-radius: 50%;
   display  :flex;
   align-items: center;
    justify-content: center;
   color    :  white;
}

.thankyou-wrapper h1 {
   font-size   :       2.5rem;
  color: #2c3e50;
   margin-bottom: 1rem;
}

.thankyou-subtitle {

	   font-size: 1.1rem;
   color: #666;
   margin-bottom: 3rem;
}

.thankyou-details {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);

  padding   :    2rem;

   border-radius: 12px;

    margin-bottom: 2rem;

   text-align: left;
}

.thankyou-details h2 {
   font-size: 1.3rem;
    color: #2c3e50;
   margin-bottom   :      1.5rem;
  text-align   :       center;
}

.detail-group    {
    display: flex;
   justify-content: space-between;
   padding: 0.8rem 0;
  border-bottom: 1px solid #e0e0e0;
     }

.detail-group:last-child {
  border-bottom   : none;
}

.detail-label {
  color: #667eea;
   font-weight: 600;
}

.detail-value {
   color: #555;
  word-break: break-word;
  text-align    :   right;
    flex: 1;
   margin-left: 1rem;
}

.thankyou-message {
    text-align  :      left;
          margin-bottom: 2rem;
	
}

.thankyou-message h3 {
  font-size: 1.2rem;
   	color     : #2c3e50;
      margin-bottom    :       1rem;
}

.process-list {
  list-style: none;
   counter-reset: step-counter;
         padding    :      0;
}

.process-list li  
  {
		 counter-increment: step-counter;
    padding:        0.8rem 0 0.8rem 2.5rem;
   position: relative;
    color: #555;
}

.process-list li:before {
  content: counter(step-counter);
   position: absolute;
  left: 0;
    width:       24px;
    height    :        24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  border-radius: 50%;
	 display: flex;
   align-items   :center;
   justify-content: center;
  font-size: 0.8rem;
    font-weight: bold;
}

.thankyou-actions {
  display: flex;
  gap: 1rem;
    margin-bottom: 2rem;
	flex-wrap: wrap;


}

.action-btn {

	                    flex: 1;
   min-width: 150px;
        padding: 1rem 2rem;
	border-radius    :     50px;
  text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
   border: none;
    cursor: pointer;
  font-size    :1rem;
     }

.action-btn.primary {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	  color: white;

}

.action-btn.primary:hover 
 {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}



.action-btn.secondary   {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	color: white;
}

.action-btn.secondary:hover 
 {
  transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(240, 147, 251, 0.3);
}

.thankyou-help {
    padding-top: 1.5rem;

	   border-top: 1px solid #e0e0e0;

	    font-size: 0.95rem;

	  color: #666;
}

.thankyou-help strong {
	color: #667eea;
}

.cta-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	padding: 4rem 2rem;
  text-align  :center;
}

.cta-services h2 {
  font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-services p {
          font-size: 1.1rem;
     margin-bottom: 2rem;
	 opacity: 0.95;
}@media (max-width: 1024px) {
    .service-card-content {
        flex-direction: column;
    }

    .service-card-image {
        flex: 1;
        width: 100%;
    }

    .service-detailed-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1.1rem;
    }

    .service-card-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .service-card-header h3 {
        font-size: 1.5rem;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
    }

    .detail-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .detail-value {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-detailed-card {
        padding: 1.5rem;
    }

    .thankyou-wrapper {
        padding: 1.5rem;
    }

    .thankyou-wrapper h1 {
        font-size: 1.8rem;
    }
}.policySection {
    padding: 80px 2rem;
    background: #f8f9fa;

}

.policyContainer {
    margin: 0 auto;
    text-align: left;
    max-width: 800px;
}

.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;
    }
}