.navbar {
	background-color: #ffffff;
	height: 64px;
    display: flex;
    justify-content: center;
    align-items:center;
  font-size: 1.1rem;
	position: fixed;
  top   : 0;
   width    :        100%;
          z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1280px;
    width: 100%;
   padding :   0 20px;
  justify-content: space-between;
    align-items: center;
 display   : flex;
}

.nav-logo 
 {

	    color  :   #667eea;
         cursor: pointer;
    display: flex;
    align-items: center;
  text-decoration: none;
	font-size: 2rem;
  font-weight  :     700;


}

.logo-img {
    height: 64px;
    width: auto;
}

.nav-menu {
	display   :      flex;
    list-style: none;
    text-align :   center;
}

.nav-item {
               line-height: 40px;
  margin :0 15px;
}

.nav-link {
    color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
       color: #667eea;
  border-bottom-color: #667eea;
} 

.hamburger {
        display: none;
   flex-direction:        column;
  cursor: pointer;
}

.bar{
  width :     25px;
   height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
	 background: #2c3e50;
}@media screen and (max-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 64px;
        left: -100%;
        opacity: 1;
        transition: all 0.5s ease;
        background-color: #ffffff;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 1;
    }

    .nav-item {
        margin: 0;
        line-height: 30px;
    }

    .nav-link {
        padding: 15px 20px;
        width: 100%;
        display: table;
        border-bottom: none;
    }

    .nav-link:hover {
        border-bottom: none;
        background-color: #f0f0f0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-logo {
        font-size: 1.5rem;
    }

    .logo-img {
        height: 50px;
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .nav-item {
        line-height: 25px;
    }

    .nav-link {
        padding: 12px 15px;
    }
}.container {
    max-width: 1280px;
	 margin   :     0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 20px; 
	
}

.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 20px;
 text-align: center;
   margin-top: 64px;

}

.services-hero h1 {
	   font-size: 3.5rem;
   margin-bottom: 20px;
   font-weight: 700;
    letter-spacing: -1px;
     }

.services-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
   opacity: 0.95;
        max-width: 700px;
   margin-left: auto;
  margin-right:auto;


}

.section-title	{
  text-align    :   center;
   margin-bottom     :       60px;
}

.section-title h2     {
   font-size: 2.5rem;
  margin-bottom: 15px;
    color: #2c3e50;
}

.section-title p {
  font-size: 1.1rem;

	   color :#7f8c8d;

	    max-width: 600px;

		margin:    0 auto;
}

.detailed-services {

  background-color: #f8f9fa;


}

.service-detail-item {
    background: white; 
		padding: 50px; 
	  margin-bottom: 40px; 
	    border-radius: 12px; 
	  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); 
	  display:     grid; 
	   grid-template-columns: 1fr 1fr; 
	   gap: 40px; 
	        align-items: center; 
	  transition     :       all 0.3s ease;
}

.service-detail-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-detail-item:nth-child(even) {
				 direction   :     rtl;
}

.service-detail-item:nth-child(even) > * {
	 direction: ltr;
}

.service-detail-text h3 {
  font-size: 2rem;
   margin-bottom :20px;
  color: #2c3e50;
}

.service-detail-text p {
    color: #555;
    line-height: 1.9;
   margin-bottom: 15px;
   font-size: 1rem;
}

.service-detail-features {
    list-style: none;
   margin-top: 25px;
}

.service-detail-features li {

	   padding: 10px 0;
   padding-left: 25px;
  position: relative;
    color: #555;
    font-size    :  0.95rem;


}

.service-detail-features li:before

{
    font-size: 1.1rem;
  content: "✓";
    position: absolute;
   color :     #667eea;
   left: 0;
    font-weight    :bold;
}

.service-detail-image {
   border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-detail-image img

{
	 height: auto;
    display   :block;
  width: 100%;
    transition: transform 0.3s ease;
}

.service-detail-item:hover .service-detail-image img {

	  transform: scale(1.05);
     }

.pricing-section    {
  background: white;
}



.pricing-grid {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap:   30px;
       margin-top: 50px; 

     }

.pricing-card

{
   background: #f8f9fa;
		padding: 40px;
    border-radius: 12px;
    text-align: center;
   border: 2px solid transparent;
  transition: all 0.3s ease;
}

.pricing-card:hover {

	   border-color: #667eea;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
  transform: translateY(-5px);
      background: white;
     }

.pricing-card h3 {

   font-size: 1.5rem;
   margin-bottom: 10px;
 color: #2c3e50;
     }

.pricing-card .price{
    font-size: 2.5rem;
   color: #667eea;
   margin: 20px 0;
  font-weight: 700;
}

.pricing-card .price-period {
   margin-bottom    :   25px;
		 color: #7f8c8d;
	  font-size: 0.95rem;
}

.pricing-card ul {
  list-style: none;

	   text-align: left;

	   margin-bottom :      30px;
}


.pricing-card li {
       padding: 10px 0; 
	    color: #555; 
	         border-bottom   :    1px solid #ddd; 
	       font-size: 0.9rem;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-button {
  display: inline-block;
	background-color: #667eea;
    color: white;
    padding     :      12px 35px;
    border-radius     :     50px;
    text-decoration    :none;
	font-weight: 600;
  font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pricing-button:hover {
   background-color: #764ba2;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.process-section {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
} 

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
   margin-top: 50px;


}


.process-step {
   background: white;
   padding   :        35px;
   border-radius: 12px;
  text-align: center;
  position: relative;
	transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.process-step:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    display: inline-flex;
 align-items: center;
	justify-content  :     center;
       width: 60px;
	 height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  border-radius   :50%;
  font-size  :  1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
}

.process-step h4 {
  font-size: 1.2rem;
	 margin-bottom: 15px;
   color: #2c3e50; 
	
}  

.process-step p     {
         color: #555;
   font-size: 0.95rem;
    line-height: 1.7;}

.benefits-section 
 {
    background: white;
} 

.benefits-grid {
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 35px;
    margin-top: 50px;


}

.benefit-item {
   border-radius:12px;
    border-left:   5px solid #f39c12;
  transition: all 0.3s ease;
	background: #f8f9fa;
      padding: 30px;
}

.benefit-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
                    border-left-color: #667eea;
}

.benefit-item h4 {
   font-size: 1.2rem;
    margin-bottom: 12px;
   color   :       #2c3e50;
}

.benefit-item p {
    color: #555;
    font-size: 0.95rem;
  line-height     :       1.7;
}

.faq-section {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
   background: white; 
	  margin-bottom: 20px; 
	   border-radius: 12px; 
	  overflow: hidden; 
	  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); 
	  transition: all 0.3s ease;
}

.faq-item:hover


{
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); 
	}

.faq-question     {
  padding: 25px;
	background: white;
    cursor: pointer;
    display: flex;
  justify-content     :  space-between;
   align-items: center;
    transition     :      all 0.3s ease;
    font-weight: 600;
  color: #2c3e50;
  user-select: none;
} 

.faq-question:hover {


   background: #f8f9fa;
    color: #667eea;}

.faq-toggle {
    width: 24px;
  height: 24px;
    display: flex;
   align-items: center;
    justify-content: center;
  font-size  :   1.5rem;
    transition: transform 0.3s ease;
    color    :#667eea;
}

.faq-item.active .faq-toggle{
  transform: rotate(180deg);
}

.faq-answer {


    max-height: 0;
   overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;}

.faq-item.active .faq-answer {
    max-height :500px;
}

.faq-answer-content {
   padding: 25px;
     color: #555;
  line-height: 1.8;
}

.thank-you-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color:  white;
    padding: 120px 20px;
   text-align: center;
    margin-top: 64px;
  min-height   :70vh;
        display   :     flex;
    align-items: center;
  justify-content: center;
}

.thank-you-content {

      max-width     :       700px;



}

.success-icon {
  font-size: 5rem;
    margin-bottom: 30px;
	 animation: bounce 0.8s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}.thank-you-section h1  
  {
  font-size: 3rem;
    margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -1px;
}

.thank-you-section p {
  font-size: 1.2rem;
  margin-bottom     :     15px;
	 opacity: 0.95;
    line-height: 1.8;
}

.thank-you-info {
  background: rgba(255, 255, 255, 0.1);
	 padding: 30px;
   border-radius: 12px;
   margin: 40px 0;
  backdrop-filter: blur(10px);

}

.thank-you-info p {
	margin-bottom: 10px;
	font-size: 1rem;
}

.back-button {
  display: inline-block;
   background-color: #f39c12;
  color: white;
    padding: 14px 40px;
     border-radius: 50px;
   text-decoration     :      none;
     font-weight: 600;
    font-size: 1.05rem;
   transition: all 0.3s ease;
    margin-top   :       20px;
   border: none;
  cursor: pointer;
}

.back-button:hover {
  background-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.next-steps {
    padding:    80px 20px;
    background   :      #f8f9fa;
	
}

.next-steps-title {
  text-align    :     center;
    margin-bottom: 50px;
}

.next-steps-title h2 {
   font-size: 2.5rem;
   margin-bottom: 15px;
    color: #2c3e50;
	
}

.next-steps-title p {
    font-size: 1.1rem;
    color: #7f8c8d;
	max-width: 600px;
  margin :0 auto;
}

.steps-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
   max-width: 1200px;
	margin: 0 auto;
	}

.step-card {
  background: white;
    padding: 40px;
   border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
	}  

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-number-circle {

	    display    :      inline-flex;
  align-items: center;
   justify-content: center;
  width: 60px;
    height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  border-radius: 50%;
  font-size     :     2rem;
   font-weight     :        700;
    margin-bottom: 20px;}

.step-card h3   {
  font-size:       1.4rem;
  margin-bottom: 15px;
   color: #2c3e50;
}

.step-card p {
   color: #555;

	    line-height: 1.8;

	    font-size: 0.95rem;
}

footer {
       background: #1a1a1a;
   color: white;
    padding: 60px 20px 30px;

}

.footer-content {
   max-width: 1280px;

   margin: 0 auto;

    display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

   gap: 40px;

	 margin-bottom: 50px;
}

.footer-section h3 {
  font-size: 1.2rem;
    margin-bottom: 20px;
  color: #f39c12;
}

.footer-section p     {
  color: #bbb;
	  line-height: 1.8;
	    font-size: 0.95rem;
}

.footer-logo-section {


   margin-bottom: 20px;
	}

.footer-logo {
   height: 86px;
	width: auto;
          margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-links {
  list-style: none;
	
}

.footer-links li {
   margin-bottom  :    12px;
}

.footer-links a {
  color: #bbb;
          text-decoration: none;
   transition: color 0.3s ease;
	font-size: 0.95rem;
}

.footer-links a:hover {
    color: #f39c12;
}

.footer-bottom {
  border-top: 1px solid #333;
   padding-top: 30px;
     text-align     :center;
  color:     #999;
         font-size: 0.9rem;
     }@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }

    .services-hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .service-detail-item:nth-child(even) {
        direction: ltr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .thank-you-section h1 {
        font-size: 2.2rem;
    }

    .success-icon {
        font-size: 3rem;
    }

    .next-steps-title h2 {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 50px 20px;
    }
}

@media (max-width: 480px) {
    .thank-you-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .service-detail-text h3 {
        font-size: 1.5rem;
    }

    .pricing-card h3 {
        font-size: 1.2rem;
    }

    .pricing-card .price {
        font-size: 2rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer-content {
        padding: 20px;
    }
}.container {
    max-width: 1280px;
    margin: 0 auto;
	padding: 0 20px;
}

.policySection{

   padding: 80px 2rem;
   background: #f8f9fa;
   margin-top:        64px;
     }

.policyContainer {
   max-width  :        900px;
    margin: 0 auto;
    text-align: left;
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.policyContainer h2 {
    font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 1.5rem;
	font-weight: 700;
  letter-spacing: -1px;
}

.policyContainer h3 {
   font-size: 1.5rem;
  color     :#667eea;
    margin-top: 2rem;
               margin-bottom :      1rem;
	font-weight: 600;
} 

.policyContainer p {
	 color: #555;

	         margin-bottom: 1.5rem;

		line-height: 1.8;

	    font-size: 1rem; 
	
}

.policyContainer ul {
    margin-bottom:   1.5rem;
  margin-left: 2rem;

}

.policyContainer li {
  color :  #555;
	   margin-bottom: 0.8rem;
	  line-height: 1.7;
	    font-size: 1rem;
}

footer {
  background: #1a1a1a;
	color: white;
	padding: 60px 20px 30px;
}

.footer-content {
  max-width  :   1280px;
  margin: 0 auto;
    display  :       grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 40px;
    margin-bottom:  50px;
	
}

.footer-section h3 {
	  font-size: 1.2rem;
   margin-bottom: 20px;
   color: #f39c12;

}

.footer-section p {
	    color :#bbb;
   line-height: 1.8;
	 font-size: 0.95rem;


}

.footer-logo-section {
   margin-bottom: 20px;
}

.footer-logo {
  height: 86px;
  width: auto;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-links {
	list-style: none;
}

.footer-links li {
         margin-bottom: 12px;
}

.footer-links a {
   font-size: 0.95rem;
          color     :   #bbb;
         transition:       color 0.3s ease;
  text-decoration  :   none;
}

.footer-links a:hover
	{
	 color: #f39c12;
}

.footer-bottom 
 {
       border-top  :   1px solid #333;
  padding-top: 30px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
	
}@media (max-width: 768px) {
    .policyContainer {
        padding: 30px;
    }

    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer h3 {
        font-size: 1.3rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }

    .policyContainer li {
        font-size: 0.95rem;
    }

    .policySection {
        padding: 60px 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .policyContainer {
        padding: 20px;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .policySection {
        padding: 40px 0.5rem;
        margin-top: 64px;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }
}