*     {
        margin: 0;
     padding:     0;
   box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color  :    #2c3e50;
   background-color: #ffffff;

}

.main-navigation {
   background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position   :       sticky;
    top: 0;
    z-index: 1000;
	 padding: 1rem 0;
}

.nav-container {

  max-width: 1280px;
  margin: 0 auto;
    padding: 0 2rem;
  display: flex;
   justify-content: space-between;
  align-items: center;

}

.site-logo {
   height : 45px;
  width: auto;
}

.nav-links
{
   display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {

	   text-decoration: none;
   color: #34495e;
  font-weight: 500;
    font-size: 1.05rem;
  transition: color 0.3s;
	} 

.nav-links a:hover {
         color: #e67e22;
}

.menu-toggle {
  display: none;
  flex-direction: column;
   cursor: pointer;
    gap: 5px;

}

.menu-toggle span {
    width: 28px;
  height   :      3px;
  background-color: #34495e;
    transition: all 0.3s;
}

.hero-section {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
   gap: 4rem;
    max-width: 1320px;
    margin: 5rem auto;
   padding :     0 2rem;
               align-items: center;
}

.hero-content h1 {
	  font-size: 3.2rem;
  color: #2c3e50;
    margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
   	 color: #7f8c8d;
      margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap:  1.5rem;
}


.btn-primary {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
	   color: white;
		padding     :        1rem 2.5rem;
	  text-decoration: none;
		border-radius: 8px;
	  font-weight: 600;
	    transition:        transform 0.3s, box-shadow 0.3s;
	   display: inline-block;
	
     }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}



.btn-secondary {
               background: transparent;
    color    :      #34495e;
 padding: 1rem 2.5rem;
  text-decoration: none;
       border: 2px solid #34495e;
    border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
	 display: inline-block;
}

.btn-secondary:hover {
  background    :        #34495e;
     color: white;
}

.hero-visual img {


	width: 100%;

	   height: auto;

	    border-radius: 12px;

	  box-shadow: 0 10px 40px rgba(0,0,0,0.15); 
	}

.intro-section {
     background: #f8f9fa;
   padding: 5rem 0; 
	
}

.container-wide {
    max-width: 1280px;
     margin: 0 auto;
     padding: 0 2rem;

}

.intro-grid {
  gap: 4rem;
  align-items: center;
  grid-template-columns  :1fr 1fr;
    display: grid;
}

.intro-text h2 {
   margin-bottom: 1.5rem;
    color: #2c3e50;
  font-size: 2.5rem;

}

.intro-text p {
       font-size: 1.1rem;
  margin-bottom: 1.2rem;
	color: #546e7a;
}  

.intro-image img
	{
   width: 100%;
   border-radius: 10px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.12); 

}

.services-preview {
  padding: 6rem 0;
}

.container-standard {
    max-width    :     1200px;
	  margin: 0 auto;
	    padding: 0 2rem;
}

.services-preview h2 {
    text-align: center;
          font-size: 2.8rem;
   margin-bottom: 4rem;
  color  :        #2c3e50;
}

.service-cards {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;}


.service-card {
   background    :white;
       border-radius: 10px;
       overflow: hidden;
     box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.card-image {

  width:     100%;
    height: 240px;
    overflow: hidden;
     }

.card-image img    {
                    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
	 font-size: 1.5rem;
    padding: 1.5rem 1.5rem 1rem;
   color: #2c3e50;
}

.service-card p {
   padding: 0 1.5rem 1.5rem;
  color: #5a6c7d;
	line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 5rem 2rem;
 margin  :      4rem 0;
}

.cta-wrapper {
  text-align: center;
   margin: 0 auto;
    max-width: 900px;
}

.cta-content h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content p

{
  color: rgba(255,255,255,0.95); 
		font-size: 1.2rem; 
	  margin-bottom : 2.5rem; 
	  line-height: 1.8;
}

.cta-button		{
	 background: white;
    color: #3498db;
    padding: 1.2rem 3rem;
   text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
   font-size: 1.1rem;
	display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover{

	  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2); 
	
	}

.methodology-section {
    padding: 6rem 0;
  background:  #fafbfc;
}

.methodology-section h2 {
	    text-align: center;
  font-size: 2.8rem;
   margin-bottom :       4rem;
	color: #2c3e50;}

.methodology-grid {
	    display: grid;
  grid-template-columns: repeat(2, 1fr);
     gap: 3rem;


}

.method-item {
  background: white;

    padding  :      2.5rem;

   border-radius: 10px;

  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
}

.method-number {
					font-size   :3rem;
   font-weight: 700;
  color :  #e67e22;
  margin-bottom: 1rem;
}

.method-item h3 {

    font-size: 1.6rem;
   color: #34495e;
   margin-bottom: 1rem;
     }

.method-item p {
	 color: #5a6c7d; 
    line-height: 1.7;
}

.contact-section {
					padding   :      6rem 0; 
  background: white;
}



.contact-container {
    max-width     :        1200px;
   margin: 0 auto;
    padding: 0 2rem;
   display: grid;
  grid-template-columns: 1fr 1.2fr;
	gap: 5rem;
}

.contact-info h2 {
    font-size: 2.5rem;
	 margin-bottom: 1.5rem;
	color: #2c3e50;
}

.contact-info p {

     color: #546e7a;
   margin-bottom: 2rem;
  line-height: 1.7;


}

.info-block {
	margin-bottom   :       2rem;
}

.info-block h3 {
   font-size: 1.4rem;
	margin-bottom: 0.8rem;
  color: #34495e;
}

.address-line {
  margin: 0.3rem 0;
    color   :    #5a6c7d;
}

.phone-number {
		font-weight: 600;
    color: #e67e22;
    font-size: 1.2rem;
     }


.contact-form {
  -webkit-border-radius  :10px;
       border-radius: 10px;
    background: #f8f9fa;
               padding: 2.5rem; 

}

.form-group
{
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
   margin-bottom: 0.5rem;
      font-weight: 600;
  color: #34495e;
}



.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
  padding: 0.9rem;
  border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
}

.submit-btn {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
   color: white;
      padding: 1rem 2.5rem;
    border: none;
   border-radius: 8px;
  font-size: 1.1rem;
               font-weight: 600;
   cursor: pointer;
   transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.submit-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.site-footer {
    color:    white;
   padding: 4rem 0 2rem;
   background: #2c3e50;
}

.footer-content {
  max-width: 1200px;
    margin: 0 auto;
   padding     :  0 2rem;
  display :    grid;
  grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
	height: 40px; 
  filter: brightness(0) invert(1); 
  margin-bottom: 1rem;
}

.footer-tagline     {
  color: rgba(255,255,255,0.8);
          font-size : 0.95rem;
}

.footer-section h4
	{
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

.footer-links	{
   list-style     :      none;
}

.footer-links li  
  {
   margin-bottom     :        0.7rem;
}

.footer-links a     {
  color: rgba(255,255,255,0.8);
   text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
   color: #e67e22;
}

.footer-section p {
  color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-phone {
	  color :   #e67e22;
  font-weight: 600;
    margin-top: 0.5rem;
     }

.footer-bottom {

   text-align: center;
   padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
	}@media screen and (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .services-preview h2,
    .methodology-section h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}.policySection {
               padding: 80px 2rem;
    background: #f8f9fa;
}

.policyContainer {
  max-width: 800px;
       margin:      0 auto;
    text-align:     left; 
	
}

.policyContainer h2 {
   font-size: 2.5rem;
    color    :  #2c3e50;
   margin-bottom : 1.5rem;
    font-weight: 700;
}

.policyContainer p   {
  color :#7f8c8d;
    margin-bottom:  1.5rem;
    line-height  :      1.7;
    font-size   :   1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }
    .policyContainer p {
        font-size: 1rem;
    }
    .policySection {
        padding: 60px 1rem;
    }
}.page-header-section {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding    :        5rem 2rem;
    text-align: center;
	color     :   white;
}

.header-content-wrapper h1 {
   font-size   :3rem;
   margin-bottom :   1.5rem;
}

.header-description {
  font-size    :        1.2rem;
         max-width: 800px;
               margin: 0 auto;
  color: rgba(255,255,255,0.9);
	line-height    :    1.7;
}



.services-detail-section {
  padding: 6rem 0;
}

.services-detail-container {
    max-width: 1200px; 
	  margin: 0 auto; 
		padding: 0 2rem;
}

.service-detail-card {
  display: grid;
   grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 6rem;
	align-items: start; 

}

.service-detail-card.reverse
	{
	grid-template-columns: 1.2fr 1fr;

} 

.service-detail-card.reverse .service-detail-image  
  {
   order     :       2;
	
}

.service-detail-card.reverse .service-detail-content {
		order: 1;


}

.service-detail-image {
    top: 100px;
  position: sticky;
}

.service-detail-image img {
   width: 100%;
    border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-detail-content h2 {

    font-size: 2.2rem;
	 color: #2c3e50;
  margin-bottom: 1.5rem;

}

.service-intro {
    margin-bottom: 2rem;

	   line-height: 1.8;

	  font-size: 1.15rem;

	  color: #546e7a;

}

.service-detail-content h3 {
   font-size:1.4rem;
    color :       #34495e;
	margin: 2rem 0 1rem;
}

.service-features {
   margin-bottom: 2rem;
    list-style: none;
}

.service-features li {
	  padding: 0.8rem 0 0.8rem 2rem;
   position: relative;
   color: #5a6c7d;
    line-height: 1.6;
}

.service-features li:before {
	  content: "✓";
	position: absolute;
   left: 0;
  color: #27ae60;
  font-weight: bold;
    font-size: 1.2rem;}

.service-details-info    {
   background: #f8f9fa; 
	  padding: 1.5rem; 
		 border-radius    :      8px; 
		margin-top: 2rem; 

}

.info-item {
    padding: 0.5rem 0;
    color   :   #5a6c7d;
}

.info-item strong {
   color: #34495e;
    margin-right: 0.5rem;
}

.process-section {
          background: #fafbfc;
    padding: 6rem 0;
}

.process-container {
  max-width: 1000px;
    margin: 0 auto;
  padding: 0 2rem;
}

.process-container h2 {
  text-align: center;
  font-size: 2.8rem;
   margin-bottom   : 1.5rem;
    color: #2c3e50;
}

.process-intro {
  text-align  :        center;
                    font-size: 1.15rem;
   color: #546e7a;
   margin-bottom: 4rem;
  max-width:  700px;
   margin-left: auto;
   margin-right: auto;
}

.process-timeline {
  position: relative;

	    padding-left :       50px;
}


.process-timeline:before	{
  content: "";
  position: absolute;
    left: 20px;
    top: 0;
	bottom    :        0;
    width: 3px;
  background: linear-gradient(180deg, #3498db 0%, #e67e22 100%);
}

.timeline-item {
  position: relative;
    margin-bottom: 3rem;
}



.timeline-marker {
  position: absolute;
  left: -38px;
    width: 40px;
	 height: 40px;
   background: #e67e22;
    border-radius: 50%;
  display: flex;
    align-items: center;
    justify-content: center;
  color: white;
   font-weight: bold;
   font-size: 1.2rem;
  box-shadow: 0 3px 10px rgba(230, 126, 34, 0.3);
}

.timeline-content {
  background: white;
    padding: 2rem;
     border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.timeline-content h3 {
    font-size: 1.5rem;
   color: #2c3e50;
   margin-bottom: 1rem;
}

.timeline-content p {
  color: #5a6c7d;
  line-height: 1.7;
}

.testimonial-section {
   padding: 6rem 0;
    background     :      white;
}

.testimonial-container {
		max-width: 1200px;
       margin: 0 auto;
  padding: 0 2rem;
}

.testimonial-container h2 {
				 text-align: center;
  font-size: 2.8rem;
          margin-bottom: 4rem;
    color: #2c3e50;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
}

.testimonial-card {


   background: #f8f9fa;
   padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.testimonial-text {
    line-height: 1.7;
	margin-bottom: 1.5rem;
   font-size: 1.05rem;
  color     :        #5a6c7d;
  font-style: italic;
} 

.testimonial-author {

   border-top: 2px solid #e67e22;
    padding-top: 1rem;

}

.testimonial-author strong {
	display    :  block;
       color: #2c3e50;
                    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #7f8c8d;
   font-size  : 0.95rem;
}

.cta-services-section {


  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
	 padding: 5rem 2rem;
      text-align  :       center;
     }

.cta-services-content {
  max-width: 800px;
    margin  :     0 auto;
}


.cta-services-content h2

{
   	color:       white;
    font-size: 2.8rem;
         margin-bottom: 1.5rem;
     }

.cta-services-content p {
  color: rgba(255,255,255,0.95);
   font-size: 1.2rem;
    margin-bottom: 2.5rem;
   line-height: 1.8;
}

.cta-services-button {
  display: inline-block;
  border-radius: 8px;
    padding     :1.2rem 3rem;
  font-weight: 700;
    text-decoration: none;
  font-size: 1.1rem;
  background: white;
  color: #e67e22;
        transition    :       transform 0.3s, box-shadow 0.3s;

}

.cta-services-button:hover {
	  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);

}

.thankyou-section	{
	   min-height: 80vh;
               display: flex;
    align-items: center;
               padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef3 100%);

}

.thankyou-container {
  max-width: 900px;
   margin     :0 auto;
	
}

.thankyou-content {
    background: white;
   padding: 4rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
   text-align: center;
	}

.success-icon {
    margin: 0 auto 2rem;
    display: flex;
  justify-content: center;
	
}  

.thankyou-content h1 {
    font-size: 2.8rem;
  color: #2c3e50;
	margin-bottom: 1.5rem;
}

.thankyou-message{
	font-size: 1.2rem;
  color: #546e7a;
    margin-bottom: 3rem;
         line-height: 1.7;
}

.next-steps {
  margin   :3rem 0; 
    padding: 2rem; 
   background    :     #f8f9fa; 
  border-radius: 10px;
}  

.next-steps h2 {
     font-size: 1.8rem;
    color: #34495e;
  margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}



.step-item {
   text-align: center;


}

.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-size: 1.5rem;
    font-weight: bold;
  margin: 0 auto 1rem;
}


.step-item p {
   color: #5a6c7d;
   line-height: 1.6;
}  

.thankyou-info {
    margin: 3rem 0;
 padding  : 1.5rem;
   background: #fff3e0;
  border-radius: 8px;
   border-left: 4px solid #e67e22;
}

.thankyou-info p {
   color: #5a6c7d;
   margin-bottom: 0.5rem;
}

.contact-phone {
   font-size    : 1.5rem;
   font-weight: 700;
	 color: #e67e22;
  margin-top: 1rem;
}

.thankyou-actions {
   display: flex;
   gap: 1.5rem;
	 justify-content: center;
    margin: 3rem 0;
}

.additional-info {
		margin-top: 3rem;
	 padding-top: 2rem;
   border-top :      2px solid #e8eef3;
}

.additional-info h3		{
	    font-size: 1.4rem;
  color: #34495e;
  margin-bottom:        1rem;
	}

.additional-info p {
   color: #5a6c7d;
  line-height: 1.7;

}@media screen and (max-width: 1024px) {
    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card.reverse .service-detail-image,
    .service-detail-card.reverse .service-detail-content {
        order: unset;
    }
    
    .service-detail-image {
        position: relative;
        top: 0;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .header-content-wrapper h1 {
        font-size: 2rem;
    }
    
    .header-description {
        font-size: 1.05rem;
    }
    
    .service-detail-content h2 {
        font-size: 1.8rem;
    }
    
    .process-timeline {
        padding-left: 30px;
    }
    
    .timeline-marker {
        left: -28px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .thankyou-content {
        padding: 2.5rem 1.5rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
    }
}