* {
    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: #333;
	 background-color: #fafafa;
}

.nav-container {
     background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   padding: 1rem 0;
    position: sticky;
  top   :   0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}

.nav-wrapper {
   max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
   display: flex;
  justify-content: space-between;
   align-items: center;
	
}

.nav-logo img {
    height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {

	   display: flex;
  list-style: none;
  gap: 2.5rem;
	}

.nav-link {
   color     :      #ecf0f1;
  text-decoration: none;
  font-weight     :   500;
    transition: color 0.3s ease;
 position: relative;
}

.nav-link:hover {
  color: #3498db;
}

.nav-link::after {
  content: '';
  position: absolute;
   bottom: -5px;
    left: 0;
   width: 0;
   height: 2px;
   background: #3498db;
   transition     :     width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle    {
    display:   none;
   flex-direction: column;
               background: none;
   border: none;
  cursor: pointer;
    gap: 6px;
}

.nav-toggle span {
    -webkit-border-radius    : 2px;
                    transition: all 0.3s ease;
  -o-transition   :     all 0.3s ease;
   -moz-transition: all 0.3s ease;
        -moz-border-radius     :    2px;
   width: 25px;
  border-radius: 2px;
   background: #ecf0f1;
  height: 3px;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
 align-items: center;
	padding:     4rem 2rem;
  max-width: 1200px;
    margin: 0 auto;
  background: linear-gradient(to right, #f8f9fa 0%, #ffffff 50%);
}

.hero-content h1 {
  font-size     :       3rem;
   color: #2c3e50;
  margin-bottom: 1rem;
                    font-weight: 700;
   line-height : 1.2;
}

.hero-subtitle {
   font-size:  1.1rem;
    color: #555;
	 margin-bottom   :       2rem;
  line-height: 1.8;
}

.cta-button
{
        display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
  padding: 1rem 2.5rem;
    border-radius: 50px;
	 text-decoration: none;
  font-weight: 600;
       transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);


}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.cta-button.secondary {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button.secondary:hover {

	  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);}

.hero-image img {
    width: 100%;
   height: auto;
   border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-preview {
  padding: 5rem 2rem;
   background: #ffffff;
}

.services-container {
         max-width: 1200px;
    margin     :       0 auto;
}

.services-preview h2 {
  font-size: 2.5rem;
	color:    #2c3e50;
   margin-bottom: 3rem;
  text-align: center;
}


.services-grid {


  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;

}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
   border-radius: 10px;
    transition: all 0.3s ease;
   border :     1px solid #ecf0f1;
    display: flex;
    flex-direction  :      column;
} 

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3498db;

}

.service-card h3 {
   color: #2c3e50; 
  margin-bottom: 1rem; 
    font-size: 1.3rem;
}

.service-card p {
   color: #666;
   margin-bottom: 1.5rem;
   flex-grow: 1;
}

.service-card img {


  width: 100%;
    height: 200px;
  object-fit: cover;
   border-radius: 8px;
     }

.value-proposition {
   padding    :5rem 2rem;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: white;
}

.vp-container {
   max-width: 1200px;
    margin: 0 auto;
	display: grid;
   grid-template-columns: 1fr 1fr;
	gap :  3rem;
	 align-items: center;
}

.vp-image img	{


    width: 100%;
                    height: auto;
    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

}



.vp-content h2 {


   font-size: 2.2rem;
   margin-bottom: 2rem;

}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
   position: relative;
  font-size: 1.05rem;
   line-height: 1.6;
}

.benefits-list li::before {

  content: '✓';
  position: absolute;
    left   :0;
    color: #3498db;
   font-weight: bold;
    font-size: 1.3rem;}

.cta-section {

	   padding: 4rem 2rem;
     background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
       color: white;
       text-align: center;


}

.cta-section h2 {
	 font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p	{
     font-size: 1.1rem;
         margin-bottom: 2rem;
    max-width: 600px;
  margin-left: auto;
  margin-right: auto;
     }

.contact-section {
    padding: 5rem 2rem;
   background: #ffffff;
}

.contact-container {
  max-width: 600px;
    margin: 0 auto;
}

.contact-section h2 {
   font-size: 2.2rem;
    color: #2c3e50;
   margin-bottom: 2rem;
	text-align: center;
}

.contact-form {


	display: flex;
  flex-direction: column;
    gap  :    1.5rem;


}

.form-group {
  display: flex;
  flex-direction  :        column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #2c3e50;
  font-weight  :600;
}

.form-group input,
.form-group textarea,
.form-group select
	{
   border-radius    :       5px;
   font-family: inherit;
  padding: 0.8rem;
	transition: border-color 0.3s ease;
  border: 1px solid #ddd;
         font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline:  none;
   border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-button {
	  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: white;
   padding: 1rem;
		border: none;
          border-radius   :       5px;
   font-size: 1rem;
  font-weight: 600;
	 cursor: pointer;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
     }

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.footer {
   background: #2c3e50;
   color: #ecf0f1;
    padding: 3rem 2rem;
}

.footer-wrapper {
	 max-width: 1200px;
    margin :       0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap  :2rem;
	 margin-bottom   :  2rem;
	
}

.footer-section h4 {
          color: #3498db;
   margin-bottom: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-section p {
	    line-height :      1.8;
}



.footer-section ul {
          list-style: none;
}

.footer-section ul li {
	 margin-bottom: 0.5rem;
}

.footer-section a {
   transition: color 0.3s ease;
   color   :  #ecf0f1;
    text-decoration :none;
}

.footer-section a:hover {

    color: #3498db;
}

.footer-bottom {
	   text-align  :  center;
	 padding-top: 2rem;
  border-top: 1px solid rgba(236, 240, 241, 0.2);
	color: #95a5a6;}@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #2c3e50;
        padding: 1.5rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .vp-container {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .services-preview h2 {
        font-size: 1.8rem;
    }

    .contact-section {
        padding: 2rem 1rem;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .nav-wrapper {
        padding: 0 1rem;
    }

    .nav-menu {
        top: 60px;
    }
}.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
    padding: 5rem 2rem;
   text-align: center;
	margin-top: 70px;
}

.services-hero-content h1 {
  font-size: 3rem;
    margin-bottom: 1rem;
  font-weight: 700;


} 

.services-hero-content p


{
   font-size :  1.3rem;
	 opacity: 0.9;
}

.services-detailed {
    padding   :        5rem 2rem;
  background: #ffffff;
}

.services-detailed-container {
   max-width: 1200px;
   margin: 0 auto;
}

.service-item {
  display: grid;
  grid-template-columns    : 1fr 1fr;
    gap: 3rem;
  align-items: center;
   margin-bottom: 5rem;
   animation: fadeInUp 0.8s ease;
}

.service-item.reverse {
     direction: rtl;
}

.service-item.reverse .service-item-content {
    direction    :       ltr;
}

.service-item.reverse .service-item-image  {
  direction: ltr;
}

.service-item-image img {
   width: 100%;
		height: auto;
    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-item-content h2 {
  font-size: 2rem;
   color: #2c3e50;
	margin-bottom: 1rem;
}

.service-item-content p {
   color: #555;
   line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.5rem; 
	
}

.service-item-content h3 {
   color  : #34495e;
  font-size  :        1.1rem;
     margin-bottom: 1rem;
  margin-top: 1.5rem;
}


.service-features {
       list-style: none;
   margin-bottom: 2rem;
}

.service-features li  
  {
  padding: 0.6rem 0;
	 padding-left: 1.8rem;
        position: relative;
    color: #666;
               line-height: 1.6;
}

.service-features li::before {
  content: '→';
   position: absolute;
    left     :   0;
        color: #3498db;
      font-weight: bold;
   font-size     :   1.2rem;
}

.service-duration {
  font-weight: 500;
    color: #2c3e50;
   background     :      #f0f8ff;
   border-left  :  4px solid #3498db;
   border-radius   :   5px;
    padding: 1rem;
}

.comparison-section {

    padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
     }

.comparison-container {
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-section h2 {
       font-size :   2.2rem;
  color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}



.comparison-table {


  width: 100%;
               border-collapse    :        collapse;
   background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	 border-radius: 10px;
    overflow: hidden;
}

.comparison-table thead {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: white;
}

.comparison-table th {
    padding: 1.5rem;
 text-align: left;
  font-weight     :        600;
}

.comparison-table td {
    padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #ecf0f1;
  color: #555;
}

.comparison-table tbody tr:hover {
   background: #f8f9fa;
}

.comparison-table .checkmark {
   font-size: 1.2rem; 
	color :    #2ecc71; 
	font-weight: bold;
}

.comparison-table .partial {
       color: #f39c12;
  font-weight: bold;
  font-size: 1.2rem; 

}

.process-section    {
     padding  :   5rem 2rem;
    background :   white;
}

.process-container  {
    max-width: 1200px;
   margin: 0 auto;
}

.process-section h2 {
   font-size    :  2.2rem;
   color: #2c3e50;
   margin-bottom: 3rem;
	text-align :center;
}

.process-steps {

	display   :        grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
}

.process-step {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
  padding: 2rem;
  border-radius  :       10px;
	 text-align: center;
	transition: all 0.3s ease;
   border: 1px solid #ddd;
}


.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
        color    :     white;
	
}

.process-step:hover h3,
.process-step:hover p {
   color :white;
}

.step-number {
   font-size: 2.5rem;
  font-weight  :       700;
   color: #3498db;
          margin-bottom: 1rem;
}

.process-step:hover .step-number  {
  color: white;
}

.process-step h3 {
    margin-bottom: 0.5rem;
	color: #2c3e50;
    font-size: 1.2rem;
}

.process-step p {

   color: #666;
      font-size: 0.95rem;}

.testimonials-section {
	 padding: 5rem 2rem;
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}

.testimonials-container {

	    max-width: 1200px;
  margin: 0 auto;}

.testimonials-section h2 {


    font-size: 2.2rem;
    color   :    #2c3e50;
  margin-bottom    :     3rem;
   text-align: center;
}

.testimonials-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background :white;
    padding: 2rem;
	border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #3498db;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);


}  

.testimonial-text {
    color :      #555;
  font-style    :  italic;
  margin-bottom: 1rem;
   line-height: 1.8;
}

.testimonial-author {
   color  :        #2c3e50;
     font-weight: 600;
   font-style: normal; 

}

.thankyou-section {
         padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  margin-top  :     70px;
  min-height: calc(100vh - 70px);
  display     :      flex;
    align-items:center;
}

.thankyou-container {
	  max-width: 1000px;
    margin: 0 auto;
  display: grid;
    grid-template-columns: 1fr 1fr;
	 gap: 3rem;
  align-items     :     center;
     width: 100%;

}

.thankyou-content{
  animation: slideInLeft 0.8s ease;
}

.success-icon {
    width: 80px;

	   height: 80px;

	  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);

	    color: white;

	   border-radius: 50%;

	   display: flex;

	  align-items     :     center;

	  justify-content: center;

	    font-size: 3rem;

	   font-weight: bold;

	  margin-bottom: 1.5rem;

	  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3); 

}

.thankyou-section h1 {
  font-size: 2.5rem;
   color: #2c3e50;
          margin-bottom: 0.5rem;
}

.thankyou-subtitle  
  {
                    font-size: 1.2rem;
   color: #3498db;
  margin-bottom: 2rem;
  font-weight: 500;
}

.thankyou-message   {
   background:       #f0f8ff;
		padding:     1.5rem;
  border-radius: 8px;
    border-left: 4px solid #3498db;
    margin-bottom: 2rem;
}

.thankyou-message p {
          color: #555;
   margin-bottom: 1rem;
   line-height: 1.7;
}

.thankyou-message p:last-child		{
  margin-bottom  :   0;
}


.next-steps {
   margin-bottom    :   2rem;
}

.next-steps h3 {
  color: #2c3e50;
   margin-bottom: 1rem;
    font-size: 1.1rem;
}

.steps-list {
    list-style: none;
}

.steps-list li {
   padding: 0.6rem 0;
   padding-left     :    2rem;
   position: relative;
   color: #666;
}

.steps-list li::before {
  content: '✓';
  position:   absolute;
          left: 0;
	color: #2ecc71;
  font-weight: bold;
   font-size: 1.3rem;
}

.action-buttons  
  {
   gap: 1rem;
      flex-wrap: wrap;
    display  :   flex;
}

.button-primary,
.button-secondary

{
   display: inline-block;
    padding: 1rem 2rem;
  border-radius: 50px;
   text-decoration: none;
 font-weight: 600;
	transition: all 0.3s ease;
    text-align     :        center;
}

.button-primary {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
 color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3); 
	
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4); 

}

.button-secondary {
    background: white;
   color: #3498db;
  border     :       2px solid #3498db;
	}

.button-secondary:hover {
       background: #3498db;
	 color: white;
  transform: translateY(-2px);
}

.thankyou-image img {
 width: 100%;
    height: auto;
   border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
 animation: slideInRight 0.8s ease;
}

.faq-section-thankyou {
   padding: 5rem 2rem;
  background: white;
}

.faq-container {
    max-width: 1000px;
  margin: 0 auto;
}

.faq-section-thankyou h2 {
    font-size: 2.2rem;
    color  :     #2c3e50;
  margin-bottom :3rem;
  text-align: center;
}

.faq-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.faq-item {
    background: #f8f9fa;
   padding: 1.5rem;
   border-radius: 10px;
  border-left    :     4px solid #3498db;
    transition: all 0.3s ease;
}

.faq-item:hover
{
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.faq-item h4 {
   color: #2c3e50;
    margin-bottom: 0.8rem;
   font-size: 1rem;


}

.faq-item p {
       color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
	}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .service-item.reverse {
        direction: ltr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }

    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .thankyou-section h1 {
        font-size: 1.8rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-item-content h2 {
        font-size: 1.3rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem;
        font-size: 0.8rem;
    }

    .thankyou-content {
        padding: 0 1rem;
    }
}.policySection {
  padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	margin-top: 70px;
  min-height: calc(100vh - 70px); 

}

.policyContainer {
    max-width: 800px;
    margin   :     0 auto;
    text-align: left; 
	
}

.policyContainer h1		{
	font-size : 2.8rem;

	   color: #2c3e50;

		margin-bottom: 2rem;

	    font-weight: 700;
}

.policyContainer h2 {
    font-size  :        1.8rem;
  color: #34495e;
    margin-top: 2.5rem;
  margin-bottom: 1rem;
   font-weight: 600;
  border-bottom: 2px solid #3498db;
   padding-bottom: 0.5rem;
}

.policyContainer p {
	text-align: justify;
    line-height: 1.8;
   margin-bottom  :    1.5rem;
     color: #555;
    font-size: 1rem;
}

.policyContainer p:last-child
{
   margin-top: 3rem;
   padding-top: 1.5rem;
         border-top: 1px solid #ecf0f1;
    color: #95a5a6;
    font-size: 0.9rem;
               text-align: center;
}
@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
        margin-top: 70px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}