* {
  margin: 0;

   padding: 0;

   box-sizing: border-box; 
	
}

html {
  scroll-behavior: smooth;
}

body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     color: #2c3e50;
   background-color: #ffffff;
         line-height :1.6;

}

.navbar {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 1rem 2rem;
  position: sticky;
  top: 0;
    z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	
}

.nav-container   {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
    justify-content: space-between;
    align-items: center;
} 

.nav-logo-wrapper {
    display: flex;
    align-items: center;

}

.nav-logo {
                       height: 74px;
    width: auto;
  filter: brightness(0) invert(1);}  

.nav-burger {
   display    :       none;
  flex-direction: column;
  cursor: pointer;
   background: none;
   border: none;
  gap:       6px;
}

.burger-line {
   width:25px;
  height: 3px;
   background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}



.nav-burger.active .burger-line:nth-child(2) {
   opacity: 0;
}

.nav-burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {

   list-style: none;
    display    : flex;
  gap: 3rem;


}

.nav-link {
   color: #ffffff;
  text-decoration: none;
    font-size    :        1rem;
  font-weight: 500;
     -o-transition: color 0.3s ease;
     transition: color 0.3s ease;
	 -moz-transition: color 0.3s ease;
}

.nav-link:hover {
		color: #00d4ff;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: center;
  padding: 4rem 2rem;
    max-width: 1200px;
	 margin :    0 auto;
  min-height: 600px;
}

.hero-content {
   display: flex;
   flex-direction   :    column;
       gap: 1.5rem;
}

.hero-title {

   font-size: 3rem;
   line-height: 1.2;
   color: #1a1a1a;
   font-weight: 700;
     }

.hero-subtitle {
    font-size: 1.2rem;
  color: #555;
    line-height: 1.8;
}

.hero-cta {
   display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
   padding: 1rem 2.5rem;
   border-radius: 50px;
    text-decoration: none;
  font-weight: 600;
   transition: all 0.3s ease;
    width :   fit-content;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.hero-cta:hover {
     transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.hero-image {
   width: 100%;
  height: auto;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-grid {
  background: linear-gradient(180deg, #f8f9fa 0%, #e8eef7 100%);
    padding: 4rem 2rem;
}

.benefits-container {
                    max-width: 1200px;
   margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
	color :  #1a1a1a;
    font-weight: 700;
}

.benefits-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap  :      2rem;
}

.benefit-card {
         background: white;
	padding: 2rem;
  border-radius    :    12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition   :    all 0.3s ease;
    border-left: 5px solid #667eea;


}

.benefit-card:hover {

	  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
  font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
   line-height: 1.7;
}

.process-showcase {
	padding: 4rem 2rem;
    max-width: 1200px;
   margin: 0 auto;
}

.process-flex {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 3rem;
    margin-top: 3rem;
}

.process-item {
   text-align: center;
          position: relative;
}

.process-number {
  font-size: 3.5rem;
  font-weight: 700;
    color: #667eea;
  margin-bottom: 1rem;
   opacity: 0.2;
}

.process-image 
 {
  width: 100%;
  height: 300px;
    object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.process-item h3 {
    font-size: 1.5rem;
               margin-bottom: 1rem;
  color: #1a1a1a;
}

.process-item p {
   color: #666;
   line-height: 1.8;
}

.services-preview {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

    padding: 4rem 2rem;
}

.services-preview .section-title {
		 color: #1a1a1a;
}

.services-grid
{
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

   gap: 2rem;

  max-width   :     1200px;

  margin: 3rem auto 0;
}

.service-card 
 {
   background: white;
   border-radius: 12px;
    overflow    :    hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
    display: flex;
  flex-direction: column; 
	
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);

}

.service-image {
      width: 100%;
   height: 250px;
    object-fit: cover;
}

.service-card h3
{
    font-size: 1.3rem;
    padding: 1.5rem 1.5rem 0.5rem;
  color:     #1a1a1a;
}

.service-card p {
                    padding: 0 1.5rem;
    color: #666;
    flex-grow: 1;
  line-height: 1.7;
}

.service-link {
    display: inline-block;
               padding     : 1rem 1.5rem;
   color: #667eea;
    text-decoration    :        none;
  font-weight: 600;
   margin: 1rem 1.5rem;
	 border: 2px solid #667eea;
	border-radius: 6px;
  transition: all 0.3s ease;
}

.service-link:hover {
    background:     #667eea;
  color: white;
}

.expertise-section {
   padding:     4rem 2rem;
  max-width    :1200px;
        margin: 0 auto;
}

.expertise-content {
         display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
    margin-top: 2rem;
}

.expertise-text p {
  font-size    :      1rem;
  line-height: 1.8;
  color: #555;
	margin-bottom: 1.5rem;
}

.expertise-image {
   width: 100%;
  height: auto;
  border-radius   :12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); 
	
}

.success-metrics {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
	color: white;
}

.success-metrics .section-title {
  color: white;
}

.metrics-grid {
                    display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
	 gap   :        2rem; 
	  max-width: 1200px; 
	    margin: 3rem auto 0;
}

.metric-box   {
   text-align: center;
   padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
   border-radius :       12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-number {
    font-size: 3rem;
   font-weight: 700;
   margin-bottom: 0.5rem;
}

.metric-box p {
   font-size: 1rem;
    line-height: 1.5;
}

.testimonials-section {
  padding: 4rem 2rem;
    max-width: 1200px;
                    margin: 0 auto;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
   margin-top:        2rem;
}

.testimonial-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
   padding: 2rem;
   border-radius   :       12px;
  border-left: 5px solid #764ba2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
	 line-height: 1.8;
  font-size: 1rem;
	margin-bottom: 1rem;
   font-style: italic;
    color  :   #333;
}

.testimonial-author {

		 color: #667eea;
  font-weight  :        600;
	}

.workshop-section {

	  background: linear-gradient(180deg, #f0f4ff 0%, #e0e7ff 100%);
    padding: 4rem 2rem;


}

.workshop-section .section-title {
          color:     #1a1a1a;
}

.workshop-grid 
 {
    display :  grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap  :   2rem;
   max-width: 1200px;
    margin: 3rem auto 0;
}

.workshop-card
{


   background     :       white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #667eea;
	}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.workshop-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
    color: #1a1a1a;
}

.workshop-card p {

	color: #666;
  margin-bottom: 1.5rem;
    line-height: 1.7;


}

.workshop-list  {

  list-style: none;


}

.workshop-list li {
  padding: 0.5rem 0;
 color: #555;
  border-bottom: 1px solid #e0e0e0;
}

.workshop-list li:last-child {
  border-bottom: none;
}

.workshop-list li:before {
  content: "✓ ";
    color: #667eea;
  font-weight: bold;
    margin-right:      0.5rem;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.cta-title	{
  font-size: 2.5rem;
   margin-bottom: 1rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.1rem;
   margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
   display: inline-block;
  background: white;
	color  :      #667eea;
    padding: 1rem 2.5rem;
  border-radius: 50px;
   text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover

{
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-section{
    padding: 4rem 2rem; 
	  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-wrapper {
  max-width: 600px;
    margin: 0 auto;
}

.contact-title {
   font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
  color: #1a1a1a;
    font-weight: 700;
}

.contact-subtitle {
   text-align: center;
   color: #666;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.contact-form {
   display: flex;
  flex-direction: column;
   gap: 1.5rem;
}

.form-row {
    display: grid;
   grid-template-columns    : 1fr 1fr;
    gap: 1rem;
}

.form-input, .form-textarea {
    padding     :       1rem;
   border: 2px solid #e0e0e0;
    border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 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 {
   grid-column: 1 / -1;
   resize: vertical;
    min-height: 120px;
}

.form-button {
    padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
   border: none;
  border-radius: 8px;
   font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
   padding :3rem 2rem 1rem;
    margin-top    :        4rem;
}

.footer-container {
  max-width: 1200px;
   margin: 0 auto;
}

.footer-top {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
   margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-section {
       display: flex;
   align-items: flex-start;


}

.footer-logo {
   height: 96px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-heading {
   font-size: 1.1rem;
   margin-bottom: 1rem;
 font-weight: 600;
	}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.7rem;
}

.footer-list a	{
  color: rgba(255, 255, 255, 0.8);
		text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color     :      #00d4ff;
}

.contact-info {
   margin-bottom: 0.8rem;
   line-height: 1.6;
}

.info-label{
   font-weight: 600;
     display  :      block;
  margin-bottom :  0.2rem;
}

.contact-info a {

	  color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
   transition: color 0.3s ease;
}

.contact-info a:hover {
    color  :      #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright
{
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2d2d2d;
        padding: 1rem 2rem;
        gap: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .expertise-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .process-flex {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-items {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-section {
        justify-content: center;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.5rem 1rem;
    }

    .nav-logo {
        height: 50px;
    }

    .hero {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .benefits-items {
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .process-image {
        height: 200px;
    }

    .service-image {
        height: 180px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .metric-box {
        padding: 1.5rem;
    }

    .metric-number {
        font-size: 2rem;
    }

    .testimonials-carousel {
        grid-template-columns: 1fr;
    }

    .workshop-grid {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        height: 70px;
    }

    .footer-top {
        gap: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .contact-form {
        gap: 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding     :       4rem 2rem;
   text-align: center;
}

.services-hero-content {
 max-width: 900px;
    margin: 0 auto;
}

.services-hero-title {
	font-size: 3rem;
   font-weight: 700;
    margin-bottom: 1rem;
    line-height   :    1.2;
}

.services-hero-subtitle {
   font-size   :  1.2rem;
       opacity: 0.95;
                  line-height: 1.8;
}

.services-main {
	padding: 4rem 2rem;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-main .section-title {
    margin-bottom: 3rem;
   text-align: center;
}

.service-detail-full {
    display :        grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
    margin-bottom: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef7 100%);
   border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-detail-alternate
{
	grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-detail-alternate .service-detail-content {
   direction: ltr;
}

.service-detail-content {
  gap: 1.5rem;
   flex-direction: column;
    display: flex;
}

.service-detail-title {
   font-size: 2rem;
  margin-bottom: 0.5rem;
  color:#1a1a1a;
  font-weight: 700;
}

.service-detail-intro {
  font-size: 1.1rem;
   color: #555;
  line-height: 1.7;
}

.service-features {
  padding: 2rem;
   background     :        white;
  border-radius: 10px;
	border-left: 5px solid #667eea;}

.feature-title  {
   font-size: 1.1rem;
  color: #1a1a1a;
	margin-bottom: 1rem;
    font-weight : 600;
}

.feature-list {
         list-style: none;
}

.feature-list li {
   padding: 0.6rem 0;
  padding-left: 1.5rem;
  position :relative;
   color: #555;
  line-height: 1.6;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
    left: 0;
   color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-benefits

{
   background: white;
  padding     :        2rem;
  border-radius  :       10px;
    border-left: 5px solid #764ba2;
}

.benefit-title {
  font-size: 1.1rem;
   color: #1a1a1a;
   margin-bottom: 1rem;
    font-weight: 600;
}

.benefits-list {
    display: grid;
  grid-template-columns: 1fr 1fr;
          gap: 1rem;
}

.benefit-item {
    display: flex;
   flex-direction: column;
 gap: 0.3rem;
}

.benefit-label {
   font-weight: 600;
    color: #764ba2;
               font-size: 0.9rem;
}

.benefit-value {
  color: #555;
   font-size: 0.95rem;
}

.service-pricing {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding:    2rem;
                    border-radius: 10px;
}

.pricing-title {
	 font-weight:    600;
    font-size: 1.1rem;
   margin-bottom: 1rem;
}

.pricing-info {
  display  :flex;
  flex-direction: column;
  gap: 0.8rem; 
	
}

.pricing-text {
 line-height: 1.6;
   opacity: 0.95; 

}

.pricing-period {
      font-weight: 600;
   font-size: 1rem;


}

.service-detail-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
   min-height: 400px;
}

.services-comparison		{
  background: linear-gradient(180deg, #f0f4ff 0%, #e0e7ff 100%);
   padding: 4rem 2rem;

}

.services-comparison .section-title {
   color: #1a1a1a;
}

.comparison-table-wrapper {
    max-width: 1200px;
  margin: 3rem auto 0;
      overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
   border-collapse: collapse;
   background: white;
}

.comparison-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.comparison-table th   {
  text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    padding: 1.5rem 1rem;
}

.comparison-table td {

	          padding: 1.2rem 1rem;
	border-bottom: 1px solid #e0e0e0;
   color: #555;

}

.comparison-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

.comparison-table tbody tr:hover {

	   background: #f0f4ff;
	}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.services-faq {
  padding: 4rem 2rem;
	background: white;
}

.faq-container {
    max-width: 900px;
   margin: 0 auto;
}

.services-faq .section-title {
       text-align: center;
  margin-bottom: 3rem;
}

.faq-items {
                    display: flex;
	 flex-direction: column;
   gap: 1.5rem;
}  

.faq-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef7 100%);
   padding   :   2rem;
   border-radius: 10px;
    border-left: 5px solid #667eea;
  transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-question	{
   font-size   : 1.1rem;
   color: #1a1a1a;
			margin-bottom: 1rem;
   font-weight :       600;
}

.faq-answer {
	color: #555;
  line-height: 1.8;
	 font-size    :0.95rem;
}

.thankyou-container {
  min-height: calc(100vh - 120px);
    display: flex;
	 align-items     :       center;
	 justify-content: center;
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef7 100%);
}

.thankyou-wrapper {
    background   :       white;
   padding: 4rem 3rem;
   border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   max-width: 700px;
    width: 100%;
    text-align: center;
}

.thankyou-icon {
  margin-bottom: 2rem;
  display    :      flex;
    justify-content: center;
}

.thankyou-icon svg {
  width: 100px;
    height: 100px;
  animation: checkmark-animation 0.6s ease-out;
}@keyframes checkmark-animation {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}.thankyou-title {
   font-size: 2.5rem;

	  color:      #1a1a1a;

	    margin-bottom  :0.5rem;

	   font-weight: 700;
}

.thankyou-subtitle {
	 font-size: 1.2rem;
   color: #667eea;
 margin-bottom     :   2rem;
   font-weight     :  600;
}  

.thankyou-message {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eef7 100%);
 padding     :    1.5rem;
  border-radius    :       10px;
	margin-bottom: 2rem;
     border-left: 5px solid #667eea;
}

.thankyou-message p {
  color: #555;
   line-height: 1.8;
  margin: 0;
}

.submission-details {
    background: #f8f9fa;
     padding: 2rem;
     border-radius: 10px;
       text-align: left;
      margin-bottom: 2rem;
}

.details-title {

	  font-size: 1.2rem;
  color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
	}

.details-grid {
   display: grid;
  grid-template-columns: 1fr 1fr;
                    gap: 1rem;
  margin-bottom: 1.5rem;
}

.detail-item {
  display     :flex;
  flex-direction: column;
   gap: 0.3rem;
}

.detail-label {
    font-weight: 600;
    color    : #667eea;
 font-size: 0.9rem;

}

.detail-value {
  color: #555;
}

.detail-message {
  border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
}

.detail-message .detail-label {
   display: block;
  margin-bottom: 0.5rem;
}

.detail-message-text {
  margin: 0; 
   line-height: 1.6; 
    color: #555;
}

.submission-time {
  text-align:   center;
  border-top: 1px solid #e0e0e0;
  padding-top: 1rem;
    margin-top: 1rem;
}

.time-label {
    font-weight: 600;
  color: #667eea;
    margin-right    :        1rem;
}

.time-value {

    color: #555;
	}

.thankyou-next-steps {
    margin-bottom: 2rem;
}

.steps-title {
      font-size: 1.2rem;
   color: #1a1a1a;
   margin-bottom: 1.5rem;
	font-weight: 600;

}

.steps-list {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 1.5rem;
}

.step-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef7 100%);
	 padding: 1.5rem;
   border-radius: 10px;
  text-align: center;
}

.step-number {
    width: 40px;
   height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   border-radius: 50%;
    display: flex;
  align-items: center;
     justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
   margin: 0 auto 1rem;
}

.step-item .step-title {
   font-size: 1rem;
   color: #1a1a1a;
    margin-bottom: 0.5rem;
   font-weight: 600;
}

.step-item p {
   color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
  margin :        0;
}

.thankyou-actions {
       display: flex;
    gap: 1rem;
  justify-content    :center;
    margin-bottom    :    2rem;
}

.action-link {
   display: inline-block;
  transition: all 0.3s ease;
   font-weight: 600;
   text-decoration    :  none;
   padding: 0.8rem 1.8rem;
    border-radius: 8px;
}

.primary-link {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.primary-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.secondary-link {


  background: white;
    color: #667eea;
   border: 2px solid #667eea;


}

.secondary-link:hover {
  background: #667eea;
   color: white;
}

.thankyou-support {
   border-top: 1px solid #e0e0e0;
   padding-top: 2rem;
	
}

.support-text {
  color: #666; 
  margin-bottom: 0.5rem; 
    font-size: 0.95rem;
}

.support-phone {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
    transition: color 0.3s ease;
}

.support-phone:hover {
    color     :       #764ba2;
}@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2rem;
    }

    .services-hero-subtitle {
        font-size: 1rem;
    }

    .service-detail-full {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .service-detail-alternate {
        direction: ltr;
    }

    .service-detail-image {
        min-height: 250px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.7rem;
    }

    .steps-list {
        grid-template-columns: 1fr;
    }

    .thankyou-wrapper {
        padding: 2rem 1.5rem;
    }

    .thankyou-title {
        font-size: 2rem;
    }

    .service-detail-title {
        font-size: 1.5rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-link {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 1.5rem;
    }

    .services-hero-subtitle {
        font-size: 0.9rem;
    }

    .service-detail-full {
        padding: 1.5rem;
    }

    .service-features,
    .service-benefits,
    .service-pricing {
        padding: 1.5rem;
    }

    .comparison-table {
        font-size: 0.75rem;
    }

    .thankyou-wrapper {
        padding: 1.5rem 1rem;
    }

    .thankyou-icon svg {
        width: 70px;
        height: 70px;
    }

    .thankyou-title {
        font-size: 1.5rem;
    }

    .service-detail-title {
        font-size: 1.2rem;
    }

    .step-item {
        padding: 1rem;
    }

    .steps-title {
        font-size: 1rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
    }
}.policySection {
   padding: 80px 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #e8eef7 100%);
  min-height: calc(100vh - 200px);
}

.policyContainer  
  {
   max-width :      900px;
   margin: 0 auto;
 text-align: left;
}

.policyTitle {
    font-size: 3rem;
	    color: #1a1a1a;
	    margin-bottom    :        2rem;
	   font-weight: 700;
	  text-align: center;
}

.policyContent {
	    background: white;
   padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policyContent h2 {
    font-size: 1.8rem;
	  color: #1a1a1a;
	    margin-top: 2rem;
	   margin-bottom    :1rem;
	  font-weight: 700;
	    padding-bottom: 0.5rem;
	    border-bottom: 2px solid #667eea;
}

.policyContent h2:first-of-type{
    margin-top: 0;
}

.policyContent p {
   color: #555;
   margin-bottom: 1.5rem;
    line-height: 1.8;
  font-size: 1rem;
}

.policyContent p:last-of-type {
  margin-bottom: 0;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
        min-height: auto;
    }

    .policyTitle {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContent {
        padding: 2rem;
    }

    .policyContent h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContent p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyTitle {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContent {
        padding: 1.5rem;
    }

    .policyContent h2 {
        font-size: 1.2rem;
        margin-top: 1rem;
        margin-bottom: 0.6rem;
    }

    .policyContent p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }
}