* {

   margin: 0;
  box-sizing: border-box;
        padding: 0;


}

html {
    scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height  :    1.6;
   color: #2c3e50;
  background-color: #fafbfc;
} 

.navigation-bar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {


   max-width: 1200px;
   margin     :    0 auto;
   display: flex;
   justify-content: space-between;
    align-items: center;

}

.nav-logo img {
    height: 40px;
  filter: brightness(0) invert(1);
}



.nav-menu {
    display: flex;
   list-style  :       none;
   gap: 2rem;
}

.nav-link {
    text-decoration: none;
  color: white;
    transition: opacity 0.3s ease;
  font-weight  : 500; 
	
}

.nav-link:hover


{

		opacity: 0.8;
	}

.burger-toggle {


   display: none;
   background: none;
   border: none;
   cursor: pointer;}

.burger-toggle img {
    width:       28px;

   height   :       28px;

  filter: brightness(0) invert(1);
	
}

.hero-section {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color    :      white;
        padding: 80px 2rem;
    display: flex;
  justify-content: center;
    align-items: center;
	 min-height: 600px;
    position   :      relative;
   overflow  :  hidden;


}

.hero-accent {
  position: absolute;
  width: 400px;
               height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
   top: -100px;
	right: -100px;
	animation: float 6s ease-in-out infinite; 
	
}@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}.hero-content {
  max-width: 800px;
  text-align: center;
    position: relative;
	 z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
    margin-bottom: 1rem;
       font-weight    :    700;
}

.hero-content p {
	    font-size: 1.3rem;
      margin-bottom: 2rem;
    opacity: 0.95;}

.cta-button {
   -moz-border-radius: 50px;
         display: inline-block;
  -webkit-border-radius: 50px;
    background: white;
     color: #667eea;
        -webkit-transition: all 0.3s ease;
   padding: 15px 40px;
  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;
}

.services-preview

{
    margin :    80px auto;
  max-width :   1200px;
    padding: 0 2rem;
}

.section-header {
 text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {

	   font-size    : 2.5rem;
       margin-bottom: 1rem;
  color: #2c3e50;
	}

.section-header p  
  {


  font-size: 1.1rem;
  color: #7f8c8d;
	}

.services-grid {
          display:     grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.service-card {
 background: white; 
    border-radius: 12px; 
          overflow: hidden; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
	 transition: all 0.3s ease; 
   border-left  :      4px solid #667eea;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.service-image    {
   width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
   height: 100%;
  object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);


}

.service-card h3 {
      padding  :    1.5rem 1.5rem 0.5rem; 
   color   :       #2c3e50; 
   font-size: 1.3rem;
	}

.service-card p {
   padding: 0 1.5rem 1.5rem;
   color: #7f8c8d;
   font-size     :    0.95rem;
}

.why-choose-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  padding: 80px 2rem;
	margin-top :      60px;
}

.why-content {
    max-width   :       1200px; 
    margin: 0 auto;
}

.why-content h2 {
   font-size: 2.5rem;
      margin-bottom: 3rem;
       text-align: center;
       color: #2c3e50;
}

.benefits-list {
   display : grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   		 gap :     2rem;
}

.benefit-item {
    background: white;
       padding  :2rem;
   border-radius  :     12px;
	text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-icon


{
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
   display    :    flex;
  justify-content: center;
   align-items: center;
}

.benefit-icon img  {
  width: 100%;
     height: 100%;
    stroke     :  #667eea;
}

.benefit-item h4 {
    font-size: 1.3rem; 
  color: #2c3e50; 
   margin-bottom: 0.5rem;
}

.benefit-item p {

	    color: #7f8c8d;
  font-size: 0.95rem;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 2rem;
    text-align: center;
   color: white;
}  

.cta-content h2 {
	 font-size: 2.5rem;
    margin-bottom: 1rem; 
	
}

.cta-content p {
  font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;}


.cta-button-primary  {
  display: inline-block;
  background: white;
  color  :    #667eea;
	padding: 15px 40px;
    border-radius: 50px;
   text-decoration   :      none;
   font-weight: 600;
   transition: all 0.3s ease;
}

.cta-button-primary:hover {
   background: #f0f0f0;
  transform: scale(1.05);
}

.contact-section {
   margin: 80px auto;
      padding: 0 2rem;
   max-width: 900px;


}

.contact-container {
    background: white;
  padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-container h2  {
   margin-bottom: 0.5rem;
   text-align  :center;
    color: #2c3e50;
   font-size: 2rem;
}

.contact-container > p {
   text-align: center;
    color: #7f8c8d;
    margin-bottom   :     2rem;
}

.contact-form {
   display: flex;
	  flex-direction: column;
}

.form-group {
       margin-bottom: 1.5rem;
   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: 12px 15px;
  border: 2px solid #e0e0e0;
    border-radius: 8px;
  font-family: inherit;
   font-size: 1rem;
   transition: all 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

{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
      padding: 14px 30px;
   border: none;
  border-radius: 50px;
    font-weight: 600;
   font-size: 1rem;
	cursor: pointer;
   transition: all 0.3s ease;
    align-self: center;
    width: 100%;
     max-width     :  300px;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.footer


{
       background   :     #2c3e50;
   color: white;
    padding: 60px 2rem 20px;
  margin-top: 80px;
}

.footer-container {
   max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    text-align    :    center;
  margin-bottom: 2rem;
	
}

.footer-logo-img {
    height: 50px;
  filter: brightness(0) invert(1);


}


.footer-sections {
	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap:     2rem;
   margin-bottom: 2rem;
	}

.footer-col h4

{
    color: white;
   font-size: 1.1rem;
   margin-bottom    :      1rem;
}

.footer-col ul {
	 list-style: none;
}

.footer-col li  
  {
  margin-bottom: 0.5rem;
}

.footer-col a    {
  color: #bdc3c7;
  text-decoration: none;
   transition: color 0.3s ease;
}



.footer-col a:hover {
  color: white;
}

.footer-col p {
     color: #bdc3c7;
   font-size: 0.95rem;
  line-height: 1.8;
}

.footer-bottom {


    text-align: center;
  padding-top    :     2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #95a5a6;


     }@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #667eea;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        list-style: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .burger-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-section {
        padding: 60px 2rem;
        min-height: 400px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-content h2 {
        font-size: 2rem;
    }

    .cta-section {
        padding: 60px 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .contact-container {
        padding: 2rem;
    }

    .footer-sections {
        grid-template-columns: 1fr;
    }
}.services-header {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
   color   :    white;
   padding: 100px 2rem;
    text-align: center;
   position:      relative;
  overflow: hidden;
  min-height: 400px;
}

.services-header-content     {
  max-width: 900px;
   margin: 0 auto;
    position: relative;
	 z-index: 2;
}

.services-header h1   {

	    font-size  :  3rem;
    margin-bottom: 1rem;
  font-weight: 700;
	}

.services-header p {
   font-size: 1.2rem;
	opacity: 0.95;
}

.header-accent-shape {
  position: absolute;
	 width: 500px;
   height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius  :       50%;
	bottom :  -150px;
       right: -100px;
   animation: float 8s ease-in-out infinite;
}

.all-services {
	   max-width    :1200px;
  margin: 80px auto;
  padding: 0 2rem;

}

.services-container 
 {
    display: flex;
  flex-direction :     column;
               gap: 80px;
}

.service-detailed {
       display: grid;
		grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: center;


}

.service-detailed.alt-layout {
   grid-template-columns: 1fr 1fr;
}

.service-detailed.alt-layout .service-detail-image {
	   order    :     2;}

.service-detailed.alt-layout .service-detail-content		{
	   order: 1;
}

.service-detail-image {
  width: 100%;
    height :        350px;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-detail-image img {
    width: 100%;
  height    :    100%;
    object-fit: cover;
  transition: transform 0.5s ease;
}

.service-detailed:hover .service-detail-image img {
  transform: scale(1.05);
}

.service-detail-content h2 {
	 font-size: 2.2rem;
  color: #2c3e50;
    margin-bottom: 1rem;
}  

.service-detail-content p {
  font-size: 1.05rem;
  color: #7f8c8d;
  margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features {


   display: grid;
  grid-template-columns :   1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;}

.feature {
    display: flex;
     align-items    :   flex-start;
   gap: 1rem;
}


.feature-icon {
    width  :    32px;
    height: 32px;
  flex-shrink     : 0;
   display: flex;
  align-items: center;
	justify-content :   center;
}

.feature-icon img {

	  stroke    :   #667eea;
    height: 100%;
    width: 100%;

	}

.feature p {
    color: #2c3e50;
       font-weight: 500;
}

.service-price    {
   border-left: 4px solid #667eea;
   background     :        #f5f7fa;
  padding: 1.5rem;
   font-weight: 700;
    border-radius: 4px;
    font-size: 1.3rem;
    color: #667eea;
}

.service-comparison {


   background: #f5f7fa;
   padding: 80px 2rem;
    margin-top: 80px;


}

.comparison-container {
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-container h2 {
   font-size: 2.5rem;
    text-align: center;
   margin-bottom: 3rem;
    color   :     #2c3e50;
}

.comparison-table {
         background: white;
   border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.table-header {
   display: grid;
     grid-template-columns: repeat(4, 1fr);
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
      font-weight: 700;
      gap: 0;
}

.table-header .table-cell {
	padding     :     1.5rem;
	text-align: center;
}

.table-row {
  display :     grid;
  grid-template-columns: repeat(4, 1fr);
   gap: 0;
   border-bottom: 1px solid #e0e0e0;
  transition    :  background 0.3s ease;
}

.table-row:hover {
    background :      #f9f9f9;
}

.table-row:last-child {
    border-bottom    :        none;
}

.table-row .table-cell  
  {
	   padding: 1.5rem;
    text-align: center;
	color: #2c3e50;
	}

.table-cell {
	 display: flex;
    align-items: center;
   justify-content     :     center;
}

.cta-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding :        80px 2rem;
   text-align: center;


}

.cta-services h2 {
  font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services p {
  font-size: 1.2rem;
    margin-bottom: 2rem;
     opacity: 0.95;
}

.cta-button-services {
	display: inline-block;
   background: white;
  color: #667eea;
  padding: 15px 40px;
	border-radius: 50px;
  text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;
  border: 2px solid white;
}

.cta-button-services:hover {
	background: transparent;
  color: white;
}

.thankyou-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
   min-height: 100vh;
  display: flex;
    align-items: center;
    justify-content: center;
	padding: 60px 2rem;
 position: relative;
   overflow:    hidden;
}

.decoration-shape {
     position: absolute;
	width: 400px;
	height: 400px;
  background: rgba(102, 126, 234, 0.05);
  border-radius:     50%;
    top: -50px;
    right: -50px;
  animation: float 10s ease-in-out infinite;
     }

.thankyou-container {
    background  :   white;
  padding: 60px;
    border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   max-width: 700px;
    z-index: 2;
  text-align: center;
}


.success-icon {
    width: 80px;
  height    :80px;
  margin :        0 auto 2rem;
  display: flex;
    align-items:        center;
   justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
    animation: scaleIn 0.6s ease;
}


.success-icon img
	{
  width :        45px;

	   height: 45px;

	    stroke     :   white;

	  filter: brightness(0) invert(1);
}@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}.thankyou-container h1 {
	   font-size: 2.5rem;
       color: #2c3e50;
	 margin-bottom: 1rem;}

.success-message {
	 font-weight: 600;
	    margin-bottom: 2rem;
	  color: #667eea;
		font-size: 1.3rem;
	}

.confirmation-details {
    background: #f5f7fa;

	   padding: 2rem;

	   border-radius: 12px;

	   margin-bottom: 2rem;
}

.confirmation-details p {
   color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.confirmation-details p:last-child {
   margin-bottom: 0;
}

.next-steps {
  margin     :   3rem 0; 

}

.next-steps h3 {
	font-size: 1.5rem;
      color: #2c3e50;
      margin-bottom: 2rem;
}

.steps-list   {
    display: flex;
   justify-content: space-around;
    gap: 2rem;
     margin-bottom: 2rem;
}

.step {
  flex: 1;
   text-align: center;
}

.step-number {
  display: inline-block;
  width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  border-radius: 50%;
  line-height: 50px;
   font-weight:      700;
   font-size: 1.3rem;
    margin-bottom: 1rem;


}

.step p {
     color: #2c3e50;
         font-size: 0.95rem;
}

.return-actions {
   display :      flex;
	gap: 1.5rem;
    justify-content: center;
      margin-top: 2rem;
}

.button-primary {
   display :   inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 14px 30px;
   border-radius: 50px;
  text-decoration: none;
   font-weight: 600;
  transition: all 0.3s ease;
     }

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.button-secondary {
   text-decoration: none; 
   color: #667eea; 
	transition: all 0.3s ease; 
  padding: 14px 30px; 
  border   :   2px solid #667eea; 
	 background: white; 
    font-weight: 600; 
   display: inline-block; 
	border-radius: 50px;
}

.button-secondary:hover {
    background: #f5f7fa;
  transform: translateY(-2px);
	}  @media (max-width: 768px) {
    .services-header {
        padding: 60px 2rem;
        min-height: 300px;
    }

    .services-header h1 {
        font-size: 2rem;
    }

    .services-header p {
        font-size: 1rem;
    }

    .service-detailed {
        grid-template-columns: 1fr;
    }

    .service-detailed.alt-layout .service-detail-image {
        order: 1;
    }

    .service-detailed.alt-layout .service-detail-content {
        order: 2;
    }

    .service-detail-image {
        height: 250px;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .table-header,
    .table-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .thankyou-container {
        padding: 40px 2rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .steps-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .return-actions {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }

    .comparison-container h2 {
        font-size: 2rem;
    }

    .cta-services h2 {
        font-size: 2rem;
    }
}.policySection {
    padding: 80px 2rem;
 background: #f8f9fa;
}

.policyContainer {
  max-width: 900px;
   margin: 0 auto;
  text-align: left;
}

.policyContainer h1 {
   font-size: 2.8rem; 
	   color: #2c3e50; 
	               margin-bottom: 2rem; 
	    font-weight: 700; 
	   border-bottom: 3px solid #667eea; 
	   padding-bottom: 1rem;
}

.policyContainer h2 {
      font-size: 1.8rem;
   color     :      #2c3e50;
   margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;


}

.policyContainer h2:first-of-type		{
 margin-top: 0;
}

.policyContainer p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color : #555555;
  line-height: 1.8;
}


.policyContainer p strong {
  color : #2c3e50;
  font-weight: 600; 

}

.policyContainer p:last-child {
   margin-bottom: 0;
}@media (max-width: 1024px) {
    .policyContainer {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.6rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.6;
    }
}