*    {
  margin: 0;
  padding    :   0;
    box-sizing: border-box;
}

body {

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

	   line-height: 1.6;

	     color    :      #2c3e50;

		background-color: #f8f9fa;

}

html {
    scroll-behavior: smooth;
}

.navigation {
    background-color:#ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          position: sticky;
    top: 0;
      z-index: 1000;
}

.nav-wrapper {
  max-width: 1200px;
	margin    :    0 auto;
    padding: 1rem 2rem;
  display: flex;
   justify-content :   space-between;
  align-items: center;
}

.logo-section {
    flex: 0 0 auto;
}  

.logo-img		{
    height: 45px;
	width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
    gap: 2.5rem;
  align-items   :       center;
}

.nav-link   {
   text-decoration: none;
   color: #2c3e50;
  font-weight   :       500;
  transition: color 0.3s ease;
	 font-size: 1rem;
}

.nav-link:hover {
      color: #3498db;
	}

.nav-toggle    {
  display: none;
   flex-direction  :        column;
   cursor     :    pointer;
    gap: 6px;
}

.hamburger-line
	{
   width: 25px;
	 height: 3px;
    background-color: #2c3e50;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hero-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	    color: white;

	    padding: 5rem 2rem;

	    display: grid;

	    grid-template-columns: 1fr 1fr;

	      gap: 3rem;

	  align-items  :     center;

	    max-width: 100%;

	  overflow: hidden;
}

.hero-content h1 {

	  font-size: 2.8rem;
   margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700; 
	
     }

.hero-subtitle {
  font-size :1.2rem;
         margin-bottom: 2rem;
    opacity  :        0.95;
    line-height: 1.5;
}

.cta-button {


  display    :   inline-block;
  background-color: #f39c12;
      color: white;
    padding   :   1rem 2.5rem;
    text-decoration    :   none;
                    border-radius: 5px;
  font-weight:  600;
    transition: all 0.3s ease;
      font-size: 1rem;
	}

.cta-button:hover {
  background-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-image {
    max-width: 100%;
   border-radius: 10px;
  overflow: hidden;
}

.hero-image img {
   width: 100%;
    height: auto;
  display     :   block;
}


.features-grid {
  padding :  4rem 2rem;
  background-color: white;
    max-width: 1200px;
  margin: 0 auto;
}

.features-grid h2 {
   margin-bottom: 3rem;
    font-size:2.2rem;
    font-weight: 700;
  color: #2c3e50;
  text-align  :       center;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
  background-color: #f8f9fa;
   padding: 2rem;
  border-radius :        8px;
    border-left: 4px solid #667eea;
  transition   :       all 0.3s ease;
}

.feature-card:hover {


  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
	}

.feature-card h3  
  {
	 margin-bottom: 1rem;

	  font-size: 1.4rem;

	   color: #764ba2;


}

.feature-card p {
    font-size: 0.95rem;
   line-height: 1.6;
   color: #555;
}

.services-preview {
    padding: 4rem 2rem;
      background-color: #f8f9fa;
      max-width: 1200px;
       margin: 0 auto;
}

.services-preview h2 {

  font-size: 2.2rem;
   margin-bottom: 3rem;
  text-align: center;
	 color : #2c3e50;
    font-weight: 700;
	}

.services-grid{

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
     }

.service-item {
  background-color    :     white;
                    border-radius: 10px;
    overflow: hidden;
   transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-item img
	{
	 width: 100%;
   height: 200px;
  object-fit: cover;
  display     :block;
}

.service-item h3 {
   font-size: 1.3rem;
  padding: 1.5rem 1.5rem 0.5rem;
    color: #764ba2;
}

.service-item p {
	padding: 0.5rem 1.5rem 1.5rem;
   font-size: 0.95rem;
    line-height: 1.6;
  color: #555;
}

.cta-section {
  background: linear-gradient(90deg, #1abc9c 0%, #16a085 100%);
   color: white;
  padding: 3.5rem 2rem;
    text-align: center;
    margin: 2rem 0;
}

.cta-content h2 {
    font-size: 2rem;
          margin-bottom :       1rem;
   font-weight: 700;
}

.cta-content p {
	font-size    :        1.1rem;
 margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-secondary {
   display: inline-block;
    background-color: #f39c12;
    color  :       white;
  padding    :       1rem 2.5rem;
  text-decoration: none;
	border-radius: 5px;
    font-weight: 600;
   transition     :     all 0.3s ease;
 font-size: 1rem;
}


.cta-button-secondary:hover {
  background-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-section
{


  padding: 4rem 2rem;
	background-color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
   text-align: center;
   color: #2c3e50;
    font-weight     :      700;
}

.contact-container {

  max-width: 600px;
   	margin: 0 auto;
	}

.contact-form {
  background-color: #f8f9fa;
	    padding: 2.5rem;
	   border-radius: 10px;
	   border  :1px solid #e0e0e0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
   display: block;
   margin-bottom    :  0.5rem;
  font-weight: 600;
  color : #2c3e50;
   font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
       padding: 0.8rem;
	border: 2px solid #e0e0e0;
    border-radius: 5px;
    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;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
     }

.form-group textarea {
   resize: vertical;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}  

.submit-button {
  width: 100%;
    padding    :  1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
         border: none;
  border-radius: 5px;
  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); 
	
}

.footer {
	 background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 2rem 1rem;
}

.footer-wrapper {

   max-width: 1200px;
  margin: 0 auto;
  display   :     grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
	}

.footer-logo {
   flex-shrink: 0;
	
}

.logo-footer {
    height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; 
	
}

.footer-block h4 {
  font-size :   1.1rem;
                    margin-bottom: 0.8rem;
  color: #f39c12;
    font-weight: 600;
} 

.footer-block p {
    font-size: 0.9rem;
  line-height: 1.8;
}

.footer-links     {
 list-style: none;
}

.footer-links li   {
   margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ecf0f1;
  text-decoration: none;
    font-size: 0.9rem;
   transition: color 0.3s ease;
}

.footer-links a:hover    {
    color: #f39c12;
}

.footer-bottom {
	  text-align: center;
   padding-top: 1.5rem;
    border-top: 1px solid #34495e;
               font-size: 0.9rem;
    color     :     #95a5a6;

}@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
    }

    .hero-banner {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }

    .cta-button,
    .cta-button-secondary {
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .features-grid h2,
    .services-preview h2,
    .contact-section h2 {
        font-size: 1.6rem;
    }

    .nav-wrapper {
        padding: 0.8rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
   color: white;
         padding: 4rem 2rem;
   text-align: center;
  margin-bottom: 2rem;
}

.services-hero-content h1  {
	  font-size: 2.5rem;
	 margin-bottom: 1rem;
    font-weight: 700;


}

.services-hero-content p {
  font-size: 1.2rem;
    opacity   :0.95; 
	
}

.services-detailed {
    max-width: 1200px;
        margin: 0 auto;
    padding  :       2rem;
}

.services-wrapper {
   display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.service-detail-card {
	   display: grid;
   	grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: center;
       background-color: white;
            padding  :   2rem;
     border-radius: 10px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
}

.service-detail-card:hover{
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-detail-card:nth-child(even) {
   grid-template-columns: 1fr 1fr;
  direction: rtl;
} 

.service-detail-card:nth-child(even) .service-description 
 {
    direction   :   ltr;
}



.service-image-wrapper {
    border-radius: 8px;
   overflow: hidden;
    height: 300px;
}

.service-image-wrapper img   {
   width: 100%;
  height: 100%;
    object-fit: cover;
  display: block;
}

.service-description h2{

	  font-size: 1.8rem;

	  color: #764ba2;

	    margin-bottom: 1rem;

	   font-weight    :      700;
	}

.service-intro {
   font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  color: #555;
}

.service-description h3


{
	   font-size: 1.2rem;
  font-weight: 600;
   color: #667eea;
   margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.service-features {
    list-style: none;
   margin-bottom     :       1.5rem;
}

.service-features li {

		 padding: 0.6rem 0;
  padding-left :  1.5rem;
   position    :relative;
    color: #555;
  font-size: 0.95rem;
}

.service-features li:before     {
  content: "▸";
    position: absolute;
    left: 0;
       color: #667eea;
	font-weight: bold;
}

.service-duration,
.service-investment {
    font-size: 0.95rem;
    color    :  #2c3e50;
   margin-top    : 1rem;
}

.comparison-section  
  {
	padding: 2rem;
  margin :        3rem auto;
 max-width: 1200px;
}

.comparison-section h2 {
 font-size: 2rem;
   text-align: center;
    margin-bottom: 2rem;
	color: #2c3e50;
    font-weight: 700;
}  

.comparison-table-wrapper {
    overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
   border-collapse: collapse;
    background-color: white;
}


.comparison-table thead

{
   background-color:  #667eea;
    color: white;


}

.comparison-table th {
		padding: 1.2rem;
    text-align: left;
   font-weight: 600;
  font-size: 0.95rem;}

.comparison-table td {


   font-size :     0.9rem;
     padding: 1rem 1.2rem;
  border-bottom: 1px solid #e0e0e0; 

	}

.comparison-table tbody tr:nth-child(even)  {
   background-color: #f8f9fa;
}

.comparison-table tbody tr:hover {
  background-color: #f0f2f7; 
	
}

.packages-section {
  max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
}

.packages-section h2 {
	 font-size: 2rem;
  text-align: center;
        margin-bottom: 2.5rem;
   color: #2c3e50;
	font-weight: 700; 
	
}

.packages-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.package-card {
  background-color: white;
   border: 2px solid #e0e0e0;
  border-radius: 10px;
	 -webkit-border-radius: 10px;
	 padding: 2rem;
   text-align: center;
    transition  :     all 0.3s ease;
   position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.package-popular {
  border-color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: white;
  transform: scale(1.05); 
	
}

.package-popular h3,
.package-popular .package-price {
    color: white;
}

.badge {
   display: inline-block;
  background-color: #f39c12;
    color: white;
  padding: 0.4rem 0.8rem;
  border-radius:   20px;
    font-size:  0.8rem;
   font-weight  : 600;
  margin-bottom: 1rem; 
	
}

.package-card h3


{
  font-size: 1.5rem;
    color: #764ba2;
	margin-bottom: 0.8rem;
	font-weight     :      700;
}

.package-price {
     font-size: 2rem;
   font-weight: 700;
   color: #667eea;
    margin-bottom: 1.5rem;

}

.package-popular .package-price {
   color: #f39c12;
}

.package-features {
 list-style :       none;
    text-align: left;
    margin :     1.5rem 0;
}

.package-features li {
  padding: 0.6rem 0;
   border-bottom    :    1px solid #e0e0e0;
    font-size    : 0.9rem;
        color: #555;
}

.package-popular .package-features li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
	    color: white;
}

.package-features li:last-child {

	  border-bottom: none; 



}

.thankyou-section {
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
   color: white;
   padding: 4rem 2rem;
    min-height: 60vh;
   display :        flex;
  align-items    :        center;
    justify-content: center;
}

.thankyou-container {
	text-align   :     center;

    max-width: 600px;

    animation: fadeInScale 0.6s ease;
}@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}.success-icon {
  font-size   :     4rem;
  margin-bottom:      2rem;


}

.success-icon img {
                    width: 80px;
    height: 80px;
  filter: brightness(0) invert(1);
}

.thankyou-section h1 {

	   margin-bottom: 0.5rem;
   font-weight    : 700;
  font-size: 2.5rem;
}

.thankyou-main-text {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.thankyou-details {
  background-color: rgba(255, 255, 255, 0.1);
   padding: 2rem;
  border-radius    :   8px;
  margin-bottom: 2rem;
                    line-height     :    1.8;
}

.thankyou-details p {
   margin-bottom: 1rem;
   font-size: 1rem;
}

.contact-phone {
	    font-size :1.3rem;
  margin-top: 1.5rem;
  color: #f39c12;

}

.thankyou-actions {
   margin-bottom: 2rem;
	 justify-content: center;
   gap: 1rem;
   display: flex;
  flex-wrap: wrap;
}

.thankyou-button,
.thankyou-button-secondary {
	display: inline-block;
  padding: 1rem 2rem;
   text-decoration: none;
   border-radius  :    5px;
  font-weight  :    600;
  transition: all 0.3s ease;
               font-size   :   0.95rem;
}

.thankyou-button {

	  background-color   :    #f39c12;
   color: white;}

.thankyou-button:hover {
  background-color  :     #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.thankyou-button-secondary {
   background-color: transparent;
  color: white;
   border: 2px solid white;
}

.thankyou-button-secondary:hover {
  -moz-transform: translateY(-2px);
   background-color: white;
  -webkit-transform: translateY(-2px);
  color: #1abc9c;
  transform: translateY(-2px);
}

.thankyou-footer-text {
          font-size: 1rem;
    opacity: 0.9;
	}

.next-steps {
 max-width: 1200px;
    margin: 3rem auto;
    padding: 3rem 2rem;
}

.next-steps h2 {
    font-size: 2rem;
	    text-align: center;
	  margin-bottom: 2.5rem;
	  color: #2c3e50;
	    font-weight: 700;
}

.steps-container {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 2rem;
}

.step-item
	{
	  text-align: center; 
  padding: 1.5rem; 
  background-color: white; 
   border-radius: 8px; 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);}

.step-number {
         width: 50px;
       height:  50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         color: white;
    border-radius :        50%;
   display: flex;
    align-items: center;
         justify-content: center;
    font-size   :   1.5rem;
    font-weight: 700;
   margin: 0 auto 1rem;
}

.step-item h3 {
   font-size: 1.2rem;
  color: #764ba2;
  margin-bottom: 0.8rem;
        font-weight: 600;
}

.step-item p {
  font-size: 0.9rem;
   color: #555;
  line-height: 1.5;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-detail-card,
    .service-detail-card:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 1.5rem;
    }

    .service-detail-card:nth-child(even) .service-description {
        direction: ltr;
    }

    .service-image-wrapper {
        height: 250px;
    }

    .service-description h2 {
        font-size: 1.4rem;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-popular {
        transform: scale(1);
    }

    .thankyou-section {
        min-height: auto;
        padding: 2rem;
    }

    .success-icon img {
        width: 60px;
        height: 60px;
    }

    .thankyou-section h1 {
        font-size: 1.8rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-button,
    .thankyou-button-secondary {
        width: 100%;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-description h2 {
        font-size: 1.2rem;
    }

    .thankyou-container {
        padding: 0 1rem;
    }

    .thankyou-section h1 {
        font-size: 1.5rem;
    }

    .thankyou-main-text {
        font-size: 1rem;
    }

    .thankyou-details {
        padding: 1.5rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.7rem;
    }
}.policy-section {
    padding: 80px 2rem;
    background-color: #f8f9fa;
   min-height: 70vh;
}

.policy-container {
	   max-width: 850px;
  margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius:   10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {
	font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #667eea;
       padding-bottom   :        1rem;
}

.policy-container h2

{
  font-size   :    1.6rem;
    margin-bottom:        1rem;
    margin-top: 2rem;
   font-weight: 700;
       color: #764ba2;
}

.policy-container p  {
  color     :  #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1rem;
}

.policy-container strong {
  color: #2c3e50;
	 font-weight: 600;
}

.policy-container > p:first-of-type {
    font-size  :     1.05rem;
    color: #667eea;
    font-weight: 500;
   margin-bottom: 2rem; 
	


}

.policy-container ul {
	   list-style:  none;
    margin: 1.5rem 0;
}

.policy-container ul li {
   padding: 0.8rem 0;
  padding-left: 2rem;
    position     : relative;
	color: #555;
       line-height: 1.6;
}

.policy-container ul li:before {
  content: "▸";
    position: absolute;
  left: 0;
          color: #667eea;
   font-weight:        bold;
               font-size: 1.2rem;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container {
        padding: 2rem 1.5rem;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 0.5rem;
    }

    .policy-container {
        padding: 1.5rem 1rem;
        border-radius: 5px;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
        margin-top: 1.3rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .policy-container ul li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
}

@media print {
    .policy-section {
        background-color: white;
        padding: 0;
    }

    .policy-container {
        box-shadow: none;
        max-width: 100%;
        padding: 0;
    }

    .policy-container h1 {
        border-bottom: 1px solid #ccc;
    }
}