*		{


   margin: 0;
   padding: 0;
   box-sizing: border-box;

}

html {
	   scroll-behavior: smooth;}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
 color: #1a1a1a;
  background :   #fafafa;

}

.wrapper {
                    max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

header {
   background   :      #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position     :    sticky;
   top: 0;
   z-index     :   100;
}

nav {
	 display: flex;
               justify-content: space-between;
    align-items: center;
	 padding: 16px 0;
}

.logo-container {

	   display: flex;
	 align-items    :       center;
   gap: 12px;
   text-decoration: none;
                    color: #1a1a1a;


}

.logo-img {
  height:    40px;
  filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
	 list-style: none;
    gap: 32px;
    align-items   :   center;
	}

.nav-menu a {
	   position: relative;
        font-size: 15px;
    color: #1a1a1a;
   font-weight: 500;
   transition : color 0.3s ease;
   text-decoration: none;
	}

.nav-menu a::after {
  content: '';
  position:     absolute;
    bottom: -4px;
   left: 0;
  width: 0;
          height: 2px;
  background:     #2563eb;
   transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.burger-menu {
    display: none;
   flex-direction: column;
    cursor: pointer;
   gap: 6px;
}

.burger-menu span {
   width: 24px;
  height: 2px;
  background: #1a1a1a;
	 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);
}

.nav-mobile {
   display: none;
        position: absolute;
  top: 100%;
  left: 0;
   right: 0;
  background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    flex-direction: column;
   gap: 16px;
  padding: 20px;
  list-style: none;


}

.nav-mobile.active {
                    display: flex;
} 

.nav-mobile a


{
    text-decoration: none;
	 color: #1a1a1a;
   font-weight: 500;
 font-size     :     16px;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    nav {
        position: relative;
    }
}section {
    padding: 80px 0;
}  

.hero {

  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

  padding: 120px 0;


}

.hero-content


{
  display  :   grid;
   grid-template-columns:        1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 
 {
  font-size  :        48px;
	line-height: 1.2;
	 margin-bottom :  24px;
       font-weight: 700;
	color: #0f172a;
}

.hero p 
 {
   font-size: 18px;
   color:        #475569;
  margin-bottom:      32px;
   line-height: 1.8;
}

.cta-button {


   display: inline-block;
	 background: #2563eb;
  color: #ffffff;
   padding     :     14px 36px;
    border-radius: 6px;
   text-decoration    :none;
	 font-weight: 600;
   font-size: 16px;
   transition: all 0.3s ease;
   border: 2px solid #2563eb;
   cursor: pointer;
    text-align: center;

}

.cta-button:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}



.cta-secondary {
    color: #2563eb;
    margin-left: 16px;
	background: transparent;
}  

.cta-secondary:hover {
    background: #eff6ff;
}

.hero-image {
         display :  flex;
    justify-content: center;
    align-items: center;
               min-height: 400px;
}

.hero-image img {
   max-width     :     100%;
      height: auto;
    border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-secondary {
        display: block;
        margin-left: 0;
        margin-top: 12px;
    }
}.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
	margin-top: 60px;
}

.service-card	{
       background: #ffffff;
  padding: 40px 32px;
  border-radius: 8px;
   border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
    position: relative;
  overflow: hidden;
}

.service-card::before {

  content: '';
   position   :       absolute;
	top: 0;
   left: 0;
	width     :   100%;
   height: 4px;
  background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
  transform: scaleX(0);
   transform-origin: left;
  transition: transform 0.3s ease;

}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {


  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);}

.service-card h3 {
   font-size: 20px;
    margin-bottom :     16px;
   color: #0f172a;
   font-weight: 700;
}

.service-card p {
	color: #64748b;
   font-size: 15px;
    line-height: 1.7;
}

.expertise-section {
    background   :      #f8fafc;
}

.expertise-section h2
{
	font-size: 40px;
   margin-bottom: 16px;
	color: #0f172a;
}

.expertise-intro {
   font-size: 18px;
    color: #475569;
  margin-bottom:      60px;
    max-width: 700px;
	
}

.expertise-row {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap     :      40px;
   margin-bottom  :60px;
	align-items: center;
}

.expertise-row:nth-child(even) {
  direction: rtl;
}

.expertise-row:nth-child(even) > *     {


                    direction: ltr;



}

.expertise-text h3 {
    font-size     :    28px;
  margin-bottom: 16px;
	color: #0f172a;
}

.expertise-text p {
	 color    : #64748b;
  margin-bottom: 20px;
    font-size: 16px;
    line-height     :        1.8;
	
}



.expertise-image img {
                    width: 100%;
   height:auto;
  border-radius: 8px;
}@media (max-width: 768px) {
    .expertise-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .expertise-row:nth-child(even) {
        direction: ltr;
    }

    .expertise-section h2 {
        font-size: 28px;
    }
}.cta-section {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
   text-align: center;
	padding: 80px 0;
}

.cta-section h2 {
               margin-bottom: 24px;
    font-size: 40px;
	 font-weight:  700;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width :      600px;
    margin-left: auto;
   margin-right: auto;
  opacity: 0.9;
}

.cta-button-light {
    background: #ffffff;
  color: #2563eb;
   padding: 14px 40px;
   border-radius: 6px;
  text-decoration   :        none;
 font-weight: 600;
  font-size: 16px;
	display: inline-block;
	transition: all 0.3s ease;
}

.cta-button-light:hover  
  {
    background: #f1f5f9;
  transform: translateY(-2px);
}

.contact-section {
    background: #ffffff;
       padding: 80px 0;
}

.contact-section h2 {
   font-size: 40px;
  margin-bottom: 50px;
  text-align: center;
  color: #0f172a;
}

.contact-container {
  max-width: 700px;
   margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
   display: grid;
   grid-template-columns  :      1fr 1fr;
    gap: 20px;
}



.form-group label {
             display: block;
  margin-bottom: 8px;
  color: #0f172a;
   font-weight: 600;
    font-size: 14px;

}

.form-group input,
.form-group textarea,
.form-group select {
  -webkit-border-radius: 6px;
	    width  :       100%;
	   -moz-transition: border-color 0.3s ease;
	    padding: 12px 16px;
	   border: 1px solid #e2e8f0;
	    -webkit-transition: border-color 0.3s ease;
	   border-radius: 6px;
	    font-size: 15px;
	    font-family: inherit;
	  transition  :border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
   outline: none; 
   border-color: #2563eb; 
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
	   grid-column: 1 / -1;
  resize: vertical;
  min-height: 140px;


}

.form-submit {
					padding: 14px 32px;
    width :    100%;
   transition     :  all 0.3s ease;
   border-radius: 6px;
  background     :        #2563eb;
 grid-column: 1 / -1;
  color: #ffffff;
 border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
}

.form-submit:hover {
    background: #1d4ed8;
     -ms-transform: translateY(-2px);
     transform: translateY(-2px);
     -webkit-transform: translateY(-2px);
} @media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-section h2 {
        font-size: 28px;
    }

    section {
        padding: 50px 0;
    }

    .hero {
        padding: 60px 0;
    }
}footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
		color: #ffffff;
	   padding: 60px 0 30px;
	    margin-top    : 80px;
	  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
	 display: grid;
   grid-template-columns     :  2fr 1.5fr 1.5fr 2fr;
 gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
   font-size: 16px;
   font-weight: 700;
	margin-bottom: 20px;
   text-transform    :    uppercase;
    letter-spacing: 0.5px;
	color: #ffffff;
}

.footer-section p {
   margin-bottom: 12px;
   color:#cbd5e1;
   line-height: 1.8;
   font-size: 14px;
}

.footer-section ul
{
  list-style: none;
}

.footer-section ul li {
  margin-bottom  :      12px;
}

.footer-section a {
	color: #cbd5e1;
  text-decoration     :  none;
   font-size: 14px;
	 transition: color 0.3s ease;
  position: relative;
    display: inline-block;
}

.footer-section a::after  {
  content: '';
  position: absolute;
  bottom: -2px;
   left: 0;
	width: 0;
    height: 1px;
  background: #60a5fa;
  transition: width 0.3s ease;
}

.footer-section a:hover {


  color: #60a5fa;


}

.footer-section a:hover::after {
   width    :     100%;
}

.footer-logo {
   height: 50px;
  filter: brightness(0) invert(1);
    margin-bottom: 20px;
    display: block;
}

.footer-section:first-child {
  display: flex;
   flex-direction     :  column;
   justify-content: flex-start;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 30px;
   text-align: center;
    color: #94a3b8;
   font-size     :    14px;
}@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 50px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-section h4 {
        font-size: 15px;
    }

    .footer-section p {
        font-size: 13px;
    }

    .footer-section a {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 0 25px;
        margin-top: 50px;
    }

    .footer-section h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-section p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .footer-logo {
        height: 40px;
    }
}.policySection {
  padding: 80px 0;
   background: #f8fafc;
}

.policyContainer {
   max-width: 800px;
	margin: 0 auto;
   text-align: left;
}

.policyContainer h1 {
    font-size: 40px;
   color  : #0f172a;
   margin-bottom     :        16px;
    font-weight: 700;
}


.policyContainer h2 {
	font-size :   24px;
   color: #1e293b;
   margin: 32px 0 16px 0;
	font-weight: 600;
}

.policyContainer p {
   color    : #64748b;
  margin-bottom     :    1.5rem;
    line-height: 1.7;
   font-size: 16px;
}

.policyContainer ol,
.policyContainer ul {
       padding-left   : 24px;
    margin: 16px 0;}

.policyContainer ol li,
.policyContainer ul li {
	         margin-bottom: 8px;
    color   :        #475569;

}@media (max-width: 768px) {
    .policyContainer h1 {
        font-size: 32px;
    }

    .policyContainer h2 {
        font-size: 20px;
    }

    .policyContainer p {
        font-size: 15px;
    }

    .policySection {
        padding: 60px 0;
    }
}.policyContainer table {
  width: 100%; 
	  border-collapse: collapse; 
	    margin   : 24px 0; 
	    background: white; 
		border-radius: 8px; 
	        overflow: hidden; 
	  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); 

}

.policyContainer th,
.policyContainer td {
   padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
	
}

.policyContainer th {
  background: #f1f5f9;
   font-weight: 600;
	 color: #1e293b;
}

.policyContainer tr:last-child td {
  border-bottom  :     none;
}

.services-page-container {
   max-width: 1200px;

    margin: 0 auto;

	padding: 0 20px; 
	
}



.service-card-expanded {
     -moz-transition: all 0.3s ease;
   background: #ffffff;
   border-radius: 8px;
    overflow     :   hidden;
  margin-bottom: 40px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
   -o-transition: all 0.3s ease;
}

.service-card-expanded:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}


.service-grid-compact     {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap     :24px;
   margin-top: 40px;
	
}

.pricing-section {
      padding: 60px 0;
       background: #f8fafc;
      margin: 60px 0;
}

.pricing-header {
   text-align: center;
   margin-bottom: 50px;
}


.pricing-header h2 {
  font-size: 40px;
    margin-bottom: 16px;
  color: #0f172a;
    font-weight   :  700;
	
}



.pricing-header p {
   font-size: 18px;
               color:        #64748b;
          max-width: 600px;
  margin: 0 auto;
}

.testimonial-section {
  background: #ffffff;
  padding: 60px 0;
  margin: 60px 0;
}


.testimonial-grid {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
    margin-top: 40px;
	}

.testimonial-card {
    background: #f8fafc;
    padding: 30px;
  border-radius: 8px;
   border-left: 4px solid #2563eb;
}

.testimonial-text {

  font-size     : 15px;
         color  :   #64748b;
  font-style: italic;
       margin-bottom: 16px;
  line-height: 1.8; 
	
	}

.testimonial-author{
   font-weight   : 600;
  color: #0f172a;
    font-size: 14px;
}

.testimonial-role {
    font-size  :       13px;
    color: #94a3b8;
}

.comparison-table {
	  width: 100%;
   border-collapse: collapse;
  background: #ffffff;
  border-radius: 8px;
    overflow: hidden;
   margin: 40px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.comparison-table thead {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	    color: #ffffff;
}


.comparison-table th {
   padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
  letter-spacing: 0.5px;

}

.comparison-table td  {
   padding: 16px 20px;

		 border-bottom: 1px solid #e8e8e8;

	  font-size  :     15px;
}

.comparison-table tbody tr:hover {

   background: #f8fafc;
     }

.comparison-table tbody tr:last-child td {
   	 border-bottom: none;
}

.check-icon {
   color: #2563eb;
	font-weight: 700;
}

.cross-icon {
   color: #94a3b8;
}

.benefits-list {
  list-style: none;
  margin  :30px 0;
}

.benefits-list li {
  padding: 12px 0;
  padding-left: 32px;
   position   :      relative;
   color: #64748b;
   font-size:   15px;
   line-height: 1.7;

}

.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
    top: 16px;
    width: 16px;
       -moz-border-radius: 50%;
	height: 16px;
    background   :        #2563eb;
    border-radius: 50%;
}

.accordion-wrapper {
    margin: 30px 0;
}

.accordion-item {
  border: 1px solid #e8e8e8;
  border-radius  :6px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #ffffff;
}

.accordion-header {
   background: #f8fafc;
  padding: 20px;
   cursor: pointer;
         display: flex;
    justify-content: space-between;
   align-items:  center;
  font-weight: 600;
  color: #0f172a;
 transition: background 0.3s ease;
  user-select  :    none;
}

.accordion-header:hover {
   background   :    #f1f5f9;
}

.accordion-header.active {

		 background: #eff6ff;
}

.accordion-icon {
  width :     20px;
      height: 20px;
    display: flex;
	align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}


.accordion-content {
  display:     none;
  padding: 20px;
  border-top: 1px solid #e8e8e8;
  background: #ffffff;
    color: #64748b;
  font-size: 15px;
               line-height: 1.8;
}

.accordion-content.active {
    display: block;
}

.highlight-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
   border-left: 4px solid #f59e0b;
   padding: 24px;
    border-radius: 6px;
    margin: 30px 0;
}

.highlight-box h4


{

	    color: #92400e;
  font-weight: 700;
	 margin-bottom: 8px;}

.highlight-box p {
    color     :    #78350f;
    font-size: 15px;
   line-height: 1.6;
   margin: 0;
}

.success-box {
	  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
   border-left: 4px solid #22c55e;
   padding: 24px;
   border-radius: 6px;
   margin: 30px 0;

     }

.success-box h4 {
  color :    #166534;
   font-weight: 700;
	margin-bottom: 8px;
}

.success-box p {
  color: #15803d;
         font-size: 15px;
    line-height: 1.6;
   margin: 0;
}

.info-box-styled {
     background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
	 border-left: 4px solid #3b82f6;
	 padding: 24px;
    border-radius: 6px;
  margin: 30px 0; 
}

.info-box-styled h4 {
	color: #1e40af;
  font-weight: 700;
  margin-bottom: 8px;
} 

.info-box-styled p
{
  font-size: 15px;
  line-height: 1.6;
    color: #1e3a8a;
	 margin: 0;
} 

.video-embed-wrapper {
       position: relative; 
	    width: 100%; 
	  -moz-border-radius   :     8px; 
		 padding-bottom: 56.25%; 
	    height: 0; 
	   margin: 40px 0; 
	    border-radius: 8px; 
	     overflow: hidden;

}

.video-embed-wrapper iframe    {
   position: absolute;
   top: 0;
  left: 0;
  width: 100%;
   height  :      100%;
                    border: none; 

}

.stats-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
    margin: 50px 0;
	
}

.stat-card {
    background: #ffffff;
    padding: 30px;
    border-radius  :        8px;
   text-align: center;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.stat-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.stat-number

{
   font-size: 40px;
   font-weight: 700;
				 color: #2563eb;
  margin-bottom: 8px; 

}

.stat-label {
         font-weight: 600;
    color: #64748b;
   font-size: 15px;
}

.stat-description		{
   font-size: 13px;

	          color: #94a3b8;

	   margin-top: 8px;
}

.two-column-layout {
	   display: grid;
	grid-template-columns: 1fr 1fr;
   gap     : 40px;
    align-items: center;
	margin: 50px 0;


}

.two-column-layout.reverse {
   direction: rtl;
}

.two-column-layout.reverse > * {

	    direction: ltr;

}

.visual-element {
    width: 100%;
   max-width    :        500px;
   margin  :    0 auto;
}@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .two-column-layout.reverse {
        direction: ltr;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 16px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .service-grid-compact {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .pricing-header h2 {
        font-size: 28px;
    }

    .comparison-table {
        overflow-x: auto;
        display: block;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table td {
        display: block;
        width: 100%;
    }

    .comparison-table tr {
        margin-bottom: 20px;
        border: 1px solid #e8e8e8;
        border-radius: 6px;
        overflow: hidden;
    }

    .comparison-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        border: none;
        border-bottom: 1px solid #f1f5f9;
    }

    .comparison-table td:first-child {
        background: #f8fafc;
        text-align: left;
        padding-left: 16px;
        font-weight: 600;
        color: #0f172a;
    }

    .comparison-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 16px;
        font-weight: 600;
        color: #64748b;
    }
}

@media (max-width: 480px) {
    .service-details-list {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .accordion-header {
        padding: 16px;
        font-size: 14px;
    }

    .accordion-content {
        padding: 16px;
        font-size: 14px;
    }

    .highlight-box,
    .success-box,
    .info-box-styled {
        padding: 16px;
        margin: 20px 0;
    }

    .highlight-box h4,
    .success-box h4,
    .info-box-styled h4 {
        font-size: 14px;
    }

    .timeline-item {
        gap: 16px;
    }
}