.navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 0;
    position: sticky;
  top: 0;
  z-index    :        1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}  

.nav-container		{
    padding: 0 20px;
    margin: 0 auto;
  display: flex;
    justify-content     :     space-between;
  max-width: 1200px;
    align-items: center;
}

.nav-logo {
          display: flex;
  align-items: center;
        height: 74px;
}

.logo-img {
  max-height: 74px;
     width: auto;
     filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
  list-style: none;
    gap: 40px;
   align-items   :   center;
}

.nav-link

{
  color: white;
    text-decoration: none;
   font-weight: 500;
   font-size: 1rem;
    transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
   position: absolute;
    bottom: -5px;
  -o-transition  :    width 0.3s ease;
    left: 0;
    -webkit-transition: width 0.3s ease;
    width: 0;
   -moz-transition: width 0.3s ease;
    height: 2px;
	background: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {

	 display: none;
   flex-direction:    column;
   background: none;
  border: none;
   cursor: pointer;
  gap: 6px;
	}

.burger-menu span {
    width: 28px;
  height: 3px;
    background: white;
    border-radius: 2px;
  transition     :       all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {


  transform: rotate(45deg) translate(10px, 10px);
     }

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 300px;
    }
    
    .nav-container {
        flex-wrap: wrap;
    }
    
    .logo-img {
        max-height: 50px;
    }
    
    .nav-link::after {
        display: none;
    }
}*     {
        margin: 0;
   padding :    0;
    box-sizing     :        border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height:      1.6;
                    color: #333;
   background: #fff;
}

.container {
   margin: 0 auto;
  max-width   :       1200px;
   padding: 0 20px;
}

.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
    position: relative;
  min-height: 400px;
    display: flex;
    align-items    :        center;
   justify-content: center;
        overflow: hidden; 
	
}

.hero-overlay {
      position: absolute;
   top: 0;
	left   :   0;
   right : 0;
    bottom: 0;
  background: rgba(0, 0, 0, 0.2);
} 

.services-hero-content {
   position: relative;
  z-index: 2;
  max-width :   800px;
}

.services-hero-content h1 {
           font-size: 3rem;
  font-weight: 700;
    margin-bottom   :      20px;}

.services-hero-content p {
  font-size: 1.3rem;
    opacity: 0.95;
}

.services-intro {
  padding   :  80px 20px;
  text-align: center;
    background: #f8f9fa;
}  

.services-intro h2 {
  font-size: 2.5rem;
   margin-bottom: 30px;
   color: #2c3e50;
}

.intro-text {


  font-size: 1.1rem;
   color: #666;
	 max-width: 700px;
    margin: 0 auto;
   line-height: 1.8;
	}

.service-detail-section     {
   padding:     80px 20px;
}

.service-detail-section.alternate {
   background: #f1f3f8;
}

.service-detail-grid
{
   display: grid;
   grid-template-columns   :  1fr 1fr;
   gap: 60px;
   align-items: stretch;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse > * {
  direction: ltr;
}


.service-detail-item {
   align-items: stretch;
	grid-template-columns: 1fr 1fr;
    display: grid;
         gap: 40px;
}

.service-detail-image {
   overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}



.service-detail-image img {
  width: 100%;
    height: 100%;
    object-fit: cover;
   transition: transform 0.5s ease;
}

.service-detail-image:hover img {
  transform: scale(1.05);
}

.service-detail-content h3 {
    font-size: 2rem;
   color: #2c3e50;
   margin-bottom  :     15px;
}

.service-price {
	         font-size: 1.3rem;
    color: #667eea;
  font-weight: 600;
  margin-bottom: 20px;
     }

.service-detail-content p {

	    color: #555;
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 1.05rem;

}

.service-features {
  list-style: none;
    margin     : 25px 0;
}

.service-features li {
    color :     #666;
    padding: 12px 0 12px 35px;
    line-height: 1.6;
   position: relative;
}

.service-features li:before {
  content: '✓';
  position: absolute;
   left: 0;
    color: #667eea;
	font-weight: 700;
   font-size:     1.2rem;
}

.additional-services {
   padding :   80px 20px;
  background:  #f8f9fa;
}

.additional-services h2 {
	 font-size: 2.5rem;
  text-align: center;
        margin-bottom: 60px;
    color: #2c3e50;
}

.additional-services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.additional-service {
    background:   white;
    padding: 30px;
                    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	 transition: all 0.3s ease;
   border: 2px solid transparent;
}

.additional-service:hover {
   border-color: #667eea;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);

}

.additional-service h4 {
    font-size: 1.4rem;
   color: #764ba2;
	 margin-bottom: 15px;
}

.additional-service p {
    margin-bottom: 15px;
    line-height: 1.7;
  color: #666;
}


.price


{
		font-size: 1.1rem;
   color:    #667eea;
      font-weight: 600;
     }

.comparison-section {
    padding: 80px 20px;
}

.comparison-section h2 
 {
				 margin-bottom: 60px;
  color: #2c3e50;
  font-size: 2.5rem;
  text-align: center;
}

.comparison-table-wrapper {
     overflow-x: auto;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table {
   width: 100%; 
   border-collapse  :collapse; 
  background: white;
}

.comparison-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.comparison-table th {
       padding: 20px 15px;
	 text-align: left;
   font-weight: 600;
                    font-size: 1rem;
}

.comparison-table td {


  padding: 18px 15px;
  border-bottom :      1px solid #ddd;
	font-size: 0.95rem;



}



.comparison-table tbody tr:hover {
   background: #f8f9fa;
}

.comparison-table .yes {
   color: #27ae60;
  font-weight: 600;
}

.comparison-table .no {
    color: #bdc3c7;
}


.comparison-table .partial {
    color: #f39c12;
   font-weight     :        500;


}

.comparison-table .good {
   color: #3498db;
  font-weight: 500;
	
}

.comparison-table .price {
  color: #667eea;
   font-weight   :        600;
}

.faq-section {


  padding: 80px 20px;
   background: #f1f3f8;
	}

.faq-section h2 {
        font-size: 2.5rem;
    text-align: center;
  margin-bottom: 60px;
    color: #2c3e50;
}

.faq-grid {
	display :        grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                    gap: 40px;
}

.faq-item {
  background: white;
   padding: 30px;
   border-radius:       10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    color:   #667eea;
       font-size: 1.2rem;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height     :1.7;
}

.booking-section {
   padding   :      80px 20px;
   text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}  

.booking-section h2 {

   color     :    white;
  font-size: 2.5rem;
  margin-bottom: 30px;}

.booking-text  {
    font-size: 1.2rem;
	 margin-bottom    :    40px;
   opacity: 0.95;
    max-width: 600px;
  margin-left: auto;
  margin-right: auto;}

.cta-button
	{
    display  :    inline-block;
   background: white;
   color: #667eea;
   padding: 16px 45px;
  border-radius: 50px;
    text-decoration: none;
  font-weight    :600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
   border: none;
   cursor: pointer; 

}  

.cta-button:hover {
  transform: translateY(-3px);
	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.thankyou-section {
     min-height: 100vh;
   padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f8 100%);
       display: flex;
    align-items: center;
  justify-content: center;

}

.thankyou-container {
  background: white;

	   padding: 60px 40px;

	    border-radius: 15px;

	  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);

	         max-width: 800px;

	    text-align     : center;
}

.success-icon {
   color: #27ae60;
    margin-bottom: 30px;
    display: flex;
 justify-content: center;

}

.success-icon svg {
   animation    : scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1 {
	font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom     :        20px;
}

.success-message {

    font-size: 1.2rem;
	color    :  #666;
    margin-bottom :      50px;
    line-height: 1.8;
}

.thankyou-content {
  margin: 50px 0;
               text-align: left;
}

.next-steps {
   margin-bottom: 50px;

	  background: #f8f9fa;

	   padding   :40px;

	   border-radius: 10px;

}

.next-steps h2 {
    font-size: 1.8rem;
    color: #2c3e50;
  margin-bottom: 30px;
    text-align: center;
}

.next-steps ol {
  list-style: none;
   counter-reset: step-counter;
}

.next-steps li {
   display: flex;
     gap: 20px;
   margin-bottom: 25px;
    align-items: flex-start;
}

.step-number {
  display: flex;
   align-items: center;
  justify-content    : center;
  width: 50px;
    height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    border-radius: 50%;
   font-weight: 700;
    font-size: 1.3rem;
   flex-shrink:  0;
}

.next-steps h4 {
        color: #2c3e50;
  font-size: 1.1rem;
    margin-bottom: 8px;
}

.next-steps p {
   color: #666;
       line-height: 1.6;
  margin: 0;
}

.info-box {
	 background: white;
  padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #667eea;
}

.info-box h3
{
    color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.info-box p {
   color: #666;
    margin-bottom: 15px;
}

.info-box ul {
	list-style:  none;
	}

.info-box li {
	 margin-bottom: 15px;
  color: #666;
   line-height: 1.7;
}

.info-box a {
  color: #667eea;
    text-decoration :    none;
	font-weight: 600;
    transition: color 0.3s ease;


}

.info-box a:hover {
   color: #764ba2;
    text-decoration: underline;
}

.contact-info {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 40px;
    border-radius: 10px;
    margin: 50px 0;
}

.contact-info h3 
 {
   font-size: 1.5rem;
   margin-bottom: 20px;
}


.contact-info p {
   margin-bottom: 10px;
   line-height     :   1.7;
}

.back-button {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
       padding: 14px 40px;
  border-radius: 50px;
   text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
   font-size: 1rem;
   border: none;
    cursor: pointer;
    margin-top: 30px;
}

.back-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

footer {
    background: #2c3e50;
    color: white;
    padding: 60px 20px 40px;
}

.footer-content {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
	    margin-bottom: 20px;
    font-size: 1.2rem;}

.footer-section p,
.footer-section a {
  color    :     #bdc3c7;
       line-height: 1.8;
	text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #667eea;
}

.footer-logo {
   max-height: 96px;
  width: auto;
      margin-bottom: 15px;
}

.footer-bottom
{

	border-top: 1px solid #34495e;
    padding-top: 30px;
   text-align: center;
   color: #95a5a6;}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2.2rem;
    }

    .services-hero-content p {
        font-size: 1.1rem;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
    }

    .service-detail-content h3 {
        font-size: 1.6rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }

    .thankyou-container {
        padding: 30px 20px;
    }

    .next-steps {
        padding: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .booking-section h2 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1rem;
    }
}.policySection     {
    padding: 80px 2rem;
  background :      #f8f9fa;
  min-height: calc(100vh - 400px);
}

.policyContainer {
    max-width: 800px;
    margin: 0 auto;
  text-align: left;
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
  font-size: 2.8rem;
    color: #2c3e50;
  margin-bottom: 50px;
    font-weight: 700;
    padding-bottom: 30px;
   border-bottom: 3px solid #667eea;
}

.policyContainer h2	{
    font-size  :     1.8rem;
   color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #667eea;
}

.policyContainer p {
    color: #555;

  margin-bottom: 20px;

   line-height: 1.8;

    font-size: 1.05rem;
}

.policyContainer strong  {
    color :  #2c3e50;
    font-weight :        600;
	
}

.container {
    max-width: 1200px;

	    margin: 0 auto;

		 padding: 0 20px;
	}

footer {
  background: #2c3e50;
  color: white;
   padding: 60px 20px 40px;
   margin-top :      60px;
}

.footer-content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
   margin-bottom: 40px;
}

.footer-section h3 {
               margin-bottom: 20px;
   font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    line-height: 1.8;
  text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #667eea;
}

.footer-logo {
          max-height: 96px;
   width :  auto;
  margin-bottom     :    15px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
   text-align: center;
  color: #95a5a6;
}@media (max-width: 768px) {
    .policyContainer {
        padding: 30px 20px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .policyContainer p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .policySection {
        padding: 60px 1rem;
    }
}