*  
  {
    margin: 0;
   box-sizing: border-box;
  padding: 0;
}

html {
  scroll-behavior:     smooth;
}

body{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
	color: #2c3e50;
    background-color     :   #f8f9fa;
}

.nav-container {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0;
   position: sticky;
                    top    :        0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 

}

.nav-wrapper {
  display :  flex;
    justify-content: space-between;
   align-items   :   center;
  max-width: 1200px;
   margin: 0 auto;
  padding    :    1rem 2rem;
}

.nav-brand
{
   display: flex;
    align-items: center;
}

.logo-img    {
   max-height: 50px;
    width: auto; 

}

.nav-menu {
  display  :   flex;
   list-style: none;
					gap: 2rem;
}

.nav-menu a {
    color: white;
         text-decoration: none;
  font-size: 1rem;
   font-weight  :        500;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
  opacity: 0.8;


}

.burger-toggle
	{
   display: none;
    flex-direction: column;
  cursor: pointer;
                    gap: 6px;


}

.burger-line {
  width: 25px;
  height: 3px;
	 background: white;
	border-radius: 2px;
    transition:     all 0.3s ease;

}

.burger-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-toggle.active .burger-line:nth-child(2) {
    opacity:       0;
}

.burger-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
}@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.show {
        max-height: 300px;
    }

    .nav-menu li {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 6rem 2rem;
	 text-align: center;
  min-height: 500px;
   display: flex;
  align-items: center;
   justify-content: center;
}

.hero-content h1 {


   font-size: 3.5rem;
  line-height: 1.2;
   font-weight: 700;
   margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size  :       1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width   :  800px;
   margin-left: auto;
    margin-right: auto;
}

.cta-button     {
    display: inline-block;
     background: white;
   color: #667eea;
       padding: 1rem 2.5rem;
	border-radius  :   50px;
   text-decoration: none;
				 font-weight: 600;
    transition:      all 0.3s ease;
   border: 2px solid white;
}

.cta-button:hover


{
       background: transparent;

	  color: white;
     }@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-section {
        padding: 3rem 1rem;
    }
}.intro-section
	{
  padding: 4rem 2rem;
    background: white;
    text-align: center;
}

.intro-section h2 {
     font-size: 2.5rem;
  margin-bottom: 3rem;
  color  :       #2c3e50;

}  

.intro-grid {
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
    max-width: 1200px;
  margin: 0 auto;
}

.intro-card {
  padding: 2rem;
  background: #f8f9fa;
    border-radius: 12px;
  border-left: 4px solid #667eea;
   transition: transform 0.3s ease, box-shadow 0.3s ease; 

}

.intro-card:hover {

	  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);} 

.intro-card h3 {
  font-size: 1.4rem; 
	   margin-bottom: 1rem; 
	    color: #2c3e50;
}

.intro-card p {
    color: #555;
  line-height  :   1.7;
}

.services-preview {
   padding: 4rem 2rem; 
	  background: #f8f9fa;
}

.services-preview h2 {
   font-size: 2.5rem;
  text-align: center;
 margin-bottom: 3rem;
    color: #2c3e50;
}

.services-container
{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {

    background: white;
  border-radius  : 12px;
  overflow    :  hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
     }

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(102, 126, 234, 0.2);
}

.service-item img 
 {
    width: 100%;

	  height: 200px;

	  object-fit: cover;
}

.service-item h3 {
    font-size: 1.3rem;
       padding: 1.5rem 1.5rem 0.5rem;
     color: #2c3e50;
}

.service-item p {
	    padding: 0 1.5rem 1.5rem;
   color: #666;
	font-size: 0.95rem;
  line-height: 1.6;


}

.content-section {
   padding: 4rem 2rem;
    background:        white;
}



.content-section h2 {
    text-align: center;
    font-size: 2.5rem;
               color: #2c3e50;
    margin-bottom: 3rem; 

}

.content-grid {
	    display :       grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
               gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;
	
     }

.content-block{
  padding:    2rem;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
   border-radius: 12px;
  border  :    1px solid #e0e6ff;
}

.content-block h3 {
  font-size: 1.2rem;
    margin-bottom: 1rem;
	color: #667eea;
}

.content-block p {
    color: #555; 
   font-size: 0.95rem; 
   line-height:    1.7;
}  

.cta-campaign {
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color    : white;
   text-align: center;
}

.campaign-wrapper h2 {
  font-size: 2.5rem;
    margin-bottom: 1rem;
}

.campaign-wrapper p {
   opacity: 0.95;
	margin-bottom: 2rem;
       font-size: 1.1rem;
}

.cta-button-primary {
    display:      inline-block;
   background: white;
  color  :      #667eea;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.testimonials
{
   padding: 4rem 2rem;
    background: #f8f9fa;
}

.testimonials h2 {
  margin-bottom     :3rem;

          color: #2c3e50;

   text-align:center;

   font-size: 2.5rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   max-width  :     1200px;
  margin: 0 auto;
}

.testimonial-card {
    background: white;
	padding: 2rem;
   border-radius :      12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          border-top: 3px solid #667eea;
} 

.testimonial-card p
{
	 color   : #555;
   font-size   :      0.95rem;
   line-height: 1.8;
    margin-bottom: 1.5rem;
  font-style  :    italic;
}

.testimonial-author {
       display: block;
      color: #667eea;
     font-weight: 600;
}

.contact-section {
	 padding :    4rem 2rem;
	  background: white; 

}  

.contact-section h2 {
  font-size: 2.5rem;
   text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-wrapper {
   	display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
     } 

.contact-info {
   padding: 2rem;
    background: #f8f9fa;
  border-radius: 12px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom :   1.5rem;
    color: #667eea;
}

.contact-info p {
    margin-bottom: 1.5rem;
   color: #555;
	 line-height: 1.8;
}

.contact-form {
   display: flex;
	    flex-direction: column;
	          gap:     1.5rem;
}

.form-group {
  display  :  flex;
  flex-direction: column;
}

.form-group label {
      margin-bottom: 0.5rem;
   font-weight: 600;
	 color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
   padding: 0.75rem;
               border: 1px solid #ddd;
  -moz-border-radius: 8px;
  border-radius: 8px;
   font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline :     none;
   border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-button {
    padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   border: none;
   border-radius: 8px;
	font-size: 1rem;
   font-weight: 600;
  cursor     :        pointer;
                    transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
} @media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}.footer-section {
       padding :     3rem 2rem 1rem;
	 color: white;
    background: #2c3e50;

}

.footer-wrapper {
	max-width: 1200px;
   margin    :        0 auto; 

}

.footer-logo {
   text-align: center;
   margin-bottom: 2rem;
}

.footer-content {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
  margin-bottom     :        2rem;
}

.footer-column h4 {
   font-size: 1.1rem;
   margin-bottom    :   1rem;
  color: #667eea;
}

.footer-column ul {
         list-style: none;



}

.footer-column ul li {
   margin-bottom: 0.5rem;
}

.footer-column a {
   color: #ccc;
   text-decoration: none;
   transition: color 0.3s ease;


}

.footer-column a:hover {

	    color: #667eea;
	}

.footer-column p{
  color: #ccc;
    line-height: 1.7;
    font-size :       0.9rem;
}



.footer-bottom {
	text-align: center;
    padding-top    :   2rem;
     border-top: 1px solid #444;
	color    :   #999;
  font-size: 0.85rem;
}@media (max-width: 768px) {
    .intro-grid,
    .services-container,
    .content-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .intro-section h2,
    .services-preview h2,
    .content-section h2,
    .testimonials h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }
}.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;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding :     4rem 2rem;
  text-align: center;
  min-height: 300px;
         display: flex;
          flex-direction: column;
  align-items: center;
    justify-content: center;
}

.services-hero h1 {
	font-size: 3rem;
  margin-bottom: 1rem;
    font-weight: 700;
}

.services-hero p
	{
  font-size    : 1.2rem;
    opacity: 0.95;
}

.service-detail-section {
   padding: 4rem 2rem;
	background: white;
    margin :       2rem 0;
}

.service-detail-section.reverse {
	background: #f8f9fa;
}

.service-detail-card {
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items  :      center;
   max-width :        1200px;
  margin: 0 auto;}

.service-detail-card img  
  {
    width: 100%;
	height   :        auto;
    border-radius     :       12px;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
}

.service-detail-section.reverse .service-detail-card {
    direction: rtl;
}

.service-detail-section.reverse .service-detail-card > * {
	 direction: ltr;
	}

.service-content {
	padding:        2rem 0;
}

.service-content h2 {
   font-size: 2rem;
     margin-bottom: 1rem;
     color: #2c3e50;
}

.service-content > p {
    font-size: 1.05rem;

  color: #555;

    margin-bottom: 1.5rem;

     line-height: 1.8;

}

.service-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
   color: #667eea;
}

.service-list {
                    list-style: none;
   margin: 1rem 0;
}

.service-list li {
    padding: 0.5rem 0 0.5rem 2rem;
	color: #555;
   position :    relative;
    margin-bottom: 0.5rem;
}

.service-list li:before {
  content: "✓";
  position: absolute;
   left: 0;
    color: #667eea;
    font-weight: bold;
   font-size: 1.2rem;
}

.service-note {
   margin-top     :     1.5rem;
   padding: 1rem;
  background: rgba(102, 126, 234, 0.1);
   border-left : 3px solid #667eea;
 border-radius: 4px;
		font-size  :       0.95rem;
   color: #2c3e50;
}

.pricing-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.pricing-section h2 {
   font-size: 2.5rem; 
	text-align: center; 
    margin-bottom: 3rem; 
  color: #2c3e50;
}

.pricing-grid {
  display     :grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
   max-width: 1000px;
   margin: 0 auto;
}

.pricing-card {
	   background: white;
    padding: 2.5rem 2rem;
	border-radius: 12px;
    text-align : center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
  transition: all 0.3s ease;
	}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured  
  {
   border-color: #667eea;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
  transform: scale(1.05);
}

.pricing-card h3 {


  font-size: 1.5rem;
    margin-bottom    :1rem;
   color: #2c3e50;


}

.price 
 {
  font-size:        2.5rem;
    color: #667eea;
    font-weight    :        700;
  margin-bottom: 1.5rem;
}

.pricing-features {
               list-style: none;
   text-align  :    left;
  margin  :   1.5rem 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: #555;
  border-bottom: 1px solid #eee; 
	
}

.pricing-features li:last-child {
   border-bottom    :      none;
}

.comparison-section {
  padding:     4rem 2rem;
	background: white;
}

.comparison-section h2 {
                    font-size: 2.5rem;
                    text-align: center;
	margin-bottom     :  3rem;
  color: #2c3e50;
	
}

.comparison-table {
    max-width:  1200px;
    margin: 0 auto;
   border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comparison-row {
   display: grid;
  grid-template-columns: repeat(5, 1fr);
  background  :white;
               border-bottom: 1px solid #eee;
}

.comparison-row.header-row {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.comparison-row.header-row .comparison-cell {
    color: white;
   font-weight    :     700;
}

.comparison-cell {
	 padding    :   1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align :center;
   color: #555;
  font-size: 0.95rem;
}

.comparison-row:nth-child(even) {
  background: #f8f9fa;
}

.cta-final {
	padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    text-align: center;
}

.cta-final h2 {
   font-size: 2.5rem;
   margin-bottom: 1rem;
}

.cta-final p		{
   font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-secondary {
    transition: all 0.3s ease;
   font-weight: 600;
   margin: 0 1rem;
  background: white;
  color   :        #667eea;
  padding: 0.75rem 2rem;
  border-radius  :        50px;
  display: inline-block;
    text-decoration: none;
}

.cta-button-secondary:hover {


   background: transparent;
         color: white;
    border: 2px solid white;


}

.thankyou-container {
	min-height: 600px;
	 display: flex;
   align-items: center;
	justify-content: center;
    padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf5 100%);
}

.thankyou-card {
    background: white; 
	    padding: 3rem; 
	   border-radius  :        16px; 
	  box-shadow: 0 12px 48px rgba(102, 126, 234, 0.15); 
	       text-align: center; 
	    max-width: 600px;
}

.success-icon {
          margin-bottom: 2rem;
   display: flex;
	justify-content: center;


}

.success-icon svg {
  width:     80px;
    height: 80px; 

}

.thankyou-card h1 {
   font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 0.5rem;
}

.thankyou-subtitle {
    font-size: 1.2rem;

	   color     :    #667eea;

	  margin-bottom: 2rem;

	    font-weight: 600;
}

.thankyou-content


{
    text-align: left;
    margin: 2rem 0;
}

.thankyou-content p {
    color: #555;
   margin-bottom: 1.5rem;
  line-height: 1.8;
}

.info-box  
  {
   background: #f8f9fa;
   padding: 1.5rem;
   border-radius: 8px;
   margin: 2rem 0;
 border-left: 4px solid #667eea;
}

.info-box h3	{


   font-size  :   1.1rem;
	   color: #2c3e50;
		margin-bottom: 1rem;
	}

.info-list {
      list-style: none;
    margin: 0;
}

.info-list li {
   padding:    0.5rem 0 0.5rem 2rem;
    position: relative;
   color: #555;


}

.info-list li:before {
  content: "→";
    position: absolute;
       left: 0;
  color: #667eea;
          font-weight: bold;
}

.next-steps
{
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    padding: 1.5rem;
  border-radius: 8px;
    margin: 2rem 0;
}

.next-steps h3 {
    font-size: 1.1rem;
   color: #2c3e50;
    margin-bottom :        0.5rem;
}

.next-steps a {
   color: #667eea;
    font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #667eea;
   transition     :     all 0.3s ease;
}



.next-steps a:hover {
  color: #764ba2;
  border-bottom-color: #764ba2;
}

.action-buttons     {

	        display: flex;
	 gap: 1rem;
         justify-content: center;
   margin:      2rem 0;
     flex-wrap  :       wrap;


}

.btn-primary,
.btn-secondary {
  transition: all 0.3s ease;
   font-weight: 600;
    padding: 0.9rem 2rem;
  display: inline-block;
    border-radius :    50px;
   text-decoration: none;
}

.btn-primary{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover		{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}



.btn-secondary {
  background: white;
  border     :       2px solid #667eea;
	color: #667eea;
}

.btn-secondary:hover {
  background: #667eea;
   color: white;
     }

.contact-fallback		{
    margin-top: 2rem;
  color :  #999;
         font-size: 0.9rem;
}

@media (max-width: 768px) {
  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detail-section.reverse .service-detail-card {
    direction: ltr;
  }

  .services-hero h1 {
    font-size: 2rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-cell {
    padding: 1rem;
  }

  .thankyou-card {
    padding: 2rem;
  }

  .thankyou-card h1 {
    font-size: 1.8rem;
  }

  .action-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .cta-button-secondary {
    margin: 0.5rem;
  }
}