header {
  background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%); 
    position: sticky; 
  top: 0; 
         z-index: 1000; 
    transition: box-shadow 0.3s ease;
}

.header-wrapper {
    margin: 0 auto;
   display: flex;
   max-width: 1200px;
  padding     :  1rem 2rem;
    align-items:   center;
  justify-content: space-between; 

}

.logo-section {
    display: flex;
   align-items: center;
      gap: 0.5rem;
	font-weight: 700;
 font-size: 1.5rem;
    color: white;
}

.logo-section img {
    height: 45px;
    width  :     auto;
  transition: opacity 0.3s ease;
}

.logo-section img:hover {
    opacity: 0.8;
}

nav {
   display: flex;
   gap: 2rem;
  align-items: center;
     }

nav a {
   color    :      white;
  text-decoration: none;
  font-size   :     0.95rem;
	 font-weight: 500;
   position: relative;
          transition: all 0.3s ease;
	 padding: 0.5rem 0;
}

nav a::after {
  content: '';
   position  :        absolute;
    bottom     : 0;
  left     : 0;
      width: 0;
  height: 2px;
    background: #3498db;
   transition: width 0.3s ease;


}

nav a:hover::after {
	width: 100%;
}

.menu-toggle 
 {
  display: none;
    background: none;
    border: none;
   color: white;
    font-size: 1.8rem;
	cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
   line-height   :        1;
}

.menu-toggle:active {
  transform: scale(0.95);
}@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: #1a252f;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav.active {
        max-height: 500px;
        padding: 1rem 0;
    }

    nav a {
        padding: 0.75rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        margin: 0;
        display: block;
        width: 100%;
    }

    nav a::after {
        display: none;
    }

    nav a:hover {
        background: rgba(52, 152, 219, 0.1);
        padding-left: 2.5rem;
    }

    .header-wrapper {
        padding: 0.75rem 1rem;
    }

    .logo-section {
        font-size: 1.2rem;
    }

    .logo-section img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .menu-toggle {
        font-size: 1.5rem;
    }

    nav {
        top: 55px;
    }

    nav a {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .header-wrapper {
        padding: 0.5rem 1rem;
    }

    .logo-section {
        font-size: 1rem;
    }

    .logo-section img {
        height: 30px;
    }
}.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;
    }
}.service-item {
   background: white;
    margin-bottom: 2rem;
    border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.service-item.expanded {
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
}

.service-header {
               padding: 2rem;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
	 border-left: 5px solid #667eea;
   cursor: pointer;
      display: flex;
    justify-content   :   space-between;
     align-items: center;
   transition: all 0.3s ease;
}

.service-header:hover {
  background: linear-gradient(135deg, #667eea25 0%, #764ba225 100%);
}

.service-header h3   {
   color: #667eea;
    font-size: 1.4rem;
    margin: 0;
}

.service-header p {
       color: #7f8c8d;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}  

.service-toggle {
    font-size: 1.5rem;
	 color: #667eea;
  transition: transform 0.3s ease;
    cursor: pointer;
}

.service-content {
        max-height: 0;
  overflow: hidden;
   transition     :     max-height 0.3s ease;
     }

.service-content.open {
   max-height: 800px;
}

.service-body {
  padding: 2rem;
    color :        #34495e;
}

.service-body h4 {
  color: #2c3e50;
   margin-top: 1.5rem;
   margin-bottom: 0.8rem;
   font-size: 1.1rem;
}

.service-body h4:first-child {
         margin-top    :     0;
}

.service-body ul {
    margin-left: 1.5rem;
          margin-bottom: 1rem;
}

.service-body li {
  margin-bottom: 0.5rem;
  line-height :    1.8;
}

.service-body p {
                       margin-bottom: 1rem;
  line-height: 1.8;}

.pricing-card {
   transition: all 0.3s ease;
   border-radius: 12px;
    text-align: center;
    padding: 2rem;
 position     :       relative;
 background :      white;
  border: 2px solid #ecf0f1;
}

.pricing-card:hover {
	 border-color: #667eea;
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
  transform: translateY(-10px);
}

.pricing-card.featured {
   border-color: #667eea;
  background: linear-gradient(135deg, #667eea05 0%, #764ba205 100%);
  transform: scale(1.05);
}

.pricing-card h4 {

	 font-size: 1.4rem;

          color: #2c3e50;

  margin-bottom: 1rem;
	}

.price-tag {
   margin: 1rem 0;
	font-weight: 700;
    color: #667eea;
	font-size: 2.5rem;
}

.price-tag small {
   font-size: 1rem;
   color: #7f8c8d;
}

.pricing-card ul {
    list-style: none;
   margin: 1.5rem 0;
  text-align: left;
}  

.pricing-card li {
   padding: 0.6rem 0;
  border-bottom: 1px solid #ecf0f1;
  font-size: 0.95rem;
}

.pricing-card li:last-child {
   border-bottom: none; 
	
}

.pricing-card .cta-button   {


  display :        inline-block;
 background: #667eea;
  color: white;
  padding: 0.9rem 2rem;
  border-radius    :    50px;
   text-decoration: none;
  font-weight  :       600;
	transition: all 0.3s ease;
   border: none;
   cursor: pointer;
   font-size: 0.95rem;
    margin-top: 1.5rem;
     }

.pricing-card .cta-button:hover {
  background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.process-timeline {
    position: relative;
   max-width: 900px;
          margin: 0 auto;
}

.timeline-item {
   margin-bottom: 3rem;
    padding-left   :       4rem;
   position: relative; 
	
}

.timeline-number	{
   position: absolute;
     left: 0;
  top: 0;
   width: 3rem;
   height: 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   border-radius: 50%;
  display: flex;
  align-items     :   center;
   justify-content: center;
     font-weight   :      700;
   font-size: 1.2rem;
}

.timeline-item h4 {
    color    :    #2c3e50;
 font-size: 1.2rem;
   margin-bottom  :  0.5rem;
}

.timeline-item p {


  color: #34495e;
   line-height: 1.8;
	}

.testimonial-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
  border-radius: 12px;
		border-left: 4px solid #3498db;
   transition: all 0.3s ease;

}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.15);
}

.testimonial-text {
  color: #34495e;
  margin-bottom    :        1.5rem;
					font-style: italic;
                    line-height: 1.8;

}

.testimonial-author {


    color:       #2c3e50;
   font-weight: 600; 

	}



.testimonial-author small {
    display: block;
		 color: #7f8c8d;
   font-weight: 400;
    margin-top    :      0.3rem;
}

.faq-item {
    background: white;

	  margin-bottom     :  1.5rem;

	    border-radius: 10px;

	    overflow: hidden;

	  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question  
  {
  padding: 1.5rem;
  background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
         cursor: pointer;
   display  :flex;
    justify-content: space-between;
	align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
}

.faq-question h4 {
  color: #2c3e50;
   margin: 0;
	font-size: 1.05rem;
}

.faq-toggle {
  color: #667eea;
     font-size: 1.3rem;
                    transition: transform 0.3s ease;
}

.faq-answer {
  max-height    : 0;
       overflow: hidden;
      transition: max-height 0.3s ease;
}

.faq-answer.open {
   max-height     :    400px;
}

.faq-answer-content {
    padding: 1.5rem;
   color: #34495e;
	 line-height   :      1.8;
}

.success-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
			color: white;
  text-align:        center;
    min-height:    600px;
  display: flex;
   align-items  :  center;
  justify-content: center;
}

.success-content {
  max-width: 700px;
   margin     :  0 auto;
}

.success-icon {
    font-size :   4rem;
  margin-bottom :        1.5rem;
    display: inline-block;
	animation   :        scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.success-content h1		{
    font-size: 2.8rem;
	 margin-bottom: 1rem;
  font-weight: 700;
}

.success-content p {
  font-size: 1.1rem;
   margin-bottom: 1.5rem;
  opacity: 0.95;
}

.request-summary 
 {
  background: rgba(255, 255, 255, 0.15);
	 padding: 2rem;
	 border-radius: 12px;
                    margin: 2rem 0;
	text-align  :     left;
  backdrop-filter: blur(10px);
}

.summary-item    {
    margin-bottom: 1rem;
}

.summary-item label {
   display: block;
  font-weight   : 600;
    margin-bottom   :0.3rem;
    opacity: 0.9; 
	
}

.summary-item span {
   display   :block;
 font-size: 0.95rem;
   opacity: 0.85;
  padding-left: 1rem;
}

.next-steps {
  background: rgba(255, 255, 255, 0.1);
	 padding: 2rem;
    border-radius: 12px;
   margin-top: 2rem;
   text-align: left;
}

.next-steps h3 {
   font-size: 1.3rem;
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: none;
  margin-left: 0;


}

.next-steps li   {
    padding: 0.6rem 0 0.6rem 2rem;
  position     :     relative;
  line-height: 1.6;
}

.next-steps li:before

{
  content: "✓";
    position: absolute;
   left: 0;
    font-weight: bold;
}

.action-buttons {
   display: flex;
    margin-top     :2rem;
  flex-wrap: wrap;
   justify-content: center;
    gap    :1.5rem;
}

.btn {
   padding: 1rem 2rem;
   display: inline-block;
  border: 2px solid white;
        border-radius: 50px;
   font-size: 0.95rem;
   font-weight: 600;
    text-decoration: none;
   transition: all 0.3s ease;
}


.btn-primary {
   background    :     white;
   color: #27ae60;
}

.btn-primary:hover {

	  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);


}

.btn-secondary {
     background: transparent;
	  color: white;
	   border-color: white;


}

.btn-secondary:hover {
	background: white;
   color: #27ae60;

}@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .timeline-item {
        padding-left: 3.5rem;
    }

    .success-content h1 {
        font-size: 1.8rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .request-summary {
        font-size: 0.9rem;
    }

    .service-header h3 {
        font-size: 1.1rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-toggle {
        position: absolute;
        right: 2rem;
        top: 2rem;
    }
}

@media (max-width: 480px) {
    .service-body {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .next-steps {
        padding: 1.5rem;
    }

    .success-icon {
        font-size: 3rem;
    }

    .success-content h1 {
        font-size: 1.5rem;
    }
}