* {
                    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   :     #fafafa;
   letter-spacing: 0.3px;
}

.header-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
   position :sticky;
   top: 0;
   z-index: 100;
}

.nav-wrapper {
    max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
}

.nav-container		{
  display: flex;
  justify-content: space-between;
   align-items: center;
  padding    :  16px 0;
}

.logo-section {
  flex-shrink: 0; 
	
}

.company-logo {
	 height  :     45px;
  width: auto;
    display: block;
}

.nav-links {
   display: flex;
   list-style: none;
   gap: 32px;
}

.nav-item {
    text-decoration: none;
    color:#2c3e50;
  font-weight: 500;
	font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-item::after {
  content: '';
        position: absolute;
  bottom: -4px;
    left: 0;
    width:        0;
    height: 2px;
  background-color: #3498db;
	transition: width 0.3s ease;


}

.nav-item:hover::after {
    width: 100%;
}

.burger-toggle {
	 display   :      none;
		cursor    :        pointer;
   flex-direction    :       column;
   gap: 5px;
}

.burger-icon {
		width  :    24px;
    height: 24px;
  stroke: #2c3e50;
  transition: all 0.3s ease;
}@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-links.nav-active {
        max-height: 300px;
    }

    .nav-item {
        padding: 16px 20px;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-item::after {
        display: none;
    }
}.hero-block {
          max-width: 1200px;
   margin: 0 auto;
    padding: 60px 20px;
  display:  grid;
	grid-template-columns: 1fr 1fr;
  gap: 48px;
   align-items: center;
}

.hero-content {
     display   :flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title

{
         font-size: 42px;
   font-weight     :     700;
    line-height  :       1.3;
                    color: #2c3e50;
}

.hero-subtitle {
   font-size: 18px;
   color: #555;
          line-height : 1.5;
}

.hero-image	{
	width: 100%;
  height  :    auto;
   border-radius: 12px;
  box-shadow: 0 8px 24px rgba(52, 152, 219, 0.15);
}

.cta-button 
 {
   display: inline-block;
   padding: 14px 32px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
  transition: all 0.3s ease;
 width: fit-content;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.cta-button:hover 
 {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}@media (max-width: 768px) {
    .hero-block {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 32px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}.section-title {
    font-size  :   36px;
    font-weight: 700;
    text-align: center;
   color: #2c3e50;
  margin-bottom: 48px;
}

.intro-section		{
	  max-width: 1200px;
    margin  : 0 auto;
      padding :60px 20px;
	}



.intro-cards	{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	 gap: 32px;

}

.intro-card {
  background: white;
    padding: 32px;
   border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
    transition: all 0.3s ease;
}  

.intro-card:hover {


  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(52, 152, 219, 0.15);
	}

.icon-wrapper {
  justify-content: center;
   margin-bottom: 20px;
   display: flex;
}

.card-icon    {
		 width: 48px;
     height: 48px;
   stroke: #3498db;
    fill: none;
   stroke-width: 2;
    stroke-linecap: round;
  stroke-linejoin: round;
}

.intro-card h3 {
  font-size   :    20px;
    margin-bottom: 16px;
   color     :     #2c3e50;
	
}

.intro-card p    {
      color  :       #555;
    line-height  :      1.6;
}

.problem-section {
   max-width: 1200px;
   margin: 0 auto;
	 padding   :60px 20px;


}

.problem-grid {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;

}

.problem-item {
   text-align: center;
}

.problem-image {
   width: 100%;
   height: 240px;
  object-fit   :   cover;
    border-radius: 10px;
  margin-bottom: 24px;
}

.problem-item h3		{
   font-size: 22px; 
   margin-bottom: 12px; 
    color: #2c3e50;
}

.problem-item p {
   color: #555;
      line-height: 1.6; 
	
}

.benefits-section {
               max-width: 1200px;
        margin: 0 auto;
     padding: 60px 20px;
}

.benefits-list {
					display: grid;
    gap: 32px;
}

.benefit-row {
	               display: grid;
  grid-template-columns   :       80px 1fr;
     gap: 24px;
   align-items: flex-start;
     }

.benefit-icon-holder {
	display: flex;
    justify-content:      center;
   align-items: center;
}

.benefit-icon {
   width: 56px;
  height  :      56px;
  stroke   :        #3498db;
  fill :    none;
   stroke-width: 2;
                    stroke-linecap :   round;
    stroke-linejoin: round;
}

.benefit-text h3 {
   font-size: 20px;
    margin-bottom: 8px;
  color: #2c3e50; 

} 

.benefit-text p {

  color: #555;
  line-height: 1.6;

}

.services-preview {
    max-width: 1200px;
          margin: 0 auto;
  padding: 60px 20px;
}

.services-cards {
	display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 32px;
   	margin-bottom: 40px;
}

.service-card{
  background: white;
                    border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
 transition :       all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(52, 152, 219, 0.15);
  transform: translateY(-4px);
}

.service-image {
    width: 100%;

	  height     : 200px;

	   object-fit: cover;


}

.service-card h3 {
   color: #2c3e50;
  font-size: 20px;
   padding     :20px 20px 12px 20px;
}

.service-card p {
   padding: 0 20px 20px 20px;
	 color: #555;
   line-height: 1.6;
    font-size: 14px;
} 

.services-link-block {
	 text-align: center;
}

.explore-services 
 {


  display: inline-block;
  padding: 12px 28px;
	border: 2px solid #3498db;
  color: #3498db;
	text-decoration   :       none;
               border-radius: 6px;
       font-weight: 600;
   transition     :   all 0.3s ease;


}

.explore-services:hover {
	background:  #3498db;
    color: white;
}

.cta-section {
       max-width:     900px;
       margin: 0 auto;
   	padding     :    60px 20px;
       text-align: center;
     background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.05) 100%);
      border-radius: 12px;

}

.cta-title {
    font-size: 32px;
   font-weight: 700;
   margin-bottom: 16px;
      color: #2c3e50;
}

.cta-text {
    font-size: 16px; 
	  color: #555; 
	   margin-bottom: 32px; 
	    line-height: 1.6;
}

.cta-button-large {

  padding: 16px 40px;
    font-size: 16px;


}

.contact-section {
    padding: 60px 20px;
  margin: 0 auto;
    max-width: 1200px;


}

.contact-wrapper {
	display   :      grid;
 grid-template-columns: 1fr 1fr;
 gap : 48px;
}

.contact-info {
	 display: flex;
   flex-direction: column;
        gap: 32px;
}


.contact-info h3 {
  font-size: 24px;
  color: #2c3e50;
}

.info-item {
    display: flex;
	    flex-direction: column;
	   gap: 6px;
}

.info-label {
  font-weight: 600;
   color:    #3498db;
   font-size: 14px;
}

.info-value {
    color: #555;
   line-height: 1.5;
}

.contact-form  {
  display    : flex;
   flex-direction: column;
    gap: 20px;
}

.form-input,
.form-textarea {
	padding: 14px 16px;
    border: 1px solid #ecf0f1;
               border-radius: 6px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
         font-size: 14px;
  transition: all 0.3s ease;
   color: #2c3e50;
}

.form-input:focus,
.form-textarea:focus {
   outline  :      none;
   border-color:   #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-textarea {
	 resize  :vertical;
	min-height: 120px;
}

.submit-button {
       padding: 14px 32px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	 color:   white;
    border: none;
  border-radius: 6px;
    font-weight: 600;
  font-size: 15px;
	cursor:        pointer;
          transition   :   all 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}.footer-section {
    background: #2c3e50;
  color: #ecf0f1;
  padding: 60px 20px 20px 20px;
   margin-top: 60px; 

}

.footer-content {

   max-width: 1200px;
    margin: 0 auto;
  margin-bottom   :     40px;

}

.footer-logo-block {
   text-align: center;
    margin-bottom: 40px;
}

.footer-logo {

	    width:     auto;
  height: 40px;
     }

.footer-grid {

	  display  : grid;

	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	    gap: 40px;

}  

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
          font-weight :     600;
}

.footer-links {
   list-style: none;
	display: flex;
   flex-direction: column;
  gap: 12px;
}

.footer-links a {
     color: #bdc3c7;
  text-decoration: none;
  transition:      color 0.3s ease;
}

.footer-links a:hover {
	 color: #3498db;
}

.footer-contact {
	display: flex;
   flex-direction:    column;
   gap:        10px;
  color: #bdc3c7;
  font-size     :       14px;



}

.footer-bottom {
  max-width: 1200px;
  margin:0 auto;
    text-align: center;
		padding-top: 20px;
  border-top: 1px solid rgba(236, 240, 241, 0.1);
    color: #95a5a6;
  font-size:13px;
}

.policySection {
	padding: 80px 2rem;
  background: #f8f9fa;
}

.policyContainer {
    max-width: 800px;
   margin:     0 auto;
    text-align:   left;
}

.policyContainer h1 {
    font-size: 2.8rem;
      color: #2c3e50;
	 margin-bottom: 2rem;
                    font-weight: 700;
   text-align   :     center;
}

.policyContainer h2 {
      font-size: 2.5rem;
                    color    :  #2c3e50;
  margin: 2.5rem 0 1.5rem 0;
  font-weight: 700;


}

.policyContainer h2:first-of-type {
    margin-top:   0; 
	
}

.policyContainer p {
  color: #7f8c8d;
				 margin-bottom   :  1.5rem;
  line-height: 1.7;
     font-size: 1.1rem;
}

.policyContainer ul {
	margin: 1rem 0 1.5rem 2rem;
    color: #7f8c8d;
}

.policyContainer li {
  margin-bottom: 0.5rem;
    line-height: 1.6;
   font-size :      1.1rem; 
	
} 

.policyContainer em {

	   color: #95a5a6;
         font-style: italic;

}@media (max-width: 768px) {
    .policyContainer h1 {
        font-size: 2.2rem;
    }

    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p,
    .policyContainer li {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.services-hero {
   max-width     :   1200px;

  margin: 0 auto;

    padding: 60px 20px;

  text-align: center;

  background: linear-gradient(135deg, rgba(52, 152, 219, 0.08) 0%, rgba(41, 128, 185, 0.04) 100%);

 border-radius: 12px;
}

.services-hero h1 {

	 font-size: 40px;
  font-weight: 700;
   color: #2c3e50;
        margin-bottom    :   16px;

}

.services-hero p  {


  color: #555;
    font-size: 18px;
    line-height     :    1.6;

}

.container-services {
    max-width  :      1200px;
	margin: 0 auto;
   padding: 0 20px;
}

.detailed-services {
  max-width    :   1200px;
	margin    :     0 auto;
   padding: 60px 20px;
}

.service-full-item {
    margin-bottom: 80px;
}

.service-item-grid {
	display   :   grid;

	grid-template-columns: 1fr 1fr;

  gap: 48px;

  align-items: center;


}

.service-item-reverse {
	direction: rtl;
}

.service-item-reverse > * {
   direction: ltr;
}

.service-item-image {
    flex-shrink: 0;
}

.full-service-image {
  width: 100%;
	 height:    auto;
    border-radius :   12px;
  box-shadow: 0 8px 24px rgba(52, 152, 219, 0.2);
}

.service-item-content h3 {
	 font-size: 28px;
   font-weight :    700;
  color: #2c3e50;
    margin-bottom    :  16px;
}

.service-item-content p  
  {
	font-size: 15px;
         color  :        #555;
  line-height: 1.7;
   margin-bottom: 24px;
}

.service-features {
	 list-style: none;
   display: flex;
   flex-direction  :      column;
  gap: 12px;
    margin-bottom    :28px;
}



.service-features li {
   padding-left: 24px;
          position: relative;
    color: #555;
   font-size     :     14px;
        line-height: 1.5;
}

.service-features li::before {
  content: '✓';
  position     :     absolute;
   left: 0;
   color: #3498db;
   font-weight: 700;
}

.service-price {
  display: flex;
  align-items: baseline;
    gap:       10px;
  font-size: 18px;
}

.price-label {
  color: #95a5a6;
               font-size: 14px;
         font-weight: 500;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
   color: #3498db;
}

.price-period {
  color: #95a5a6;
	font-size: 14px;
}@media (max-width: 768px) {
    .service-item-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-item-reverse {
        direction: ltr;
    }

    .service-item-content h3 {
        font-size: 22px;
    }

    .services-hero h1 {
        font-size: 28px;
    }
}.pricing-comparison {
         max-width: 1200px;

          margin: 0 auto;

  padding :   60px 20px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.comparison-table {
	       width: 100%;
         border-collapse: collapse;
       background     :    white;
	}

.comparison-table thead {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.comparison-table th	{
	    padding: 20px;
                    text-align: left;
   color: white;
   font-weight: 600;
  font-size: 15px;
	}

.comparison-table td {
    padding: 18px 20px;
  border-bottom: 1px solid #ecf0f1;
  color: #2c3e50;
    font-size: 14px;
     }

.comparison-table tbody tr:last-child td {
	border-bottom: none;
}

.comparison-table tbody tr:hover {
   background-color: #f8f9fa;
}

.check-icon     {
   width :        20px;
  height: 20px;
   stroke: #27ae60;
    fill   :     none;
   stroke-width: 2;
}

.x-icon  
  {
  width: 18px;
	   height: 18px;
	   stroke: #e74c3c;
	  stroke-width: 2; 
	
}

.service-testimonials {
  max-width   :   1200px;
	 margin: 0 auto;
   padding: 60px 20px;
}

.testimonials-grid {
    display   :        grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 32px;
}

.testimonial-card {
	background: white;
    padding: 32px;
   border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #3498db;
}

.testimonial-text {
	 font-size: 15px;
   color: #555;
	line-height: 1.7;
         margin-bottom: 20px;
    font-style: italic; 
	
}

.testimonial-author {
    display: flex;
   flex-direction: column;
   gap: 4px;
}



.testimonial-author h4 {
    font-size: 16px;
    font-weight  :        600;
  color: #2c3e50;
}

.testimonial-role {
   color: #95a5a6;
  font-size: 13px;
}

.service-cta {
   max-width  :      900px;
   margin: 0 auto;
   padding  :       60px 20px;
  text-align: center;
}

.service-cta h2 {
  color: #2c3e50;
    font-weight: 700;
  margin-bottom: 16px;
        font-size   :       32px;
}  

.service-cta p {
  font-size: 16px;
   color: #555;
	margin-bottom  : 32px;
}

.thankyou-section {
  min-height: calc(100vh - 200px);
   display: flex;
       align-items: center;
  justify-content: center;
     padding: 40px 20px;
}

.thankyou-container {
    max-width: 700px;
   width: 100%;
         text-align: center;
}

.thankyou-icon {
  margin-bottom:32px;
  display: flex;
  justify-content: center;
}

.success-icon {
	width: 80px;
	   height: 80px;
	  stroke: #27ae60;
		 fill   :    none;
	    stroke-width: 1.5;
	  animation: scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-title {
  font-size: 40px;
  font-weight: 700;
   color: #2c3e50;
   margin-bottom: 12px;
}

.thankyou-subtitle {
   font-size: 20px;
    color: #3498db;
	 font-weight:        600;
  margin-bottom: 24px;

}

.thankyou-message {

  font-size: 16px;
	color: #555;
  line-height: 1.7;
   margin-bottom: 40px;}

.thankyou-next-steps {
  background: white;
   padding: 40px;
         border-radius: 10px;
    margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.thankyou-next-steps h3 {
  font-size: 24px;

    color: #2c3e50;

  margin-bottom: 24px;
}

.steps-list{
		 display     :  flex;
    gap: 20px;
      list-style: none;
  flex-direction: column;
	
} 

.steps-list li {

   display: grid;
	grid-template-columns: 50px 1fr;
   gap: 20px;
     align-items: flex-start;
	}

.step-number {
    width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color:   white;
    border-radius: 50%;
   display   :     flex;
 align-items: center;
    justify-content: center;
   font-weight: 700;
	 font-size: 18px;
}

.step-content {
     text-align: left;
}

.step-content h4 {
    font-size: 16px;
  font-weight   :  600;
    color  :    #2c3e50;
  margin-bottom: 6px;
}

.step-content p {


    font-size: 14px;
  color: #555;
   line-height:   1.5;
	}

.thankyou-actions {
   display: flex;
   gap: 16px;
    justify-content : center;
   margin-bottom: 40px;
   flex-wrap     :    wrap;
}

.button-primary {


  display: inline-block;
	padding: 14px 32px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
   text-decoration: none;
 border-radius: 6px;
  font-weight: 600;
   font-size: 15px;
	 transition: all 0.3s ease;
  box-shadow: 0 4px 12px 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 {
	display: inline-block;
   padding: 14px 32px;
  border: 2px solid #3498db;
   color: #3498db;
	text-decoration: none;
   border-radius: 6px;
  font-weight: 600;
    font-size: 15px;
   transition: all 0.3s ease;
}

.button-secondary:hover {
  background: #3498db;
   color: white;
}

.thankyou-faq {
  background:     white;
    padding: 40px;
   border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.thankyou-faq h3	{
  font-size: 24px;
   color: #2c3e50;
    margin-bottom: 24px;
  text-align: center;
}

.faq-grid {
    display: grid;
    gap: 24px;
}

.faq-item
{
    padding-bottom: 20px;
    border-bottom   :1px solid #ecf0f1;
}

.faq-item:last-child  
  {
   border-bottom : none;
    padding-bottom: 0;
}

.faq-item h4 {
    font-size: 16px;
    font-weight    :600;
    color: #2c3e50;
   margin-bottom: 8px;
}

.faq-item p {
    color: #555;
       line-height: 1.6;
    font-size: 14px;
}@media (max-width: 768px) {
    .thankyou-title {
        font-size: 28px;
    }

    .thankyou-next-steps,
    .thankyou-faq {
        padding: 24px;
    }

    .thankyou-actions {
        gap: 12px;
    }

    .button-primary,
    .button-secondary {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
    }

    .steps-list li {
        grid-template-columns: 40px 1fr;
        gap: 16px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}