* {

	    margin: 0;
    padding: 0;
	box-sizing: border-box;

}

html {
    font-size: 16px;
   scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    background-color: #fafafa;
}

.wrapper {
   display: flex;
    min-height: 100vh;
    width  :  100%;
          flex-direction: column;
     }

header.header-section    {
	  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); 
                    position: sticky; 
   top: 0; 
   z-index  :  999; 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	}

.main-navigation {
	    padding    :        16px 0;
	}

.nav-container     {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
   display: flex;
  justify-content: space-between;
   align-items: center;
}

.logo-wrapper {
    flex-shrink: 0;
}

.nav-logo {

	  height: 45px;
       width    :       auto;
       display: block;
     filter: brightness(0) invert(1);


}

.nav-toggle {
  display: none;
  flex-direction: column;
   cursor: pointer;
  gap: 6px;
}

.nav-toggle span {


    width: 25px;
   height: 3px;
    background-color :#ffffff;
    border-radius  :  2px;
   transition: all 0.3s ease; 

     }

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px); 
	
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);

}



.nav-menu {
  display:  flex;
   list-style :     none;
	gap: 32px;
  flex-wrap: wrap;
}

.nav-link
	{

	   color :      #ecf0f1;
       text-decoration: none;
  font-size: 15px;
    font-weight:       500;
	 transition: color 0.3s ease;
  position: relative;


}

.nav-link:after {


  content: '';
  position: absolute;
    bottom     :    -4px;
   left: 0;
    width: 0;
  height: 2px;
  background: linear-gradient(90deg, #e74c3c, #f39c12);
   transition: width 0.3s ease;
}

.nav-link:hover:after {
	width: 100%;
}

.nav-link:hover {
    color   :    #f39c12;
}

.hero-section {
	   display :   grid;
    grid-template-columns: 1fr 1fr;
        gap: 60px;
	 align-items    :  center;
       max-width: 1200px;
   margin: 0 auto;
	padding: 80px 20px;
          width: 100%;


}

.hero-content h1 {
   font-size: 48px;
  line-height: 1.2;
    color: #1a1a2e;
   margin-bottom     :      24px;
   font-weight: 700;


}

.hero-subtitle {
  font-size: 18px;
  color: #546e7a;
	margin-bottom: 32px;
  line-height :1.7;

}

.cta-button {
   display   :   inline-block;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
   color: white;
    padding :        15px 40px;
    border-radius     :        6px;
    text-decoration: none;
  font-weight: 600;
    font-size: 16px;
    transition     :     all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button:hover
	{
     transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
	}

.cta-button:active {
  transform: translateY(0);
}

.hero-image {
   display  :        flex;
    justify-content     :   center;
}

.hero-img {

	   max-width: 100%;
  height: auto;
	border-radius:  8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
     }

.about-section {

  background: #ffffff;
    padding     :      80px 20px;
	}

.about-wrapper {
   max-width: 1200px;
   margin: 0 auto;
  display   :     grid;
   grid-template-columns  :1fr 1fr;
    gap: 60px;
  align-items: center;
}

.about-section h2{
	  font-size: 38px;
   color: #1a1a2e;
  margin-bottom: 24px;
  font-weight: 700;
	}

.about-section p {
    font-size: 16px;

	    color: #555;

	  margin-bottom: 18px;

	  line-height: 1.8;
}

.about-image {
	display: flex;
  justify-content: center;
}

.about-img {

		max-width: 100%;
  height    :   auto;
   border-radius  :   8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	}

.services-preview {
  max-width: 1200px;
    margin: 0 auto;
  padding: 80px 20px;
    width: 100%;


}

.services-preview h2
	{
   font-size: 42px;
  text-align: center;
	color: #1a1a2e;
     margin-bottom: 60px;
    font-weight: 700;
} 

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
   width: 100%;
}

.service-card  {
    background: #ffffff;
   padding: 40px 30px;
	border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
   transition: all 0.3s ease;
   border-left :        4px solid #e74c3c;
}

.service-card:hover   {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-icon


{
  width:      60px;
	 height: 60px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 8px;
    display: flex;
   align-items:   center;
         justify-content: center;
    margin-bottom: 24px;
}

.icon-svg {
   width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  stroke: white;
	fill: white;
}

.service-card h3 {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 16px;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

.coaching-details {

	    display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items: center;
  max-width   :        1200px;
   margin: 0 auto;
  padding: 80px 20px;
  width: 100%;
	}

.coaching-left {
	display: flex;
	 justify-content  :    center;
}

.coaching-img     {
  max-width     :      100%;
    height: auto;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.coaching-details h2 {
    font-size: 38px;
  color: #1a1a2e;
    margin-bottom: 32px;
   font-weight: 700;
}

.coaching-list {
	    list-style: none;



}

.coaching-list li {
	position: relative;
   padding: 12px 0 12px 28px;
      font-size: 16px;
  color: #555;
   line-height     :1.6;
  margin-bottom: 8px;
}

.coaching-list li:before

{
  content: '';
   position: absolute;
    left: 0;
  top  :   16px;
   width: 8px;
  height: 8px;
  background     :   #e74c3c;
   border-radius: 50%;
}

.expertise-section  {
  background: #f5f6fa;
  padding    :    80px 20px;
}

.expertise-section h2 {
   font-size: 42px;
    text-align: center;
    color  :#1a1a2e;
  margin-bottom: 60px;
   font-weight: 700;
    max-width: 1200px;
  margin-left: auto;
    margin-right: auto;
}

.expertise-blocks  {
	  max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
	 width: 100%;
	
	}

.expertise-item {
  background: white;
    border-radius: 8px;
  overflow   : hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1); 

}

.expertise-img {
  width: 100%;
	    height: 240px;
	   object-fit: cover;
}

.expertise-item h3 {
  font-size: 24px;
    color: #1a1a2e;
  padding: 28px 24px 12px;
   font-weight: 600;
}

.expertise-item p {
    font-size: 15px;
  color: #666;
  padding: 0 24px 24px;
       line-height :   1.7;
}

.cta-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 60px 20px;
    text-align: center;
}

.cta-box {
	max-width: 800px;
  margin: 0 auto;
}  

.cta-section h2 {
    font-size:    40px;
	 color: white;
   margin-bottom: 20px;
  font-weight: 700;
}

.cta-section p {
                    font-size: 18px;
    color: #ecf0f1;
   margin-bottom: 40px;
	line-height: 1.7;
}  

.cta-large {
    padding   : 18px 50px; 
                    font-size: 18px;
}

.contact-section {
   max-width: 1200px; 
     margin: 0 auto; 
    padding: 80px 20px; 
	width    :       100%;
}

.contact-section h2 {
    font-size: 42px;
     color: #1a1a2e;
                    margin-bottom: 60px;
	text-align    :    center;
	 font-weight: 700;
}

.contact-wrapper  
  {
    grid-template-columns: 2fr 1fr;
   display :     grid;
    gap: 60px;
}

.contact-form {
    background: white;
       padding: 40px;
    border-radius:  8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);

}

.form-group {
          margin-bottom: 28px;
}  

.form-group label {

	    display: block;
    font-size: 15px;
	font-weight    :600;
  color: #2c3e50;
	margin-bottom: 10px;
     }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
  padding: 12px 16px;
 border: 1px solid #e0e0e0;
   border-radius: 6px;
   font-size: 15px;
    font-family: inherit;
   transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
   outline: none;
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-submit {
      width: 100%;
   padding: 15px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	color: white;
  border : none;
   border-radius: 6px;
   font-size: 16px;
    font-weight: 600;
    cursor: pointer;
   transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.form-submit:active {
	  transform: translateY(0);

}

.contact-info {
   background: #f9f9f9;
    padding     :     40px 30px;
	 border-radius: 8px;
}

.contact-info h3 {
       color: #1a1a2e;
    font-weight: 600;
  font-size: 22px;
  margin-bottom: 28px;


}

.contact-info p {
	font-size  : 15px;
    margin-bottom: 24px;
  line-height: 1.7;
   color  :  #555;
}

.footer-section	{
    background: #1a1a2e;
     color: #ecf0f1;
     padding: 60px 20px 40px;
   	margin-top: auto;
}

.footer-container {
   max-width: 1200px;
	margin: 0 auto; 
	
}

.footer-brand {
   margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  border-bottom: 1px solid rgba(236, 240, 241, 0.2);
}

.footer-col h4 {
	font-size: 16px;
    font-weight :  600;
    margin-bottom: 20px;
  color: white;
}

.footer-col ul {
   list-style: none;
}

.footer-col ul li {
   margin-bottom: 12px;
}

.footer-col a {
  color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #f39c12;
}

.footer-col p {
    font-size: 14px;
		color: #bdc3c7;
	line-height: 1.8;
}

.footer-bottom {
   text-align: center;
	    font-size: 14px;
		 color: #95a5a6;
}@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #16213e;
        gap: 0;
        border-bottom: 2px solid #e74c3c;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-link {
        display: block;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(236, 240, 241, 0.1);
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .coaching-details {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .expertise-blocks {
        grid-template-columns: 1fr;
    }
}.policySection  
  {
   padding: 80px 2rem;
  background  :  #f8f9fa;
}

.policyContainer {
   max-width: 800px;
    text-align: left;
   margin: 0 auto;}


.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;
}

.policyContainer ul {

    color: #7f8c8d;
	margin-bottom: 1.5rem;
    padding-left: 1.5rem;
   font-size: 1.1rem;
   line-height: 1.7;


}

.policyContainer ul li {
	 margin-bottom: 0.5rem;
}

.policyContainer em {
    color: #95a5a6;
  font-style: italic;
	
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p,
    .policyContainer ul {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
   padding: 100px 20px;
  text-align  :      center;
   color: white;
}

.services-hero-content h1 {
  font-size: 56px;
    font-weight: 700;
	margin-bottom:     20px;
  line-height: 1.2;
}

.services-hero-content p {
      font-size: 20px;

   color: #ecf0f1;

   line-height: 1.6;

 max-width :       700px;

    margin: 0 auto;
}

.services-main {
    max-width: 1200px;
         margin: 0 auto;
   padding: 80px 20px;
  width: 100%;
}

.services-container    {
   display: flex;
  gap: 50px;
  flex-direction: column;
}

.service-detailed-card {
  background:  white;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow   :    hidden;
 transition:       all 0.3s ease;
}

.service-detailed-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.service-card-header {
  background: linear-gradient(135deg, #f39c12, #e67e22);

       padding: 40px 30px;

    color: white;

    display: flex;

  align-items: center;

  gap: 30px;
}

.service-number {
  font-size: 48px;
  font-weight: 700;
	opacity :     0.3;
   min-width: 80px;
}

.service-card-header h2 {
   font-size: 32px;
  font-weight: 600;
  margin: 0;
      line-height: 1.3;
}

.service-card-body {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 40px;
  padding     :     40px;
    align-items: start;
}

.service-card-img {
   width: 100%;
   height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-description {
  display: flex;
    flex-direction: column;
   gap: 24px;
}

.service-description p {
  font-size    : 16px;
   color: #555;
    line-height  :      1.8;
}

.service-benefits {
  list-style: none;
    padding: 0;
}

.service-benefits li {
   font-size: 15px;
  color: #666;
          padding: 10px 0 10px 28px;
  position: relative;
	 line-height    :      1.6;
}

.service-benefits li:before {
  content: ''; 
  position    :      absolute; 
        left: 0; 
   top: 14px; 
  width: 6px; 
   height: 6px; 
  background: linear-gradient(135deg, #e74c3c, #c0392b); 
   border-radius: 50%;
}

.service-pricing {
     background: #f5f6fa;
    padding: 16px 20px;
    border-radius: 6px;
   border-left: 4px solid #e74c3c;
}

.price-tag {
    font-size:     14px;
         color: #2c3e50;
  font-weight: 600;
}

.process-section  
  {
    background :   #f9f9f9;
  padding     :       80px 20px;
}

.process-section h2 {

   max-width :  1200px;
    margin: 0 auto 60px;
  font-size   :  42px;
  text-align: center;
    color :    #1a1a2e;
  font-weight: 700;
     }

.process-steps {
        max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
	width: 100%;
}

.process-step {
   background: white;
	  padding: 40px 30px;
	   border-radius: 8px;
	   text-align: center;
	  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	  transition     :all 0.3s ease;
}

.process-step:hover {

	  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-number  {
 width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
  border-radius: 50%;
	display: flex;
   align-items: center;
                    justify-content: center;
    font-size: 24px;
   font-weight: 700;
   margin: 0 auto 20px;
}

.process-step h3 {
		font-size:     20px;
  color: #1a1a2e;
    margin :     15px 0;
    font-weight: 600;
     }

.process-step p {
          font-size: 14px;
       color: #666;
  line-height: 1.7;
	 margin: 0;}

.comparison-section	{
	     max-width: 1200px;
  margin: 0 auto;
	 padding    :   80px 20px;
  width    :    100%;
	}

.comparison-section h2 {
  font-size: 42px;
    text-align: center;
    color: #1a1a2e;
   margin-bottom: 60px;
   font-weight: 700;
	
} 

.comparison-table {
    display   :      grid;
     gap: 0;
  background     :      white;
     border-radius: 8px;
    overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.table-header {
   display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.header-cell
{
  font-weight: 600; 
	   font-size: 14px;
}

.table-header .table-cell

{
   padding   :   20px;
}

.table-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
   border-bottom: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}

.table-row:hover {
	         background: #f5f6fa;


}  

.table-row:last-child {
  border-bottom: none;
}

.table-cell {

  padding  :        18px 20px;
 font-size     :       14px;
    color: #555;
    line-height: 1.6;
}

.faq-section {
   padding: 80px 20px;
    background  :#f5f6fa;
}

.faq-section h2 {
    color   :        #1a1a2e;
    font-size: 42px;
  text-align: center;
	max-width: 1200px;
  margin: 0 auto 60px;
   font-weight: 700;
}

.faq-container {
  max-width: 900px;

	    margin: 0 auto;

			display : flex;

	    flex-direction: column;

	  gap: 24px;

	   width     :      100%;
}

.faq-item  
  {
   background: white;
   padding: 28px;
       border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #e74c3c;
	
}

.faq-question {
     font-size: 18px;
	color :  #1a1a2e;
	font-weight: 600;
	margin: 0 0 16px 0;
   cursor:  pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
    color:      #e74c3c;
}

.faq-answer {
   font-size: 15px;
   color: #666;
    line-height: 1.8;
  margin: 0;
}

.thankyou-section {
	   max-width: 900px;
    margin: 0 auto;
  padding  :    100px 20px;
	width: 100%;
	}

.thankyou-content {
   background: white;
    padding :      60px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align  :       center;
}

.thankyou-icon {
   margin-bottom: 30px;
}

.success-icon {
    width  :   80px;
    height: 80px;
  filter: drop-shadow(0 4px 12px rgba(46, 204, 113, 0.3));
}

.success-icon {

     stroke: #2ecc71;
    fill :    #2ecc71;


}

.thankyou-content h1 {


      font-size   :        48px;
    color     : #1a1a2e;
  margin-bottom: 20px;
  font-weight: 700;
}

.thankyou-message {
          font-size :      18px;

    color: #555;

  line-height: 1.7;

					margin-bottom: 40px;
}

.thankyou-details {
  background: #f5f6fa;
   padding: 30px;
    border-radius  : 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thankyou-details h2 {
  font-size: 22px;
   color: #1a1a2e;
  margin: 0 0 20px 0;
               font-weight: 600;
     text-align: center;
}

.details-grid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;


}

.detail-item		{

          display: flex;
   flex-direction: column;
   gap: 8px;
	}

.detail-label

{
		font-size: 13px;
   font-weight: 600;
    color: #2c3e50;
   text-transform: uppercase;
}

.detail-value {
  font-size :     15px;
    color: #555;


}

.thankyou-info {

	   background: white;
   border: 2px solid #e74c3c;
	border-radius: 8px;
    padding: 30px;
  margin-bottom: 40px;
    text-align: left;
	}

.thankyou-info h2

{
    font-size: 22px;
	color: #1a1a2e;
   margin   :        0 0 16px 0;
    font-weight: 600;
}

.thankyou-info p {

    font-size: 15px;

    color: #555;

   line-height: 1.8;

       margin: 0 0 12px 0;


}

.contact-phone {
    font-size: 18px;
   color: #e74c3c;
    margin-top: 16px;
}

.thankyou-benefits {
   text-align: left;
  margin-bottom: 40px;
}

.thankyou-benefits h3 {

    font-size: 20px;
  color: #1a1a2e;
	margin: 0 0 20px 0;
    font-weight: 600;

}

.benefits-list {
   list-style    : none;
    padding: 0;
   display: flex;
   flex-direction: column;
  gap: 12px;
}

.benefits-list li {

   font-size : 15px;
    color: #666;
  padding: 10px 0 10px 28px;
    position: relative;
	line-height: 1.6;
	}

.benefits-list li:before {
  content: '';
    position: absolute;
  left: 0;
                    top: 14px;
  width: 6px;
    height: 6px;
    background: #2ecc71;
   border-radius: 50%;
}

.thankyou-actions {
     display: flex;
         gap: 20px;
   justify-content: center;
      flex-wrap: wrap;
}

.cta-button.secondary {
   background: white;
   color: #e74c3c;
  border: 2px solid #e74c3c;
}

.cta-button.secondary:hover
{

        background: #f9f9f9;
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.2);}

.next-steps-section {
   background: #f9f9f9;
  padding: 60px 20px;
}


.next-steps-section h2 {
    max-width:     1200px;
  margin: 0 auto 50px;
   font-size   :  38px;
   text-align: center;
   color: #1a1a2e;
  font-weight: 700;
}

.steps-grid   {
    max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width     : 100%;
}

.step-card   {
  background: white;
    padding: 40px 30px;
    border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	text-align: center;
   transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-card-number   {
   width :      60px;
     height: 60px;
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
  color: white;
   border-radius: 50%;
    display: flex;
    align-items   :     center;
    justify-content: center;
  font-size: 28px;
   font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
  color: #1a1a2e;
  margin: 15px 0;
  font-weight: 600;
}

.step-card p {

	          font-size: 14px;
	color: #666;
    line-height: 1.7;
    margin: 0;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 36px;
    }

    .services-hero-content p {
        font-size: 16px;
    }

    .service-card-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .service-card-header h2 {
        font-size: 24px;
    }

    .service-card-body {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .table-header,
    .table-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .table-header .table-cell,
    .table-cell {
        padding: 12px 16px;
        font-size: 13px;
    }

    .thankyou-content {
        padding: 40px 20px;
    }

    .thankyou-content h1 {
        font-size: 36px;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
        gap: 16px;
    }

    .cta-button {
        width: 100%;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}