* {
   margin  :        0;
  padding :        0;
    box-sizing: border-box;
}

.navbar
{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 0;
   position: sticky;
  top: 0;
   z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-container   {
	max-width: 1200px;
   margin:     0 auto;
  padding: 0 20px;
   display: flex;
  justify-content: space-between;
	 align-items: center;
   height: 70px;
}

.navbar-logo {
   display: flex;
  align-items: center;
}

.logo-img {
   height: 64px;
   width: auto;
  filter: brightness(0) invert(1);
}

.navbar-menu {
   display: flex;
   list-style: none;
  gap   :      40px;
  align-items: center;
}

.navbar-menu a {

	    color: white;
   text-decoration     :none;
    font-weight: 500;
  font-size: 1rem;
	 transition: all 0.3s ease;
  position  :      relative;

}

.navbar-menu a:after {
  content: '';
    position: absolute;
  bottom: -5px;
                    left: 0;
   width: 0;
   height: 2px;
  background: white;
	 transition: width 0.3s ease;
}

.navbar-menu a:hover:after    {
   width: 100%;
}

.navbar-menu a:hover {
  opacity: 0.8;
}

.burger-menu {
  display: none;

	  flex-direction: column;

	    background: none;

	    border: none;

	  cursor: pointer;

	    gap: 6px;


}

.burger-menu span {
 width: 25px;
    height: 3px;
	background: white;
    border-radius: 3px;
   transition   :   all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2)  {
    opacity    :      0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .navbar-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .navbar-menu.active {
        max-height: 400px;
    }

    .navbar-menu li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    .navbar-menu a:after {
        display: none;
    }

    .navbar-container {
        height: 60px;
    }

    .logo-img {
        height: 50px;
    }

    .navbar-menu li:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 15px;
    }

    .logo-img {
        height: 45px;
    }

    .burger-menu span {
        width: 22px;
    }
}.container  
  {
    max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
}

.services-hero {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding  :     100px 20px;
   text-align: center;
   min-height: 400px;
   display: flex;
        align-items: center;
       justify-content: center;


}

.hero-content h1 {
   font-weight: 700;
  font-size     :     3rem;
    margin-bottom: 20px;
   letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
         max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-section {
    padding: 80px 20px;
}

.alt-bg {
   background: #f8f9fa;


}

.service-layout {
    gap  :    60px; 
	    align-items: center; 
	               display: grid; 
	        grid-template-columns :    1fr 1fr;
}  

.service-layout.reverse {
    grid-template-columns: 1fr 1fr;
   direction: rtl;
}

.service-layout.reverse > * {
	    direction: ltr;

}

.service-text-content h2 {
   font-size   :       2.3rem;
   margin-bottom: 20px;
   color: #2c3e50;
    font-weight     :        700;


}

.service-text-content p {
   color   :     #555;
  font-size     :  1.05rem;
   line-height: 1.8;
  margin-bottom: 25px;
}

.service-text-content h3 
 {
    font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
   font-size:   1.3rem;
    margin-top: 30px; 
	
}

.service-list {
   list-style     :     none;
   margin-bottom: 30px;
}

.service-list li


{
  padding: 10px 0;
  padding-left: 25px;
 position: relative;
   color: #555;
   line-height: 1.7;
}

.service-list li:before {
  content: "→";
  position: absolute;
  left: 0;
   color: #667eea;
                    font-weight: bold;
}

.service-image {
 overflow: hidden;
   border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image img {
	 width: 100%;
         height: auto;
   display: block;
    transition: transform 0.3s ease;
}

.service-image:hover img {
	  transform: scale(1.05);
     }

.service-pricing {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 20px;
   border-radius: 10px;
    border-left     : 4px solid #667eea;
    margin-top: 30px;
}

.price-tag {
    display: block;
   	font-size: 1.8rem;
      font-weight: 700;
      color: #667eea;
      margin-bottom: 8px;
	}

.price-note {
  color: #666;
    font-size     : 0.95rem;
	 font-style: italic;
}

.comparison-section {
   padding: 80px 20px; 
   background: #f8f9fa;
}

.section-title   {
   font-size:2.5rem;
	font-weight: 700;
	margin-bottom: 50px;
   text-align: center;
   color: #2c3e50;
}

.comparison-table    {
  overflow-x: auto;
    background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

table {

	  width :  100%;
    border-collapse: collapse;
}

table thead {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;



}

table th {
         padding: 20px;
    text-align: left;
	font-weight: 600;
	font-size: 1rem;
	
}

table td {
  padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
	color :    #555;
}

table tbody tr:hover {
    background: #f5f5f5;
}  

table tbody tr:last-child td {
   border-bottom: none;
}

.faq-section {
   padding: 80px 20px;
}

.faq-grid {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
   margin-top: 50px;


}

.faq-item {
   background: white;
   padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #667eea;
  transition: all 0.3s ease;
}

.faq-item:hover  {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);

}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom     :        15px;
    color:#2c3e50;
   font-weight: 600;
}

.faq-item p {
  color: #666; 
	    line-height :1.7;
}

.services-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   text-align: center;
   padding: 100px 20px;
  border-radius: 12px;
   margin: 80px 20px;
}

.services-cta h2 {
	   font-size: 2.5rem;
    margin-bottom: 20px;


}

.services-cta p  
  {
	 font-size: 1.2rem;
    margin-bottom: 40px;
   opacity: 0.95;
}

.cta-button-service {
  background: white;
  color :    #667eea;
   padding :16px 48px;
	 border: none;
   border-radius: 50px;
    font-size: 1.1rem;
	 font-weight :   600;
	cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
   display: inline-block;
}

.cta-button-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.thankyou-section {
  min-height: 600px;
	display    :   flex;
    align-items  :      center;
  justify-content: center;
         padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2ff 100%);
}

.thankyou-container {
    background: white;
	padding: 60px;
      border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    max-width: 700px;
         text-align: center;
}

.thankyou-icon {
   margin-bottom: 30px;
}


.thankyou-icon svg {
	                    display: inline-block;
   animation: slideDown 0.6s ease-out;
	}  @keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.thankyou-container h1 {
  font-size: 2.8rem;
   color: #2c3e50;
       margin-bottom: 15px;
    font-weight: 700;
}

.thankyou-subtitle 
 {
   font-size: 1.3rem;
       color: #667eea;
     margin-bottom :30px;
       font-weight: 600;

}

.thankyou-content {
    text-align: left;
   margin :     40px 0; 

}

.thankyou-content p {

	  line-height: 1.8;
   color: #555;
  margin-bottom: 20px;}

.thankyou-content h2 {
       margin-top: 30px;
   font-weight: 600;
  color     :   #2c3e50;
 font-size: 1.5rem;
      margin-bottom: 20px;
}

.steps-list {
       list-style: none;
   margin-bottom: 30px;
}

.steps-list li {
    padding: 12px 0;
   padding-left: 35px;
  position: relative;
   color: #555;
        line-height: 1.7;
}

.steps-list li:before {
  content: "✓";
   position   :        absolute;
    left: 0;
  color   :        #667eea;
   font-weight: bold;
    font-size: 1.3rem; 
	
}

.info-box {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
	border-left: 4px solid #667eea;
  padding    :      25px;
   border-radius: 10px;
	margin-top: 30px;
}

.info-box h3{
    color: #2c3e50;
  font-weight     :     600;
    margin-bottom: 15px;}

.info-box p {
  margin-bottom: 10px;

	               line-height: 1.7;

	    color: #555;
}

.contact-info {
      font-size: 1.1rem;
	color: #667eea;
   margin-bottom: 10px;
}

.action-buttons {
    display: flex;
  gap: 20px;
   justify-content :center;
    margin-top: 40px;
    flex-wrap :   wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 14px 40px;
  border-radius: 50px;
   text-decoration: none;
 font-weight: 600;
   transition: all 0.3s ease;
	display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
   background: white;
   color: #667eea;
        padding: 14px 40px;
    border: 2px solid #667eea;
 border-radius: 50px;
   text-decoration: none;
   font-weight: 600;
  transition   :       all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
  background: #667eea;
	 color: white;
}  

.bonus-section {
   padding:   80px 20px;

	   background: #f8f9fa;
}

.bonus-grid	{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap: 30px;
    margin-top: 50px;
}

.bonus-card {
               background: white;
  padding: 40px 30px;
	border-radius: 12px;
  text-align     : center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition:      all 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);


}

.bonus-number {
  display: inline-block;
	width: 60px;
        height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   font-size: 2rem;
   font-weight: 700;
    border-radius:   50%;
    display: flex;
   align-items  :     center;
   justify-content :  center;
		margin-bottom: 20px;
} 

.bonus-card h3 {
   font-size: 1.3rem;
	  color: #2c3e50;
	  margin-bottom: 15px;
	   font-weight: 600;}

.bonus-card p {
  color: #666;
    line-height: 1.7;
}

.quick-faq-section{
  padding: 80px 20px;
}

.quick-faq {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  margin-top     :      50px;

}

.quick-faq-item {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 25px;
  border-radius    :10px;
   border-left   :     4px solid #667eea;
	
}

.quick-faq-item h3 {
   font-size: 1.1rem;

  color: #2c3e50;

  margin-bottom     :     12px;

  font-weight: 600;
}

.quick-faq-item p {
   color:       #666;
   line-height: 1.7;
}  

footer {
      background: #2c3e50;
   color:   white;
	 padding: 60px 20px;
   margin-top: 80px;
     }

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
	 margin-bottom: 40px;
}

.footer-section h4 {
  margin-bottom: 20px;
    font-size   :        1.2rem;
}

.footer-logo {
	    margin-bottom :      20px;


}  

.footer-logo img {
    height: 86px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-text 
 {
   color     :#bbb;
       line-height: 1.8;
   margin-bottom: 15px;
}

.footer-links {
   list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}  

.footer-links a {
    color: #bbb;
  text-decoration: none;
   transition: color 0.3s ease;
}

.footer-links a:hover {
   color: white;
}

.footer-contact p  
  {
  color: #bbb;
    margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid #445; 
	  padding-top   :     30px; 
	    text-align: center; 
	   color: #999;
}@media (max-width: 768px) {
    .services-hero {
        padding: 60px 20px;
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .service-layout,
    .service-layout.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }

    .service-layout.reverse > * {
        direction: ltr;
        order: 2;
    }

    .service-layout.reverse .service-image {
        order: 1;
    }

    .service-text-content h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    table th,
    table td {
        padding: 12px;
    }

    .services-cta {
        margin: 50px 20px;
    }

    .services-cta h2 {
        font-size: 2rem;
    }

    .thankyou-container {
        padding: 40px;
    }

    .thankyou-container h1 {
        font-size: 2.2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .service-text-content h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .thankyou-container {
        padding: 30px;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .services-cta h2 {
        font-size: 1.8rem;
    }

    table {
        font-size: 0.8rem;
    }

    table th,
    table td {
        padding: 8px;
    }
}.container {
  max-width   :1200px;
    margin: 0 auto;
  padding: 0 20px;
}

.policySection 
 {
  padding: 80px 2rem;
   background   :   #f8f9fa;
       min-height: 60vh;
}

.policyContainer {
    max-width: 900px;
    margin: 0 auto;
  text-align: left;
        background: white;
      padding: 60px;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);


}

.policyContainer h1 {
  font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 40px;
	font-weight: 700;
   padding-bottom: 20px;
  border-bottom: 3px solid #667eea;
}

.policyContainer h2 {
  font-size: 1.8rem;
   color: #2c3e50;
    margin-top     :   40px;
  margin-bottom: 20px;
  font-weight: 700;
}

.policyContainer p {
    color: #555;
  margin-bottom:     20px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.policyContainer p:last-of-type  {
    margin-bottom: 0;
}

footer {
                    background: #2c3e50;
   color: white;
    padding: 60px 20px;
  margin-top: 40px; 
	
}

.footer-content {
	 display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	  gap: 40px;
	 margin-bottom: 40px;
}  

.footer-section h4 {
	                    font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight   :     600;




}

.footer-logo  
  {


    margin-bottom: 20px;


     }

.footer-logo img {


  height: 86px;
    width: auto;
  filter: brightness(0) invert(1);

}

.footer-text {
   color: #bbb;
   line-height: 1.8;
		margin-bottom: 15px;
}

.footer-links {
  list-style: none;
}

.footer-links li {


   margin-bottom :    12px;}

.footer-links a {
     color    :       #bbb;
   text-decoration:        none;
  transition: color 0.3s ease;}

.footer-links a:hover

{

	  color: white;
}

.footer-contact p {
   color    :      #bbb;
	 margin-bottom: 10px;
  line-height    :     1.6;
}

.footer-bottom {
   border-top: 1px solid #445;
   padding-top: 30px;
   text-align: center;
         color: #999;
}@media (max-width: 768px) {
    .policyContainer {
        padding: 40px;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .policyContainer {
        padding: 30px 20px;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .policySection {
        padding: 40px 1rem;
        min-height: auto;
    }

    .footer-logo img {
        height: 70px;
    }

    .footer-text {
        font-size: 0.95rem;
    }
}