* {
   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: #fafbfc;
}

.navbar {
  background: linear-gradient(135deg, #1a1f2e 0%, #2d3a4a 100%);
   padding: 0.8rem 0;
    position: sticky;
   top: 0;
    z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-container {

	    max-width: 1200px;
   margin: 0 auto;
   padding: 0 1.5rem;
   display: flex;
  justify-content: space-between;
    align-items: center;
     }

.nav-brand img {
               height    :     94px;
    width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {


    display: flex;
   list-style: none;
   gap: 2rem;

}

.nav-link {
   color: #ffffff;
    text-decoration   :   none;
  font-weight   :  500;
                    padding   :      0.5rem 1rem;
   transition: all 0.3s ease;
   border-radius: 4px; 
	
}

.nav-link:hover {
     background-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);}

.burger-menu {
	 display: none;
   background   :      none;
       border : none;
    cursor: pointer;
  padding: 0.5rem;
}

.burger-menu img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1f2e;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        border-radius: 0;
    }
}.hero-section {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
   gap: 3rem; 
    max-width: 1200px; 
   margin: 0 auto; 
   padding: 4rem 1.5rem; 
  align-items: center; 
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
}

.hero-content h1 {
     font-size : 3rem;
  color: #1a1f2e;
  margin-bottom: 1.5rem;
  line-height: 1.2;
    font-weight: 700;
	}

.hero-content p {
  font-size: 1.1rem;
    color: #555;
  margin-bottom     :       2rem;
   line-height: 1.8;
}

.cta-button {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color :        white;
    padding   :1rem 2.5rem;
   text-decoration: none;
   border-radius: 8px;
	font-weight: 600;
    transition:  all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.hero-image img {
   width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
} @media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}.intro-section {
    max-width: 1200px;
   margin: 0 auto;
    padding: 4rem 1.5rem;
}

.intro-container {
 display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.2rem;
  color: #1a1f2e;
  margin-bottom: 1.5rem;

}

.intro-text p {


    color  :     #555;
    margin-bottom: 1.5rem;
  line-height: 1.8;
	font-size:     1rem; 
	}

.intro-image img
{
  width: 100%;
    border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
    .intro-container {
        grid-template-columns: 1fr;
    }

    .intro-text h2 {
        font-size: 1.6rem;
    }
}.process-section     {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
   padding: 4rem 1.5rem;
    margin: 2rem 0;
}

.process-section h2 {
  text-align: center;
   font-size: 2.2rem;
    color: #1a1f2e;
    margin-bottom  :  3rem;
}

.process-grid
{
  max-width: 1200px;
   margin   :        0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.process-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   :  2px solid transparent;
}

.process-card:hover {
  transform: translateY(-5px);
  border-color  :       #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.process-number {
   display: inline-block;
  width: 48px;
	height: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  border-radius: 50%;
      text-align :  center;
    line-height: 48px;
   font-weight: 700;
         font-size  : 1.3rem;
   margin-bottom: 1rem;

}

.process-card h3 {
   font-size: 1.3rem;
  color: #1a1f2e;
  margin-bottom: 1rem;
}

.process-card p {
  color: #666;
          line-height: 1.7;
  font-size: 0.95rem;
}@media (max-width: 768px) {
    .process-section h2 {
        font-size: 1.6rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}.services-showcase {
    margin: 0 auto;
   padding: 4rem 1.5rem;
	 max-width:   1200px;

}

.services-showcase h2 {
    text-align: center;
   font-size: 2.2rem;
   color: #1a1f2e;
   margin-bottom :       3rem;
}

.services-wrapper {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-item {
  background: white;
    border-radius: 12px;
    overflow     :      hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   transition: all 0.3s ease;
}

.service-item:hover   {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
	
}

.service-item img		{
    width: 100%;
    height: 240px;
  object-fit: cover;
}

.service-item h3 {
    font-size   :    1.4rem;
    color: #1a1f2e;
       padding: 1.5rem 1.5rem 0;
    margin-bottom: 0.5rem;
}

.service-item p {
    padding: 0 1.5rem;
    color :      #666;
   font-size: 0.95rem;
   line-height: 1.7;
   margin-bottom: 1rem;
}

.service-tag {
	display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
	 padding: 0.4rem 1rem;
    border-radius    :        20px;
   font-size: 0.85rem;
  margin: 0 1.5rem 1.5rem;
}@media (max-width: 768px) {
    .services-showcase h2 {
        font-size: 1.6rem;
    }

    .services-wrapper {
        grid-template-columns: 1fr;
    }
}.expertise-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
   padding: 4rem 1.5rem;
}

.expertise-content {
    max-width: 1200px;
     margin: 0 auto;
}

.expertise-content h2 {
   font-size: 2.2rem;
  color: #1a1f2e;
   margin-bottom: 3rem;
   text-align : center;
}

.expertise-grid {
   display     :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.expertise-box {
   background: white; 
     padding: 2rem; 
  border-radius   :        12px; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.08); 
   border-left: 4px solid #667eea;
}

.expertise-box h3 {
    font-size: 1.2rem;
   color: #1a1f2e;
  margin-bottom: 1rem;
}

.expertise-box p {
    color: #666;
    font-size: 0.95rem;
  line-height: 1.7;
}@media (max-width: 768px) {
    .expertise-content h2 {
        font-size: 1.6rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }
}.results-section {
    max-width: 1200px;
   margin: 0 auto;
  padding: 4rem 1.5rem;
}

.results-section h2		{
	font-size: 2.2rem;
   color: #1a1f2e;
   margin-bottom: 3rem;
       text-align: center;
}

.results-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.result-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 2.5rem;
   border-radius: 12px;
                    text-align : center;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4); 
	
}

.result-number {
  font-size: 2.5rem; 
	    font-weight: 700; 
	               margin-bottom     : 1rem;
}

.result-card p {
  font-size: 0.95rem;
    line-height: 1.6;}
@media (max-width: 768px) {
    .results-section h2 {
        font-size: 1.6rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }
}.testimonials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
   padding: 4rem 1.5rem;


}

.testimonials-section h2 {
   text-align: center;
    font-size: 2.2rem;
   color     :     #1a1f2e;
    margin-bottom: 3rem;
}



.testimonials-grid {
    max-width: 1200px;
  margin    :     0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
    background: white;
  padding: 2rem;
  border-radius     :       12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        border-top    :    4px solid #667eea;
}

.testimonial p {
	 color: #555;
  font-size: 0.95rem;
 line-height: 1.8;
  margin-bottom: 1.5rem;
   font-style: italic;
}

.testimonial-author  {
   display: block;
  color: #1a1f2e;
  font-weight: 600;
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .testimonials-section h2 {
        font-size: 1.6rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}.programs-section {
   max-width :     1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.programs-section h2 {
    font-size: 2.2rem;
  color   :#1a1f2e;
  margin-bottom: 3rem;
	 text-align: center;
}

.programs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem; 

}

.program-card {
   background: white;
  padding: 2rem;
	border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 4px solid;
     transition: all 0.3s ease;
   display: flex;
          flex-direction: column;
}

.program-card.intensive {
  border-top-color: #667eea;
}

.program-card.standard {
    border-top-color: #764ba2;
}

.program-card.startup {
  border-top-color: #e67e22;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.program-card h3 {
    font-size: 1.4rem;
   color: #1a1f2e;
   margin-bottom: 1rem;
}

.program-price {
  font-size: 1.8rem;
  font-weight :    700;
	 color: #667eea;
    margin-bottom: 1.5rem;
}

.program-features {
  list-style: none;
   margin-bottom: 2rem;
   flex-grow: 1;
}

.program-features li {
    padding: 0.5rem 0;
  color  :#666;
    font-size: 0.95rem;
   line-height: 1.6;
    padding-left: 1.5rem;
  position: relative;
}

.program-features li:before {
  content: "✓";
   position: absolute;
	left: 0;
    color: #667eea;
   font-weight: bold;
}

.program-button {
	display: block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 0.8rem 1.5rem;
	text-decoration: none;
   border-radius: 8px;
   text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.program-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}@media (max-width: 768px) {
    .programs-section h2 {
        font-size: 1.6rem;
    }

    .programs-container {
        grid-template-columns: 1fr;
    }
}.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding:   4rem 1.5rem;
   text-align: center;
  margin: 3rem 0;

     }

.cta-wrapper {
    max-width: 800px; 
  margin: 0 auto;
}

.cta-section h2 {
    font-size: 2rem;
   margin-bottom: 1rem;
}

.cta-section p{
   font-size: 1.1rem;
  margin-bottom:  2rem;
    line-height: 1.8;
}

.cta-primary {
   display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2.5rem;
  text-decoration: none;
   border-radius: 8px;
   font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}@media (max-width: 768px) {
    .cta-section {
        padding: 2rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }
}.contact-section    {
	max-width: 1200px;
   margin: 0 auto;
    padding: 4rem 1.5rem;
}

.contact-section h2 {
   font-size    :      2.2rem;
    color: #1a1f2e;
  margin-bottom: 3rem;
    text-align: center;
}

.contact-wrapper


{
  grid-template-columns: 1fr 1fr;
   display: grid;
	 gap: 3rem;
}

.contact-form-container h3,
.contact-info-container h3 {
  font-size: 1.4rem;
   color: #1a1f2e;
   margin-bottom: 1.5rem;
}

.contact-form {
   display: flex;
  flex-direction: column;
                    gap: 1.5rem;

}

.form-group {
   display: flex; 
	    flex-direction: column;
}



.form-group label {
   font-weight: 600;
   color: #1a1f2e;
   margin-bottom: 0.5rem;
}


.form-group input,
.form-group select,
.form-group textarea {
   padding: 0.8rem;
    border: 2px solid #e0e0e0;
      border-radius: 8px;
    font-family     :   inherit;
  font-size: 0.95rem;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
    border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);


}

.form-submit {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
	padding: 1rem;
  border: none;
    border-radius: 8px;
          font-weight: 600;
   cursor: pointer;
  transition: all 0.3s ease;
	font-size: 1rem;

}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.contact-info-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
      padding: 2rem;
  border-radius: 12px;

}

.contact-info-block {
  margin-bottom:     2rem;
}

.contact-info-block h4 {


    font-size: 1rem;
    color: #1a1f2e;
    margin-bottom  :      0.5rem;
   font-weight: 600;
}

.contact-info-block p {
  color: #666;
    font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-block a {
       color: #667eea;
   text-decoration: none;
   font-weight     :       600;
     }

.contact-info-block a:hover {
   text-decoration: underline;
}

.map-container {
   background: white;
  padding: 1.5rem;
   border-radius: 8px;
  margin-top: 1.5rem;
}

.map-address {
  color: #666 !important;
    font-size: 0.9rem !important;
}@media (max-width: 768px) {
    .contact-section h2 {
        font-size: 1.6rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}.footer {
  background: linear-gradient(135deg, #1a1f2e 0%, #2d3a4a 100%);

   color: white;

  padding: 3rem 1.5rem 1.5rem;

   margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
  margin-bottom: 2rem;
   padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
    height: 136px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-info h4,
.footer-links h4  {
   font-size: 1rem;
	margin-bottom: 1rem;
  font-weight: 600;
}

.footer-info p,
.footer-links a {
  color: rgba(255,255,255,0.8);
    font-size   :     0.9rem;
    line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
   color: #667eea;


}

.footer-links ul {
    list-style: none;
}

.footer-links li	{
	margin-bottom: 0.5rem;
}

.footer-legal {
    text-align: center;
  color: rgba(255,255,255,0.6);
       font-size    :       0.85rem;
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 2rem 1.5rem 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
  color: white; 
      padding: 5rem 1.5rem; 
   text-align: center; 
    min-height: 400px; 
	display: flex; 
	 align-items: center; 
   justify-content: center;
}

.services-hero-content h1 {
   font-size: 2.8rem;
   margin-bottom   :    1.5rem;
  line-height: 1.2;
   font-weight: 700;
}

.services-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
   opacity: 0.95;
}@media (max-width: 768px) {
    .services-hero {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }
}.services-intro {
   max-width: 1200px;
   margin: 0 auto;
   padding: 4rem 1.5rem;
}

.services-intro-container h2 {
	  font-size: 2.2rem;
  color: #1a1f2e;
  margin-bottom: 1.5rem;
  text-align: center;
	}

.services-intro-container > p {
   text-align: center;
   color: #666;
  font-size: 1.05rem;
  max-width: 800px;
   margin: 0 auto 2.5rem;
   line-height: 1.8;
}

.intro-benefits {
   display  :       grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
	}

.benefit {

    background: white;
  padding: 2rem;
        border-radius:12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
          transition:      all 0.3s ease;
	}

.benefit:hover {


  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);


}

.benefit-icon-num 
 {
  display: inline-block;
  width: 50px;
    height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
  border-radius: 50%;
   line-height: 50px;
    text-align: center;
    font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.benefit h3 {
   font-size     : 1.2rem;
      color: #1a1f2e;
   margin-bottom: 0.5rem;
}

.benefit p {
    color: #666;
	font-size: 0.95rem;
   line-height: 1.6;
}@media (max-width: 768px) {
    .services-intro-container h2 {
        font-size: 1.6rem;
    }

    .intro-benefits {
        grid-template-columns: 1fr;
    }
}.detailed-services {
	  max-width:     1200px;
	    margin: 0 auto;
	    padding: 4rem 1.5rem;
	  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
}

.detailed-services h2 {
	   font-size: 2.2rem;
    color: #1a1f2e;
    margin-bottom: 3rem;
  text-align: center;

}

.services-detail-wrapper {
   display: flex;
    flex-direction: column;
  gap     :       3rem;
}

.service-detail-card {
	       background: white;
       border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
    transition: all 0.3s ease;

}

.service-detail-card:hover {
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
  transform: translateY(-3px);
}

.service-detail-card.reverse {
	 direction: rtl;
}

.service-detail-card.reverse > * {
   direction: ltr;
}

.service-detail-image {
  overflow: hidden;
}

.service-detail-image img {
    width: 100%;
  height: 100%;
    object-fit: cover;
     transition: transform 0.3s ease;
}

.service-detail-card:hover .service-detail-image img {
  transform: scale(1.05);
}

.service-detail-content {
  justify-content: space-between;
  display: flex;
   padding: 2.5rem;
    flex-direction     :   column;
}

.service-detail-content h3  {
   font-size: 1.8rem;
     color: #1a1f2e;
  margin-bottom: 0.5rem;
}

.service-subtitle {
   color: #667eea;
   margin-bottom: 1rem;
   font-size: 0.95rem;
  font-weight: 600; 

}

.service-detail-content > p:not(.service-subtitle) {
  color: #666;
   line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-detail-features
	{
	background: #f8f9fa;
    padding: 1.5rem;
  border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-detail-features h4 {
  font-size: 0.95rem;
  color: #1a1f2e;
  margin-bottom: 1rem;
         font-weight: 600;
}

.service-detail-features ul {
	list-style: none;
}

.service-detail-features li {

   padding: 0.4rem 0 0.4rem 1.5rem; 
    color   :       #555; 
    font-size: 0.9rem; 
    position: relative;

}

.service-detail-features li:before {
  content: "✓";
    position: absolute;
  left: 0;
  color    :       #667eea;
    font-weight :    bold;
}

.service-pricing {
   display: flex; 
	  justify-content: space-between; 
	   align-items: center; 
	   padding: 1.5rem 0; 
	  border-top: 2px solid #e0e0e0; 
	  border-bottom: 2px solid #e0e0e0; 
	    margin-bottom: 1.5rem;
}

.price-label {
   color: #666;
   font-size: 0.9rem;
   font-weight: 500;
}

.price-value {

	  font-size: 1.6rem;
  color: #667eea;
 font-weight   :    700;

}

.service-cta {
               display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 0.9rem 2rem;
  text-decoration: none;
 border-radius: 8px;
    font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}@media (max-width: 1024px) {
    .service-detail-card {
        grid-template-columns: 1fr;
    }

    .service-detail-card.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .detailed-services {
        padding: 2rem 1.5rem;
    }

    .detailed-services h2 {
        font-size: 1.6rem;
    }

    .service-detail-content {
        padding: 1.5rem;
    }

    .service-detail-content h3 {
        font-size: 1.4rem;
    }

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}.service-comparison {
   max-width: 1200px;
    margin: 0 auto;
         padding: 4rem 1.5rem;
}

.service-comparison h2 {
  font-size: 2.2rem;
    color    :       #1a1f2e;
   margin-bottom: 2.5rem;
    text-align: center;
}

.comparison-table-wrapper {
       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 {
	  padding: 1.2rem;
    text-align: left;
   font-weight: 600;
   border-bottom: 2px solid #e0e0e0;
}

.comparison-table td {
       padding: 1.2rem;
  border-bottom: 1px solid #e0e0e0;
  color: #555;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-table tbody tr:hover {
    background-color: #f0f2f8;
}@media (max-width: 768px) {
    .service-comparison {
        padding: 2rem 1.5rem;
    }

    .service-comparison h2 {
        font-size: 1.6rem;
    }

    .comparison-table-wrapper {
        overflow-x: scroll;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}.process-services {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
  padding: 4rem 1.5rem;
}

.process-services h2 {
	 text-align: center;

	  font-size: 2.2rem;

	  color: #1a1f2e;

	    margin-bottom: 3rem;
}

.process-timeline {
  max-width:  1000px;
   margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 2rem;
}

.timeline-item {
  background: white;
    padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	 position: relative;
  text-align: center;
   transition: all 0.3s ease;
}

.timeline-item:hover {

  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
     }  

.timeline-number {
    display: inline-block;
    width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    border-radius: 50%;
   line-height: 56px;
    text-align: center;
   font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.timeline-item h3 {
	   font-size: 1.2rem;
   color: #1a1f2e;
  margin-bottom: 1rem;
	}

.timeline-item p {
    color: #666;
    font-size: 0.95rem;
   line-height: 1.6;
}@media (max-width: 768px) {
    .process-services {
        padding: 2rem 1.5rem;
    }

    .process-services h2 {
        font-size: 1.6rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }
}.faq-services    {
    max-width: 1200px;
   margin: 0 auto;
  padding: 4rem 1.5rem;
}

.faq-services h2 {
	font-size: 2.2rem;
  color: #1a1f2e;
   margin-bottom: 3rem;
   text-align: center;
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2rem;
}

.faq-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
    padding: 2rem;
   border-radius: 12px;
  border-left: 4px solid #667eea;
   transition: all 0.3s ease;
}

.faq-item:hover


{
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.faq-item h3 {
    font-size: 1.1rem;
   color: #1a1f2e;
   margin-bottom: 1rem;
    font-weight: 600; 
	
}

.faq-item p {
   color: #666;
  font-size: 0.95rem;
    line-height: 1.7;
}@media (max-width: 768px) {
    .faq-services {
        padding: 2rem 1.5rem;
    }

    .faq-services h2 {
        font-size: 1.6rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }
}.services-cta
{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 4rem 1.5rem;
  text-align: center;
   margin: 2rem 0;
}

.services-cta h2 {
    font-size: 2rem;
   margin-bottom: 1rem;
}

.services-cta p {
			font-size: 1.1rem;
   margin-bottom: 2rem;
    line-height: 1.8;
}@media (max-width: 768px) {
    .services-cta {
        padding: 2.5rem 1.5rem;
    }

    .services-cta h2 {
        font-size: 1.4rem;
    }
}.thankyou-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
  padding: 4rem 1.5rem;
  min-height: 100vh;
    display: flex;
   align-items: center;
   justify-content: center;
}

.thankyou-container {
	                    max-width   :   700px;
          text-align: center;
     }

.thankyou-icon {
    width : 120px;
  height: 120px;
                    margin  :  0 auto 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
   display   : flex;
    align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.thankyou-icon svg {
   width: 100%;
    height: 100%;
}

.thankyou-hero h1    {
  font-size: 2.5rem;
   color     :       #1a1f2e;
	 font-weight: 700;
  margin-bottom: 1rem;

}

.thank-subtitle {
					font-size: 1.1rem;
  color: #666;
	margin-bottom: 2.5rem;
     line-height :1.6;
}

.thankyou-message {
  background: white;
  padding    :  2.5rem;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.thankyou-message h2  
  {
  font-size: 1.6rem;
    color: #1a1f2e;
   margin-bottom: 2rem;
}

.message-steps {
  display:     grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.step {
          padding: 1.5rem;
    background: #f8f9fa;
   border-radius: 8px;
    transition: all 0.3s ease;
}

.step:hover {

  -moz-transform: translateY(-3px);
         background: #e8ecf1;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
     }

.step-num {

	display   : inline-block;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    border-radius: 50%;
  line-height: 44px;
   text-align: center;
   font-weight: 700;
   font-size: 1.2rem;
	margin-bottom: 0.8rem;


}

.step h3 {
    font-size: 1rem;
	color: #1a1f2e;
   margin-bottom: 0.5rem;
       font-weight: 600;
}

.step p {
  color: #666;
   font-size: 0.85rem;
   line-height: 1.5;
}

.quick-info     {
  background: #fff8e6;
    padding   :     1.5rem;
   border-radius: 8px;
  border-left: 4px solid #f39c12;
  margin-bottom: 2rem;
   text-align: left;
}

.quick-info p {
	color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
      margin-bottom: 0.5rem;
}

.quick-info strong {
         color: #1a1f2e;
}

.quick-info a {
    color:   #667eea;
    text-decoration: none;
    font-weight: 600;
}

.quick-info a:hover {
               text-decoration: underline;
	}

.next-steps-links {
  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

	  gap: 1.5rem;

	   margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
   padding: 1rem 2rem;
  border-radius: 8px;
 text-decoration: none;
  font-weight: 600;
   transition: all 0.3s ease;
         display: inline-block;
} 

.btn-primary   {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}  

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
   background :  white;
  color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
  background: #f8f9fa;
     transform: translateY(-3px);
}

.additional-info
	{
     background: white;
    padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.additional-info h3 {
    font-size: 1.4rem;
  color: #1a1f2e;
   margin-bottom: 1rem;
}

.additional-info p {
    color: #666;
	    font-size: 0.95rem;
	                    line-height: 1.6;
	  margin-bottom: 1.5rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 1.5rem;
	 margin-top: 1.5rem;
}

.info-card {
  background: #f8f9fa;
   padding: 1.5rem;
   border-radius: 8px;
    text-align: center;
   transition: all 0.3s ease;
    border-top: 3px solid #667eea;
}

.info-card:hover {
  transform: translateY(-3px);
  background: #e8ecf1;
}

.info-card h4 {
   font-size: 1rem;
                    color: #1a1f2e;
	 margin-bottom: 0.5rem;
	font-weight: 600;
}

.info-card p {
  color  : #666;
	font-size: 0.85rem;
   margin-bottom   :0;
}

.social-proof {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 3rem 1.5rem;

}

.proof-container {
           max-width: 1000px;
    margin    :    0 auto;
  text-align: center;
	}

.proof-container h2 {
   font-size: 1.8rem; 
    margin-bottom: 2.5rem;
}

.proof-stats {
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat {
  background: rgba(255,255,255,0.1);
   padding: 1.5rem;
   border-radius: 8px;
  backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}


.stat-number
	{
    font-size: 2.2rem;
    font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat p {
  font-size: 0.95rem;
    opacity: 0.95;
}@media (max-width: 768px) {
    .thankyou-hero {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .thankyou-hero h1 {
        font-size: 1.8rem;
    }

    .thankyou-message,
    .additional-info {
        padding: 1.5rem;
    }

    .message-steps {
        grid-template-columns: 1fr;
    }

    .next-steps-links {
        grid-template-columns: 1fr;
    }

    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}.policySection {
    padding: 80px 2rem;
     background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
     min-height: calc(100vh - 300px);
}

.policyContainer {
    max-width    :  800px;
  margin: 0 auto;
   text-align: left;
   background: white;
   padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.policyContainer h1 {
    font-size: 2.8rem;
    color: #1a1f2e;
   margin-bottom: 2rem;
  font-weight:700;
    border-bottom: 3px solid #667eea;
  padding-bottom: 1rem;
}  

.policyContainer h2 {
               font-size: 1.6rem;
  color: #1a1f2e;
   margin-top: 2rem;
   margin-bottom: 1.2rem;
  font-weight: 600;
    color: #667eea;
}

.policyContainer p {
   color :  #555;
  margin-bottom: 1.3rem;
  line-height: 1.8;
               font-size: 0.95rem;
}

.policyContainer strong {
    color: #1a1f2e;
  font-weight: 600;
}

.policyContainer em {
    color: #888;
   font-style: italic;
}

.policyContainer a {
    color: #667eea;
  text-decoration: none;
   font-weight: 500;
  transition: color 0.3s ease;
}

.policyContainer a:hover {
   color: #764ba2;
    text-decoration: underline;
}@media (max-width: 1024px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h1 {
        font-size: 2.4rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .policyContainer {
        padding: 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.8rem;
        min-height: auto;
    }

    .policyContainer {
        padding: 1.2rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}