* {
    margin: 0;

 padding: 0;

    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
   line-height: 1.6;
  color: #2c3e50;
   background: #f8f9fa;
}

.primary-navigation {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.2rem 0;
  position: sticky;
	top: 0;
   z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
   max-width: 1200px;
     margin: 0 auto;
      padding: 0 2rem;
      display:flex;
       justify-content: space-between;
     align-items: center;
}

.logo-section .brand-logo		{


   height: 45px;
  filter: brightness(0) invert(1); 
	
     }

.nav-links


{
 display: flex;
  list-style: none;
  gap  :    2.5rem; 

}

.nav-links a  
  {
  color     : #fff;
   text-decoration: none;
      font-weight: 500;
    font-size: 1.05rem;
   transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-toggle {
  display: none;
    background  :  none;
   border :     none;
  flex-direction:        column;
  gap  :  5px;
  cursor: pointer;
}

.burger-line {
   width: 28px;
    height: 3px;
        background     :        #fff;
  transition   :all 0.3s;
}@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links li {
        padding: 0.8rem 2rem;
    }

    .nav-toggle.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}.hero-section {
    padding: 5rem 2rem;

  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

   display: grid;

    grid-template-columns: 1fr 1fr;

  gap: 4rem;

    align-items: center;

  max-width: 1200px;

    margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.2rem; 
	    color :   #2c3e50; 
	    margin-bottom    : 1.5rem; 
	    line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.25rem;
    color     :    #5a6c7d;
	margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
    gap: 1.5rem;
  flex-wrap: wrap; 

}

.btn-primary, .btn-secondary, .btn-tertiary, .btn-cta, .btn-submit {
	padding  :       0.9rem 2rem;
    border-radius :    8px;
    text-decoration: none;
   font-weight: 600;
    transition: all 0.3s;
  display: inline-block;
   cursor  :       pointer;
     border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: transparent;
    color: #667eea;
	border   :    2px solid #667eea; 

}

.btn-secondary:hover {
    background: #667eea;
	color: #fff;

}

.hero-visual img {
   width :      100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}@media (max-width: 968px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}.section-wrapper   {
				 max-width: 1200px;
          margin: 0 auto;
   padding    :   5rem 2rem;
}

.approach-section {
    background: #fff;
}

.approach-intro {
    text-align     :center;
   margin-bottom: 4rem;
}

.approach-intro h2 {
	  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
	}

.approach-intro p {
   font-size: 1.15rem;
  color: #5a6c7d;
  max-width    :       800px;
  margin: 0 auto;
}

.approach-grid		{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;


}



.approach-card {
    padding     :       2rem; 
		background   :  #f8f9fa; 
	   border-radius: 10px; 
	  transition: transform 0.3s;
}

.approach-card:hover     {
  transform: translateY(-5px);
}

.card-icon {
   width: 60px;
	   height: 60px;
	    margin-bottom: 1.5rem;
}

.card-icon svg {
  stroke: #667eea;
  fill  :      none;
   stroke-width: 2;
  stroke-linecap: round;
   stroke-linejoin: round;
    width: 100%;
  height: 100%;
}

.approach-card h3		{
	 font-size: 1.4rem;
 color: #2c3e50;
    margin-bottom: 1rem;


}

.approach-card p {
	 color     :     #5a6c7d;
    line-height   :  1.7;
}

.services-preview {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.services-preview h2 {
   text-align: center;
   font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 3rem;
}

.services-showcase {
     display    :        flex;
   flex-direction: column;
   gap: 3rem;
   margin-bottom: 3rem;
}  

.service-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap    :2.5rem;
  background: #fff;
    border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-item:nth-child(even) {
   grid-template-columns :   1.5fr 1fr;
}

.service-item:nth-child(even) .service-image
	{
	 order: 2;
}

.service-image img {
    width: 100%;
   height :100%;
   object-fit     :        cover;
}

.service-details


{
  padding  :  2.5rem;
  display: flex;
   flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.8rem;
   color: #2c3e50;
                    margin-bottom: 1rem;
}

.service-details p     {
    color: #5a6c7d; 
	   line-height: 1.8;
}

.services-cta {
   text-align: center;
}

.btn-tertiary {
    background: #2c3e50;

  color: #fff;
}

.btn-tertiary:hover {
  background: #1a252f;
}  @media (max-width: 768px) {
    .service-item,
    .service-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-item:nth-child(even) .service-image {
        order: 0;
    }

    .service-details {
        padding: 1.5rem;
    }
}.cta-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
  text-align: center;
}

.cta-content h2    {
  font-size: 2.5rem;
	color: #fff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size    :     1.2rem;
  color: rgba(255,255,255,0.9);
    max-width: 700px;
      margin: 0 auto 2.5rem;
}

.btn-cta {
  background: #fff;

	   color: #667eea;

	    font-size:  1.1rem;
}

.btn-cta:hover     {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.process-section {
	background: #fff;
}

.process-section h2 
 {
    text-align: center;
  font-size: 2.5rem;
   color:     #2c3e50;
	 margin-bottom: 4rem;
}

.process-timeline {
   max-width: 800px;
   margin: 0 auto;
   position: relative;
}

.process-timeline::before {
	  content: '';
 position: absolute;
       left: 30px;
    top: 0;
   bottom: 0;
       width: 2px;
   background    :       #e0e6ed;


     }

.timeline-item {
       display: flex;
	 gap: 2rem;
    margin-bottom     : 3rem;
  position: relative;
     }

.timeline-marker {
   flex-shrink    :       0;
}

.marker-icon {
    width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 50%;
  display   :      flex;
  align-items: center;
    justify-content: center;
  position: relative;
   z-index: 1;
}

.marker-icon svg {
          stroke: #fff;
	 fill: none;
	 stroke-width  :    2;
   stroke-linecap: round;
   stroke-linejoin: round;
  width: 30px;
    height: 30px;
}

.timeline-content h3 {
               margin-bottom: 0.8rem;
    font-size: 1.5rem;
	color:    #2c3e50;
}

.timeline-content p  {
   color    :       #5a6c7d; 
    line-height: 1.7;
}@media (max-width: 768px) {
    .process-timeline::before {
        left: 20px;
    }

    .marker-icon {
        width: 40px;
        height: 40px;
    }

    .marker-icon svg {
        width: 20px;
        height: 20px;
    }

    .timeline-item {
        gap: 1.5rem;
    }
}.testimonial-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonial-section h2 {
    color: #2c3e50; 
	    text-align: center; 
	  font-size: 2.5rem; 
	   margin-bottom: 3rem;
}

.testimonial-grid {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 2rem;

}

.testimonial-card {
  background: #fff; 
	     padding   :   2rem; 
	  border-radius  :10px; 
	  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1.05rem;
					color: #5a6c7d;
   font-style: italic;
    line-height  :       1.7;
   margin-bottom: 1.5rem;


}

.testimonial-author {
  font-weight: 600;
  color: #2c3e50;
}

.contact-section {
    background:      #fff; 

}

.contact-header {
  text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2	{
    font-size: 2.5rem;
	 color     :       #2c3e50;
   margin-bottom  :     1rem;
}

.contact-header p {

	    font-size   :      1.15rem;
   color  :     #5a6c7d;}

.contact-container
	{


	 display: grid;
         grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
  align-items     :        start;


}

.contact-info {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
   padding: 2.5rem;
    border-radius   : 12px;

}

.info-block 
 {
  margin-bottom: 2.5rem;
	  display: flex;
	    gap: 1.5rem;
	
}

.info-icon {
   width: 50px;
    height :       50px;
					flex-shrink: 0;
}

.info-icon svg {
  stroke   :       #667eea;
    fill: none;
    stroke-width: 2;
       stroke-linecap: round;
   stroke-linejoin: round;
          width: 100%;
	height:        100%;
}

.info-text h3 {
  font-size    : 1.3rem;
  color: #2c3e50;
       margin-bottom: 0.5rem;
}

.info-text p {
   color: #5a6c7d;
  line-height: 1.6;
}

.visual-element {
  margin-top: 2rem;
}


.visual-element img {
    width: 100%;
   border-radius: 8px;
}

.contact-form {
	background: #f8f9fa;
    padding     : 2.5rem;
  border-radius: 12px;
}  

.form-group {
   margin-bottom: 1.8rem;
}

.form-group label {
  display   :       block; 
	    font-weight: 600; 
	    color   :    #2c3e50; 
	  margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
 padding: 0.9rem;
        border: 2px solid #e0e6ed;
    border-radius: 6px;
  font-size: 1rem;
   font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	 outline: none;
  border-color: #667eea;
}

.form-group textarea {
    resize: vertical;


}

.btn-submit {
    width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color   : #fff;
  font-size: 1.1rem; 

}

.btn-submit:hover{
     transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
	}@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}.site-footer {
	background: #1a252f;
    color: #fff;
  padding     :  4rem 2rem 2rem;
}

.footer-content {
	max-width: 1200px;
  margin: 0 auto;
  display :     grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	 gap: 3rem;
  margin-bottom: 3rem;
	}

.footer-logo
{
       height: 40px;
	 margin-bottom: 1rem;
  filter: brightness(0) invert(1);


}

.footer-description {
  color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-section h4 {
  font-size: 1.2rem;
   margin-bottom: 1.2rem;
}



.footer-links {
   list-style: none; 

}

.footer-links li

{
    margin-bottom: 0.8rem;
}

.footer-links a {

  color: rgba(255,255,255,0.7);
   text-decoration: none;
  transition: color 0.3s;

}

.footer-links a:hover {
   color: #fff;

}

.footer-section p {
  color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-bottom {
  text-align: center;
	 padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}



.footer-bottom p {
  color: rgba(255,255,255,0.6);
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}.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;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding    :      6rem 2rem 4rem;
   text-align: center;
}

.services-hero-content h1 {
  font-size: 3rem;
   color: #fff;
    margin-bottom: 1.2rem;
}

.services-hero-content p {
      font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  max-width: 800px;
  margin: 0 auto;
	}@media (max-width: 768px) {
    .services-hero {
        padding: 4rem 2rem 3rem;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1.1rem;
    }
}.services-main {

	    background: #f8f9fa;
}

.services-intro-block {
  text-align: center;
    margin-bottom: 5rem;
}

.services-intro-block h2  {
    font-size   :2.5rem;
  color: #2c3e50;
          margin-bottom :   1.5rem;
}

.services-intro-block p {
   font-size: 1.2rem;
  color: #5a6c7d;
  max-width :        850px;
   margin: 0 auto;
	line-height    :   1.8;
}

.service-detailed {
  display: grid;
    grid-template-columns: 1fr 1.2fr;
   gap: 3.5rem;
   margin-bottom: 6rem;
  background: #fff;
   border-radius  : 15px;
   overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1); 
	
}

.service-detailed.reverse


{
  grid-template-columns: 1.2fr 1fr;
}

.service-detailed.reverse .service-image-large {
	  order: 2;
     }

.service-image-large {
  height: 100%;

   min-height: 450px;
}

.service-image-large img {
      width: 100%; 
   height: 100%; 
	object-fit: cover;
	}

.service-content-block {
  padding:       3rem 3rem 3rem 0;
	
}

.service-detailed.reverse .service-content-block {
        padding: 3rem 0 3rem 3rem;
}

.service-badge	{
  display   :     inline-block;
    padding  : 0.5rem 1.2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color     :    #fff;
    border-radius: 25px;
    font-size    :       0.9rem;
	font-weight: 600;
   margin-bottom: 1.5rem;
}

.service-content-block h3 {


   font-size: 2rem;
  color     :#2c3e50;
   margin-bottom  :1.5rem;


}



.service-description {
    font-size: 1.1rem;
   color: #5a6c7d;
    line-height: 1.8;
	margin-bottom: 2.5rem;
}

.service-features {
    margin-bottom: 2.5rem;
}

.feature-item {
   display :     flex;
      gap: 1.2rem;
   margin-bottom :       1.8rem;
}

.feature-icon {
   width:   45px;
   height: 45px;
   flex-shrink: 0;

}

.feature-icon svg {
	 stroke  :        #667eea;
	 fill: none;
  stroke-width: 2;
  stroke-linecap: round;
       stroke-linejoin: round;
   width: 100%;
   height  :     100%;
}  

.feature-text h4 {
   font-size: 1.1rem;
   color :        #2c3e50;
	margin-bottom: 0.4rem;
}

.feature-text p  {
    color: #5a6c7d; 
	    line-height: 1.6; 
	
}

.service-topics h4
{
	    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
	}

.topics-list {
   list-style: none;
  padding-left: 0; 
	
}

.topics-list li {
    padding-left: 1.8rem;
	 margin-bottom: 0.8rem;
   color: #5a6c7d;
  position: relative;
  line-height: 1.6;
}

.topics-list li:before     {
   position: absolute;
  content: '→';
     left: 0;
   color     :   #667eea;
    font-weight: bold;
}@media (max-width: 968px) {
    .service-detailed,
    .service-detailed.reverse {
        grid-template-columns: 1fr;
    }

    .service-detailed.reverse .service-image-large {
        order: 0;
    }

    .service-content-block,
    .service-detailed.reverse .service-content-block {
        padding: 2.5rem;
    }

    .service-image-large {
        min-height: 300px;
    }
}.service-cta-section
{
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 5rem 2rem;
}

.cta-box {
   background: #fff;
   padding    :4rem;
  border-radius: 15px;
	text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width   :900px;
  margin: 0 auto; 
	
}

.cta-box h2 {
  font-size: 2.5rem; 
   color: #2c3e50; 
   margin-bottom: 1.5rem;
}

.cta-box p  {
  font-size: 1.2rem;

    color: #5a6c7d;

  margin-bottom: 2.5rem;


}@media (max-width: 768px) {
    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }
}.thankyou-section  {
  min-height: calc(100vh - 200px);
  display: flex;
    align-items: center;
	padding: 5rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.thankyou-container {
   max-width     :  900px;
    margin: 0 auto;
   text-align: center;
}

.thankyou-icon {
    width: 100px;
    height: 100px;
   margin: 0 auto 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
  align-items: center;
  justify-content: center;
	 animation: scaleIn 0.5s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}.thankyou-icon svg  {
	stroke: #fff;
    fill: none;
   width: 55px;
    height: 55px;
}

.thankyou-container h1{
	 font-size: 3rem;
    color: #2c3e50;
  margin-bottom: 1.5rem;
}

.thankyou-message {
    font-size: 1.25rem;
    color   :        #5a6c7d;
   line-height: 1.8;
  margin-bottom     :3rem;
}



.thankyou-details {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
                    margin-bottom: 4rem;
}

.detail-box {
    background: #fff;
   padding : 2rem;
	border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
   text-align: left;
}  

.detail-icon

{
 width: 50px; 
		height: 50px; 
	  margin-bottom: 1.2rem;
}

.detail-icon svg {
    stroke: #667eea;
                    fill: none;
  stroke-width: 2;
     stroke-linecap: round;
       stroke-linejoin :       round;
  width: 100%;
    height: 100%;
}

.detail-content h3 {
	  font-size: 1.3rem;
    color    :    #2c3e50;
  margin-bottom: 0.8rem;}

.detail-content p {
	 color: #5a6c7d;
	line-height: 1.7;
}

.thankyou-next-steps {
    background: #fff;
    padding: 3rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.thankyou-next-steps h2 {
   font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 2.5rem;
}

.steps-timeline
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
}

.step-item {
    text-align: center;


}

.step-number {
    width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
   border-radius: 50%;
    display: flex;
   align-items: center;
	justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
   margin   :   0 auto 1rem; 
	
}

.step-content h4 {
	   font-size:   1.2rem;
   color  : #2c3e50;
    margin-bottom: 0.6rem;
}

.step-content p     {


   color   :#5a6c7d; 
  line-height: 1.6; 
  font-size: 0.95rem;
}

.thankyou-actions {
     display: flex;
   gap: 1.5rem;
	justify-content: center;
  flex-wrap   :       wrap;
   margin-bottom: 3rem;
}


.thankyou-info {
    padding-top: 2rem;
 border-top: 2px solid #e0e6ed;
}

.thankyou-info p
	{

   color: #5a6c7d;
   margin-bottom: 0.5rem;

}

.contact-phone {
  font-size: 1.5rem;
  font-weight: bold;
   color   :#667eea;
}@media (max-width: 768px) {
    .thankyou-container h1 {
        font-size: 2rem;
    }

    .thankyou-message {
        font-size: 1.1rem;
    }

    .thankyou-next-steps {
        padding: 2rem 1.5rem;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
    }
}