* 
 {
                    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;
    background-color: #0a0e27;
  color    : #e0e0e0;
   line-height: 1.6;
  overflow-x     :  hidden;
}

.navbar {
    position: sticky;
  top: 0;
   z-index    :  1000;
  background: linear-gradient(135deg, #0f1535 0%, #1a1f4d 100%);
  border-bottom: 1px solid rgba(102, 126, 234, 0.2);
  backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.nav-container     {

    max-width: 1200px;
  margin: 0 auto;
          padding: 0 2rem;
   display: flex;
  justify-content: space-between;
	align-items: center;}

.nav-brand {
  flex-shrink: 0;
}

.logo-img  {
    height: 40px;
      width     :   auto;
  filter: brightness(0) invert(1);
}

.nav-links {

  gap: 2rem;
   align-items: center;
    display: flex;}

.nav-link {
        color: #e0e0e0;
	text-decoration: none;
    font-weight: 500;
   transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
   color: #667eea;
}

.nav-link::after {
  content: '';
   position: absolute;
    bottom :  -5px;
   left: 0;
  width:      0;
  height:2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
   transition: width 0.3s ease;
}

.nav-link:hover::after {
   width: 100%;
}

.burger-btn {
    display: none;
        background: none;
	 border: none;
  cursor: pointer;
    padding: 0.5rem;
}


.burger-btn img {
       width: 24px;
   height   :      24px;
  filter: invert(1);

     }

.hero {
  display: grid;

	   grid-template-columns: 1fr 1fr;

		gap  :        3rem;

	   align-items: center;

	    max-width: 1200px;

	  margin: 4rem auto;

	   padding: 0 2rem;
}

.hero-content	{
  z-index   :      10;
}

.hero-title {
                  font-size: 3.5rem;
   font-weight: 800;
  line-height : 1.2;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-clip     :  text;
  margin-bottom: 1.5rem;

}

.hero-subtitle {


	font-size     :   1.25rem;
   color: #b0b0b0;
   margin-bottom   :   2rem;
	line-height: 1.8;
     }

.hero-cta {
    display: flex;
       gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
   padding    :   1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color     :white;
   text-decoration: none;
  border-radius: 8px;
   font-weight: 600;
   transition: all 0.3s ease;
  border: 2px solid transparent;
    display:   inline-block;
   cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  padding    :     1rem 2rem;
  background: transparent;
    color: #667eea;
  text-decoration  : none;
  border-radius    :    8px;
  font-weight: 600;
   border: 2px solid #667eea;
    transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}  

.btn-secondary:hover {
    background: #667eea;
  color: white;
  transform: translateY(-2px); 

}

.hero-image {
   position     :      relative;
}

.hero-image img {
	width   :   100%;
   height: auto;
    border-radius   :      12px;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.features-intro {

	    margin: 4rem auto;
      max-width: 1200px;
   	padding: 0 2rem;

}

.features-grid {
	   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border: 1px solid rgba(102, 126, 234, 0.2);
   border-radius :    12px;
  padding: 2rem;
  transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.feature-icon {

  width: 60px;
   height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
	justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 50%;

}

.feature-icon img {

	  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
     }

.feature-card h3 {
	 font-size: 1.3rem;
    margin-bottom: 0.8rem;
        color: #ffffff;

}

.feature-card p {

    color: #a0a0a0;
	 font-size: 0.95rem;
      line-height  :       1.6;
}

.showcase {
   max-width: 1200px;
	   margin: 4rem auto;
	  padding: 0 2rem;
}

.showcase-item    {

	  display: grid;
    grid-template-columns: 1fr 1fr;
       gap   :        3rem;
  align-items: center;}

.showcase-item img {
    width: 100%;
	height: auto;
               border-radius: 12px;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.showcase-text h2 {
  font-size     :     2.2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   background-clip: text;

}

.showcase-text p {
   color: #b0b0b0;
    line-height: 1.8;
   font-size    :        1.05rem;
}



.services-preview {
    max-width: 1200px;
  margin: 4rem auto;
   padding   :    0 2rem;
}

.services-preview h2 {
   	font-size: 2.5rem;
   text-align: center;
   margin-bottom: 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       background-clip: text;
}

.services-row {
		display: grid;
  grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;

}

.service-item {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border: 1px solid rgba(102, 126, 234, 0.15);
	border-radius: 10px;
    padding: 1.5rem;
   transition: all 0.3s ease;
}

.service-item:hover {
  border-color: rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
	
}

.service-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.service-item p {
                    font-size: 0.9rem;
    color: #a0a0a0;
 line-height: 1.5;
}

.workspace-showcase {
   max-width: 1200px;
   margin    :  4rem auto;
	padding: 0 2rem;
}

.workspace-showcase h2  
  {
   font-size: 2.2rem;
    text-align: center;
	margin-bottom: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip  :       text;
}

.workspace-images {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
       gap   :      1.5rem;
    margin-bottom: 2rem;
}

.workspace-images img {
    width: 100%;
   height: auto;
    border-radius: 10px;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
	 transition: all 0.3s ease;
}

.workspace-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}  

.workspace-text {
   color: #b0b0b0;
  line-height:   1.8;
   font-size: 1.05rem;
   padding: 0 2rem;
    text-align: center;
}

.cta-section {
      max-width: 1200px;
   margin    :      4rem auto;
	padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
  border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
  text-align    :       center;
     }

.cta-content h2 {
  font-size: 2rem;
	margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   background-clip  :       text;
}

.cta-content p {

  font-size: 1.1rem;
   color: #b0b0b0;
  margin-bottom: 2rem;
   line-height: 1.8;
}

.btn-cta {
          padding   :    1rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  text-decoration: none;
    border-radius   :8px;
  font-weight: 600;
  font-size: 1.05rem;
    transition   :  all 0.3s ease;
    display   :   inline-block;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}



.contact-section {
  max-width: 1200px;
    margin    :   4rem auto;
 padding: 0 2rem;
}

.contact-container {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border: 1px solid rgba(102, 126, 234, 0.2);
   border-radius: 15px;
        padding: 3rem;
} 

.contact-container h2 {
  font-size: 2rem;
    margin-bottom     :   2rem;
    text-align   :center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
}

.contact-form
{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
    max-width: 700px;
  margin: 0 auto;
}

.form-group {

   grid-column  :    1 / -1;


}

.form-group:nth-child(1),
.form-group:nth-child(2) {
         grid-column: span 1;
}

.form-group label {
	display: block;
  margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
  padding: 0.8rem;
  background: rgba(15, 21, 53, 0.8);
  border: 1px solid rgba(102, 126, 234, 0.3);
   border-radius: 6px;
  color: #e0e0e0;
    font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	   outline: none;
	    border-color  :       #667eea;
	  background: rgba(15, 21, 53, 0.95);
	  box-shadow: 0 0 10px rgba(102, 126, 234, 0.2);


}

.form-group option {
  color: #e0e0e0;
   background: #0a0e27;
}

.btn-submit {


  grid-column: 1 / -1;
	    padding: 1rem 2rem;
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		 color: white;
	      border: none;
	    border-radius: 6px;
	   font-weight: 600;
	    font-size: 1rem;
	    cursor: pointer;
	    transition    :     all 0.3s ease;

}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.footer {
  background: linear-gradient(135deg, #0f1535 0%, #1a1f4d 100%);
  border-top: 1px solid rgba(102, 126, 234, 0.2);
    margin-top: 5rem;
    padding: 3rem 0 1rem;
}

.footer-content		{
      max-width     :  1200px;
  margin     :  0 auto;
  padding: 0 2rem;

}

.footer-logo-section {
  display: flex;
   justify-content: center;
   margin-bottom     :        2rem;
}


.footer-logo     {
    height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
    display: grid;
     grid-template-columns: repeat(3, 1fr);
       gap: 2rem;
      margin-bottom: 2rem;
}

.footer-column h4 {
  color: #ffffff;
    margin-bottom: 1rem;
	font-size: 1.05rem;
}

.footer-address {
  color: #a0a0a0;
        line-height: 1.8;
	margin-bottom: 1rem;
}

.footer-phone
{
		color: #a0a0a0;
  margin-bottom: 1rem;
}

.footer-phone strong {
   color: #667eea;
}

.footer-links {
                    list-style: none;

}

.footer-links li 
 {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #a0a0a0;
  text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
   color: #667eea;
}

.footer-column p{
    color: #a0a0a0;
    line-height: 1.6;
   font-size: 0.95rem;
}

.footer-bottom {
	text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(102, 126, 234, 0.1);
	 color: #707070;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .burger-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #0f1535 0%, #1a1f4d 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        border-bottom: 1px solid rgba(102, 126, 234, 0.2);
    }

    .nav-links.active {
        max-height: 300px;
        padding: 1rem 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .showcase-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .workspace-images {
        grid-template-columns: 1fr;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .services-row {
        grid-template-columns: 1fr;
    }

    .services-preview h2 {
        font-size: 1.8rem;
    }

    .showcase-text h2 {
        font-size: 1.5rem;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }
}.services-hero {
  max-width: 1200px;
    margin  :       0 auto;
          padding: 4rem 2rem;
 text-align  :        center;
}

.hero-services-content h1 {
  font-size: 2.8rem;
   font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
   background-clip: text;
  margin-bottom: 1rem;
}

.hero-services-content p


{
      font-size: 1.2rem;
  color: #b0b0b0;
   line-height: 1.8;


}

.services-container {
  max-width:  1200px;
                  margin :  0 auto;
       padding : 0 2rem;
     margin-bottom: 4rem;
}

.service-full {
   margin-bottom: 3rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border: 1px solid rgba(102, 126, 234, 0.15);
       border-radius:       12px;
  overflow    :hidden;
   transition: all 0.3s ease;
}

.service-full:hover {
  border-color: rgba(102, 126, 234, 0.3); 
	  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.service-header {
    padding     :      1.5rem 2rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-bottom: 1px solid rgba(102, 126, 234, 0.15);
	 display: flex;
   justify-content: space-between;
       align-items: center;
}

.service-header h2 {
   font-size: 1.8rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       background-clip: text;
  margin: 0;
}



.service-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
     padding    :0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.service-body {
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap:    2rem;
    padding: 2rem;
   align-items: center;
	
}

.service-body-reverse {
        direction: rtl;
	
}

.service-body-reverse > * {
		direction: ltr;
     }

.service-image    {
     flex-shrink:0;}

.service-image img {
   width: 100%;
    height     :   auto;
	border-radius: 10px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.service-details h3	{
	 margin-bottom: 0.8rem;
    color  :    #ffffff;
   margin-top: 1.5rem;
   font-size: 1.2rem;
}

.service-intro {
  color: #b0b0b0;
    font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-list,
.service-benefits {
  list-style: none;
   padding: 0;
    margin: 0;
}

.service-list li,
.service-benefits li  {
	 color: #a0a0a0;
    padding: 0.5rem 0 0.5rem 1.5rem;
  position :      relative;
		line-height: 1.6;
} 

.service-list li::before,
.service-benefits li::before {
  content: '•';
   position: absolute;
          left: 0;
 color: #667eea;
    font-weight: bold;
}

.service-pricing {
   margin-top   :     1.5rem;
 padding: 1rem;
  background: rgba(102, 126, 234, 0.1);
    border-left: 3px solid #667eea;
   border-radius: 6px;
}

.price {
    color: #667eea;
  font-weight: 700;
	margin: 0 0 0.5rem 0;
 font-size    :       1.5rem;
}

.period {
               font-size: 0.9rem;
        color: #a0a0a0;
    font-weight: normal;
}

.package-info {
	    margin     :     0;

	    color: #a0a0a0;

	   font-size: 0.9rem;
}

.btn-service-cta {
    display     :      inline-block;
    margin-top: 1.5rem;
   padding :   0.9rem 1.8rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               color: white;
   text-decoration: none;
	border-radius   :6px;
         font-weight: 600;
    transition: all 0.3s ease;
   border   :  none;
   cursor: pointer;
}

.btn-service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.comparison-table  
  {


    padding: 0 2rem;
   max-width: 1200px;
  margin: 4rem auto;


}

.comparison-table h2 {
		 font-size: 2.2rem;
  text-align: center;
    margin-bottom: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
}

.table-wrapper {
  overflow-x: auto;
   border-radius  :      10px;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.services-table {
  width: 100%;
   border-collapse: collapse;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.services-table thead {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
}

.services-table th {

	  padding: 1rem;
    text-align: left;
   color: #ffffff;
   font-weight: 600;
  border-bottom: 2px solid rgba(102, 126, 234, 0.2);
     }

.services-table td
{
  padding: 1rem;
    color: #b0b0b0;
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.services-table tbody tr:hover {

  background: rgba(102, 126, 234, 0.1);
	}

.services-table .check {

    font-size: 1.2rem;
         font-weight: bold;
   color  :#2ecc71;

}

.services-table .cross		{
  color   :    #e74c3c;
       font-weight: bold;
 font-size: 1.2rem;
}

.contact-section {
    max-width: 1200px;
    margin :      4rem auto;
   padding: 0 2rem;
}

.contact-container {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 15px;
   padding: 3rem;
   text-align: center;
}

.contact-container h2 {

  font-size     :       2rem;
   margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        background-clip: text;



}

.contact-container > p {
	color :  #b0b0b0;
    margin-bottom: 2rem;
   font-size: 1.05rem; 
	
     }

.contact-info-grid {
  margin-top   :    2rem;
	display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
	
}

.contact-info-item {
  background: rgba(15, 21, 53, 0.8);
  border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius   : 10px;
    padding: 1.5rem;
}

.contact-info-item h3 {
    color: #667eea; 
	  font-size: 1.1rem; 
	   margin-bottom: 0.8rem;
}

.contact-info-item p {
            margin: 0;
	color: #a0a0a0;
    line-height: 1.6;

	}

.thankyou-container {
               max-width: 800px;
 margin: 4rem auto;
	padding: 0 2rem;
  min-height: 60vh;
    display: flex;
  align-items: center;
}

.thankyou-content {
    width: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border: 1px solid rgba(102, 126, 234, 0.2);
   border-radius: 15px;
    padding: 3rem;
    text-align: center;
}  

.thankyou-icon {
  width: 80px;
    height: 80px;
  margin: 0 auto 1.5rem;
   display :flex;
	align-items: center;
   justify-content    : center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
}

.thankyou-icon img {
    width: 40px;
   height: 40px;
  filter: brightness(0) invert(1);
}

.thankyou-title {
  font-size     :  2.2rem;
   font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
    margin-bottom: 0.5rem;
}



.thankyou-subtitle	{
    font-size: 1.1rem;
  color: #b0b0b0;
          margin-bottom: 2rem;
}

.thankyou-message

{
	    margin: 2rem 0;
 text-align: left;}

.thankyou-message h2 {
    font-size: 1.5rem;
	 color: #ffffff;
	margin-bottom   :    1.5rem;
    text-align: center;
}

.thankyou-steps {
  list-style : none;
  padding: 0;
  margin    :  0;
}

.thankyou-steps li {
    display: flex;
   gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;

}

.step-number {
	width: 40px;
	height: 40px;
	display: flex;
   align-items: center;
   justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
	border-radius: 50%;
   font-weight    :    bold;
  flex-shrink: 0;
}

.step-content h3 {


   color: #ffffff;
  margin: 0 0 0.3rem 0;
    font-size: 1rem;}

.step-content p {
    color: #a0a0a0;
	 margin  :  0;
   font-size: 0.95rem;
}

.thankyou-info {
   margin: 2rem 0;
	text-align :     left;
}

.thankyou-info h2 {
   font-size  :  1.5rem;
   color: #ffffff;
   margin-bottom: 1.5rem;
  text-align: center;


}

.faq-items 
 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
	 gap: 1rem;
}

.faq-item {
  background: rgba(15, 21, 53, 0.8);
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: 8px;
   padding: 1rem;
  text-align: left;
}

.faq-item h3 {
  color: #667eea;
	 font-size: 0.95rem;
   margin   :   0 0 0.5rem 0;
}

.faq-item p {
    color: #a0a0a0;
   margin     :      0;
  font-size: 0.9rem;
	 line-height: 1.5;}

.thankyou-actions {
	  display  :       flex;
   gap: 1rem;
   justify-content: center;
   margin: 2rem 0;
	}

.thankyou-actions a {
       padding: 0.9rem 1.8rem;
    border-radius: 6px;
	font-weight: 600;
    text-decoration: none;
   transition: all 0.3s ease;
     }

.contact-reminder {
   margin-top     :  2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(102, 126, 234, 0.2);
  text-align: center;
}

.contact-reminder h3 {
       color: #ffffff;

   margin-bottom: 0.8rem; 
}

.contact-reminder p {
   color: #a0a0a0;
       margin  :0.4rem 0;
} 

.contact-reminder strong {
	color   :  #667eea;
}@media (max-width: 768px) {
    .services-hero {
        padding: 2rem 1rem;
    }

    .hero-services-content h1 {
        font-size: 2rem;
    }

    .hero-services-content p {
        font-size: 1rem;
    }

    .service-header {
        flex-direction: column;
        gap: 1rem;
        text-align: left;
    }

    .service-header h2 {
        font-size: 1.4rem;
    }

    .service-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .service-body-reverse {
        direction: ltr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-items {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-actions a {
        width: 100%;
        text-align: center;
    }

    .services-table {
        font-size: 0.9rem;
    }

    .services-table th,
    .services-table td {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 0 1rem;
    }

    .service-header {
        padding: 1rem;
    }

    .service-header h2 {
        font-size: 1.2rem;
    }

    .service-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }

    .service-body {
        padding: 1rem;
    }

    .thankyou-content {
        padding: 1.5rem;
    }

    .thankyou-title {
        font-size: 1.8rem;
    }

    .contact-reminder {
        font-size: 0.9rem;
    }

    .comparison-table h2 {
        font-size: 1.5rem;
    }

    .services-table {
        font-size: 0.8rem;
    }
}.policy-section {
          min-height: 80vh;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(15, 21, 53, 0.5) 0%, rgba(26, 31, 77, 0.5) 100%);
}

.policy-container {
                    max-width: 900px;
 margin: 0 auto;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 12px;
   padding: 3rem;
}

.policy-title {
  font-size     :       2.5rem;
   font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    margin-bottom  :  2rem;
   text-align: center;}

.policy-container h2 
 {
	font-size: 1.5rem;
  color: #ffffff;
  margin-top: 2rem;
    margin-bottom: 1rem;
  font-weight :       700;
}

.policy-container h2:first-of-type
	{
        margin-top: 0;
}

.policy-container p {
  color: #b0b0b0;
    margin-bottom: 1.2rem;
  line-height: 1.8;
	 font-size: 1rem;
    text-align: justify;
}

.policy-container strong {


    color: #667eea;
    font-weight: 600;
	}

.policy-container a {
	color    :  #667eea;
    text-decoration   :none;
                    transition: color 0.3s ease;
   border-bottom: 1px solid transparent;
}

.policy-container a:hover {
   color: #764ba2;
    border-bottom: 1px solid #764ba2;
}

.policy-container p:first-child {
    font-size: 1.05rem;
   color: #c0c0c0;
}@media (max-width: 1024px) {
    .policy-container {
        padding: 2.5rem;
    }

    .policy-title {
        font-size: 2.2rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
    }

    .policy-container p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .policy-container {
        padding: 2rem;
        border-radius: 8px;
    }

    .policy-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        text-align: left;
        line-height: 1.7;
    }

    .footer {
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 1.5rem 1rem;
    }

    .policy-container {
        padding: 1.5rem;
        border-radius: 6px;
    }

    .policy-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .policy-container p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.6;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-img {
        height: 35px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.policy-container {
	animation: fadeInUp 0.6s ease-out;
}

.policy-section::-webkit-scrollbar {
   width: 8px;
}

.policy-section::-webkit-scrollbar-track {
     background: rgba(102, 126, 234, 0.05);

}

.policy-section::-webkit-scrollbar-thumb    {
  background: linear-gradient(180deg, #667eea, #764ba2);
   border-radius: 4px;
     }

.policy-section::-webkit-scrollbar-thumb:hover {
	  background: linear-gradient(180deg, #764ba2, #667eea);



}