* {
   margin :        0;
  padding    :     0;
    box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body
{

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
   line-height: 1.6; 
  color: #2c3e50; 
	background-color: #ffffff;

}

.nav-container {
  background-color: #1a1a1a;
  padding  :    0;
   position: sticky;
   top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}  

.nav-wrapper {
   max-width: 1200px;
    margin: 0 auto;
    display  :     flex;
    justify-content: space-between;
	align-items: center;
        padding: 1rem 2rem;
}

.nav-logo-section
{
   display: flex;
	align-items  :  center;
}

.nav-logo
	{
  height: 40px;
                    width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
	display: flex;
  list-style: none;
   gap  :       2rem;
}

.nav-link {
   color: #ffffff;
  text-decoration    :      none;
  font-weight: 500;
    transition   :   color 0.3s ease;
   font-size: 1rem;
}

.nav-link:hover {
   color: #64b5f6;
}

.nav-burger {

       display: none;
	flex-direction  :column;
	background: none;
    border: none;
  cursor: pointer;
   gap: 5px;
   padding: 5px;

}

.nav-burger span {
   width: 25px;
                    height:        3px;
   background-color     : #ffffff;
  border-radius: 2px;
    transition: all 0.3s ease;
}



.hero-section {
   position :relative;
   height: 500px;
    display:      flex;
   align-items: center;
     justify-content: center;
   overflow: hidden;
}

.hero-bg {
          position: absolute;
     top: 0;
	left   : 0;
   width: 100%;
  height: 100%;
    object-fit:      cover;
   z-index: 1;
}

.hero-overlay {
   position: absolute;
   top  :    0;
   left    :    0;
   width    :100%;
   height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(100, 181, 246, 0.4) 100%);
   z-index: 2;
}

.hero-content  
  {
    position: relative;
					z-index: 3;
  text-align:center;
   max-width: 600px;
    padding :       2rem;
          color     :#ffffff;
}

.hero-title {
	    font-size: 3rem;
			font-weight:        700;
 margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	}

.hero-subtitle {
   font-size    :   1.3rem;
   margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display : inline-block;
  background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
	color: #ffffff;
    padding: 15px 35px;
   border-radius: 50px;
    text-decoration: none;
   font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(100, 181, 246, 0.4); 

}

.hero-cta:hover    {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(100, 181, 246, 0.6);
}

.about-section {
  padding: 4rem 2rem;
  background-color: #f5f5f5;
}

.about-container    {
  grid-template-columns   :   1fr 1fr;
     display: grid;
   	 max-width: 1200px;
     margin: 0 auto;
   	 align-items: center;
       gap: 3rem;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  color: #1a1a1a; 

}

.about-text p {

   margin-bottom: 1rem;
	font-size: 1.05rem;
  line-height  :      1.8;


}

.about-image {


   width: 100%;
	 border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

}


.services-preview 
 {
    padding: 4rem 2rem;
  max-width: 1200px;
   margin:   0 auto;
}

.services-preview h2 {
    font-size: 2.2rem;
   text-align: center;
	 margin-bottom: 3rem;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap:    2rem;
}

.service-card {

    background: #ffffff;
      border-radius: 10px;
   		 overflow: hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   	transition: transform 0.3s ease, box-shadow 0.3s ease;
     }

.service-card:hover  
  {
     transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

}

.service-image {
    width: 100%;
   height: 200px;
	object-fit: cover;
     }

.service-card h3    {
  padding: 1.5rem 1.5rem 0.5rem;
               font-size    :       1.5rem;
   color: #1a1a1a; 
	
}

.service-card p {
    padding: 0.5rem 1.5rem 1.5rem;
      color: #555;
}

.benefits-section {
   padding:  4rem 2rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #f5f5f5 100%);
}

.benefits-section h2 {
     font-size :      2.2rem;
   text-align: center;
   margin-bottom: 3rem;
}

.benefits-list 
 {

	    max-width: 1200px;
    margin: 0 auto;
  display :    grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;}

.benefit-item {
   background :        #ffffff;
    padding: 2rem;
   border-radius: 10px;
   text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   transition   :   all 0.3s ease;
}

.benefit-item:hover {
     transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);


}

.benefit-number {
	display: inline-flex;
   align-items  :       center;
   justify-content     : center;
	width: 50px;
	 height: 50px;
  background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
  color: #ffffff;
          border-radius   :        50%;
 font-size   :   1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size:1.3rem;
   margin-bottom: 0.8rem;
   color: #1a1a1a;
}

.benefit-item p {
  color: #555;
    line-height: 1.7; 
	
}

.cta-main {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #ffffff;
   padding: 4rem 2rem;
	text-align: center;
}

.cta-content


{
   max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {

	          font-size: 2.2rem;
    margin-bottom: 1rem;
	}

.cta-content p {
    font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;


}

.cta-button	{
    display: inline-block;
  background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
   color: #ffffff;
	padding: 15px 40px;
   border-radius: 50px;
  text-decoration: none;
    font-weight: 600;
	 transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(100, 181, 246, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(100, 181, 246, 0.6);
}

.features-section {
       padding: 4rem 2rem;

}

.features-section h2 {

   font-size: 2.2rem;
   text-align: center;
  margin-bottom:        3rem;
     }

.features-grid {
				 max-width   :    1200px; 
	  margin: 0 auto; 
	  display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
	   gap: 2.5rem;
}

.feature-box {
   text-align: center;
   padding: 2rem;
   background: #f9f9f9;
	border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
}

.feature-icon-num {
  display: inline-flex;
    align-items: center;
  justify-content   :     center;
   width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
    color: #ffffff;
  border-radius  : 50%;
  font-size: 1.8rem;
	 font-weight: 700;
  margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
	
}


.feature-box p


{

	    color: #555;
    line-height: 1.7; 



}

.testimonials-section {
	  padding: 4rem 2rem;
	 background-color: #f5f5f5;}  

.testimonials-section h2 {
	font-size   :2.2rem;
   text-align: center;
     margin-bottom: 3rem;}


.testimonials-container {
    max-width: 1200px;
   margin: 0 auto;
    display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap  : 2rem;
}

.testimonial-card     {

	    background:  #ffffff;
    padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #64b5f6;
	transition: all 0.3s ease;}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.testimonial-text{
         font-size:  1.05rem;
	 line-height: 1.8;
  margin-bottom: 1.5rem;
    color    :        #333;
     font-style: italic;

}

.testimonial-author     {
  font-weight: 600;
   color: #1a1a1a;
}

.contact-section {
  padding: 4rem 2rem;
}

.contact-wrapper {
     margin: 0 auto;
	   max-width     :     700px;
}



.contact-section h2 {
		 font-size: 2.2rem;
	text-align   :  center;
  margin-bottom: 1rem;
}

.contact-intro {
    text-align: center;
  margin-bottom: 2rem;
  color: #555;
          font-size: 1.05rem;
}

.contact-form {
  background: #f9f9f9;

  padding: 2.5rem;

    border-radius: 10px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}


.form-group {
        margin-bottom: 1.5rem;
}

.form-group label


{
   display   :  block;
    margin-bottom:    0.5rem;
   font-weight: 600;
  color  :     #1a1a1a;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
   padding   :        12px;
  border: 2px solid #e0e0e0;
	 border-radius: 5px;
	font-family: inherit;
  font-size: 1rem;
   transition   :       all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus   {
  outline: none;
  border-color: #64b5f6;
  box-shadow: 0 0 0 3px rgba(100, 181, 246, 0.2);
}

.form-submit {
    width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
  color   :      #ffffff;
   border: none;
   border-radius: 5px;
        font-size: 1.1rem;
   font-weight: 600;
    cursor: pointer;
  transition     :   all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(100, 181, 246, 0.4);
}

.footer-section {
  background-color: #1a1a1a;
   color: #ffffff;
  padding: 3rem 2rem 1.5rem;
}

.footer-content {

	 max-width: 1200px;
               margin :       0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
   margin-bottom: 2rem; 

	}

.footer-logo-block {
   display: flex;
  align-items: center;
}

.footer-logo {
          height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-info h3,
.footer-links h3 {
   font-size :  1.2rem;
        margin-bottom: 1rem;
}

.footer-address  
  {
   margin-bottom    : 0.8rem;
   line-height: 1.6;
}

.footer-phone {
    font-weight: 500;
    color: #64b5f6;
}  

.footer-links ul {
   list-style: none; 
	
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {


   color: #b0bec5;
  text-decoration: none;
   transition: color 0.3s ease;
}

.footer-links a:hover {
		color: #64b5f6;

}

.footer-bottom {


   text-align: center;
  padding-top: 1.5rem;
      border-top: 1px solid #333;
    color :    #888; 
	
	}@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        flex-direction: column;
        gap: 0;
        list-style: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 2px solid #333;
    }

    .nav-menu.active {
        max-height: 200px;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid #333;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .services-grid,
    .benefits-list,
    .features-grid,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .about-section,
    .services-preview,
    .benefits-section,
    .features-section,
    .contact-section,
    .testimonials-section {
        padding: 2rem 1rem;
    }
}.services-hero {

		position :      relative;
   height: 400px;
  display     :      flex;
	 align-items: center;
    justify-content: center;
  overflow: hidden;
} 

.services-hero-bg
{


   position: absolute;
   top: 0;
  left: 0;
	width  :     100%;
  height: 100%;
  object-fit: cover;
    z-index: 1;


}

.services-hero-overlay {
    position: absolute;
   top: 0;
   left: 0;
    width: 100%;
    height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(66, 165, 245, 0.4) 100%);
  z-index: 2;
}



.services-hero-content {
    position: relative;
  z-index: 3;
    text-align: center;
  color: #ffffff;
	max-width: 600px;
    padding: 2rem;
}

.services-hero-title {
  font-size :     2.8rem;
    font-weight: 700;
			margin-bottom   :       1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
} 

.services-hero-subtitle {
     font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
     }

.services-section {
	 padding: 4rem 2rem;
	background-color: #ffffff;
}

.services-container     {
   max-width: 1200px;
  margin    :    0 auto;
}

.service-detail-card {
   display: grid; 
	    grid-template-columns: 1fr 1fr; 
	  gap: 3rem; 
	    align-items     :      center; 
		margin-bottom :       4rem; 
	    background: #f9f9f9; 
	    padding: 2.5rem; 
	    border-radius: 10px; 
	    transition: box-shadow 0.3s ease;


}

.service-detail-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-detail-reversed {
    grid-template-columns: 1fr 1fr; 

}

.service-detail-reversed .service-detail-image {
  order   :       2;
}

.service-detail-reversed .service-detail-content
{
    order: 1;
}

.service-detail-image {
  width: 100%;
   height: 350px;
   object-fit: cover;
        border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-detail-content h2 {

	  font-size: 2rem;
    margin-bottom: 1rem;
				 color: #1a1a1a;

}

.service-detail-content p {
         margin-bottom: 1.5rem;
  line-height: 1.8;
               color: #555;
  font-size: 1.05rem;
}

.service-detail-content h3 {
                    margin-bottom: 1rem;
               font-size    : 1.3rem;
  margin-top: 1.5rem;
   color: #1a1a1a;
}

.service-features {
   list-style: none;
    padding: 0;
   margin-bottom:1.5rem;
}

.service-features li {


  padding:       0.6rem 0;
	padding-left: 1.5rem;
    position :     relative;
  color: #555;
    line-height: 1.6;


}

.service-features li:before {
  content: "✓";
   position: absolute;
  left: 0;
  color  :   #64b5f6;
     font-weight: bold;
    font-size: 1.2rem;
}

.service-duration,
.service-price {
  padding: 0.8rem;
  background: #e3f2fd;
    border-left: 4px solid #64b5f6;
    border-radius: 4px;
  margin-bottom: 0.5rem;
   font-size: 1rem;
}

.process-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #e3f2fd 100%);
}

.process-section h2 {
  font-size: 2.2rem;
	 text-align: center;
     margin-bottom :     3rem;
}

.process-timeline {
	max-width: 1000px;
     margin     :  0 auto;
	display    :    grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap    :  2rem;
}

.timeline-step {
    background: #ffffff;
   padding: 2rem 1.5rem;
  border-radius: 10px;
   text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.timeline-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
} 

.timeline-marker {
					display: inline-flex;
    align-items: center;
   justify-content: center;
    width: 45px;
   height: 45px;
  background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
    color: #ffffff;
   border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
   margin-bottom: 1rem;
	
}

.timeline-step h3 {
       margin-bottom: 0.8rem;
    font-size: 1.2rem;
   color: #1a1a1a;
     }

.timeline-step p {
   color     :        #555;
   font-size: 0.95rem;
       line-height: 1.6;
}

.pricing-section {
	padding: 4rem 2rem;
	  background   :       #ffffff;
}

.pricing-section h2 {

	  font-size: 2.2rem;
    text-align: center;
   margin-bottom: 3rem;


}

.pricing-grid {
   max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: #f9f9f9;
  border:  2px solid #e0e0e0;
          padding: 2.5rem;
	border-radius: 10px;
  text-align: center;
  transition     :       all 0.3s ease;
  position: relative;
    display: flex;
   flex-direction: column;
	}

.pricing-card:hover {
  transform: translateY(-5px); 
	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
	
}

.pricing-featured  {

  border-color: #64b5f6;
  background: linear-gradient(135deg, #e3f2fd 0%, #f9f9f9 100%);
  transform: scale(1.05);
   z-index: 10;


}

.pricing-badge
	{
   position   :        absolute;
  top: -15px;
    left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
	color: #ffffff;
      padding: 0.5rem 1.5rem;
   border-radius  :      50px;
	font-weight: 600;
    font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(100, 181, 246, 0.3);
}

.pricing-title    {

    font-size: 1.5rem;
     margin-bottom: 0.5rem;
  margin-top: 0;
  color: #1a1a1a;}

.pricing-description

{
       margin-bottom: 1.5rem;
  color: #888;
    font-size: 0.95rem;
}

.pricing-amount {
  font-size: 2.5rem;
       font-weight: 700;
   color: #64b5f6;
  margin-bottom :        1.5rem;
}

.pricing-features {
  list-style: none;
   padding:       0;
    margin-bottom:  2rem;
    flex-grow: 1;
  text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
  border-bottom     :1px solid #e0e0e0;
   color: #555;
   position: relative;
   padding-left: 1.8rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:before
	{

	  content: "•";
         position: absolute;
    left:       0;
    color: #64b5f6;
  font-size: 1.5rem;
    line-height: 0.8;
	}

.pricing-btn {


   background     :     #f0f0f0;
  padding: 12px 30px;
  border-radius: 50px;
	transition: all 0.3s ease;
    border: 2px solid transparent;
   display: inline-block;
   font-weight :  600;
  color: #1a1a1a;
    text-decoration: none;

}

.pricing-btn:hover {
       background    :      #e0e0e0;
  transform: translateY(-2px);
}


.pricing-btn-featured {
  background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
  color    :#ffffff;
   border-color: #64b5f6;
}

.pricing-btn-featured:hover {
  background: linear-gradient(135deg, #42a5f5 0%, #2196f3 100%);
  box-shadow: 0 6px 20px rgba(100, 181, 246, 0.4);
}

.faq-section {
      padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #e3f2fd 100%);
	}

.faq-section h2 {
  font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-container {
        margin: 0 auto;
    max-width: 900px;
}

.faq-item {
	   background    :      #ffffff;
    padding: 2rem;
         margin-bottom: 1.5rem;
   border-radius: 10px;
  border-left: 4px solid #64b5f6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
    cursor: pointer;

}

.faq-item:hover  {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.faq-question {
   font-size: 1.2rem;
    margin-bottom  :    1rem;
    color: #1a1a1a;
}

.faq-answer {
	color: #555;
   line-height: 1.8;
  margin    : 0;
}

.cta-services {

  background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
  color: #ffffff;
  padding: 4rem 2rem;
    text-align: center;}

.cta-services h2 {
   font-size: 2.2rem;
   margin-bottom: 1rem;
} 

.cta-services p {

  font-size: 1.1rem;
  margin-bottom: 2rem;
	line-height: 1.8;
	max-width: 600px;
    margin-left :    auto;
  margin-right: auto;


}

.cta-btn-services  {
  display: inline-block; 
	  background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%); 
	  color:  #ffffff; 
		 padding: 15px 40px; 
	    border-radius: 50px; 
	   text-decoration: none; 
	    font-weight: 600; 
	    transition: all 0.3s ease; 
	  box-shadow: 0 4px 15px rgba(100, 181, 246, 0.4);
}

.cta-btn-services:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(100, 181, 246, 0.6);
}


.thankyou-section {
	padding     :   4rem 2rem;
        min-height: 500px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e3f2fd 100%);
   display: flex;
   align-items: center;
  justify-content: center;
}

.thankyou-container {
    max-width: 700px;
    background: #ffffff;
    padding: 3rem;
    border-radius  :       15px;
    text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-icon {
  margin-bottom: 2rem;
}

.thankyou-icon svg {
         width: 80px;
    height   :80px;
               animation: scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-title {
   font-size: 2.2rem; 
	   margin-bottom: 0.5rem; 
	    color: #1a1a1a;
}


.thankyou-subtitle {


    font-size: 1.2rem;
    color: #2ecc71;
    margin-bottom: 2rem;


}

.thankyou-content {
  text-align: left;
               margin    :   2rem 0;
}

.thankyou-content p {
    color: #555;
   line-height: 1.8;
      margin-bottom: 1.5rem;
}

.thankyou-what-next    {
   background: #f9f9f9;
    padding    :    2rem;
  border-radius: 10px;
  margin: 2rem 0;
    text-align: center;
}

.thankyou-what-next h2 {
    font-size: 1.5rem;

  margin-bottom: 1.5rem;
}

.next-steps {
    display :      grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
   gap:    1.5rem;
    text-align: center;
}

.step {
  background: #ffffff;
    padding   :1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); 

}

.step-number {
      display: inline-flex;
  align-items: center;
  justify-content: center;
    width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
   color: #ffffff;
  border-radius :      50%;
   font-size: 1.3rem;
  font-weight  : 700;
    margin-bottom: 0.8rem;}

.step h3  {

   font-size: 1rem;
   margin-bottom     :      0.5rem;
    color: #1a1a1a;
     }


.step p {

  font-size: 0.9rem;
    color: #555;
   line-height: 1.6;
}

.thankyou-info-box {
  background: #e3f2fd;
    padding :    1.5rem;
  border-radius: 8px;
   margin: 2rem 0;
	border-left: 4px solid #64b5f6;
   text-align: left;
}

.thankyou-info-box p {
  margin: 0.5rem 0;

    color: #1a1a1a;

}

.thankyou-actions {
                    display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top :        2rem;
}

.thankyou-btn-primary,
.thankyou-btn-secondary {
	   display: inline-block;
      padding: 12px 25px;
   border-radius: 50px;
     text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
     }

.thankyou-btn-primary {
  background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
   color:#ffffff;
}

.thankyou-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(100, 181, 246, 0.4);
}

.thankyou-btn-secondary {
    background: #f0f0f0;
	color: #1a1a1a;
	 border: 2px solid #64b5f6;
}

.thankyou-btn-secondary:hover{

    background    :   #e3f2fd;
     }

.contact-info-section

{

    padding: 3rem 2rem;
    background   :#f5f5f5;

}

.contact-info-section h2 {

  font-size: 1.8rem;
   text-align: center;
       margin-bottom: 2rem;

}

.contact-methods {
   max-width: 800px;
          margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap   :   2rem;
}

.contact-method {

   background: #ffffff;
    padding: 2rem;
   border-radius:  10px;
  text-align :  center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     }


.contact-method h3 {
  font-size: 1.3rem;
        margin-bottom: 1rem;
 color: #1a1a1a;


}

.contact-value {
	font-size: 1.1rem;
    font-weight: 600;
    color: #64b5f6;
   margin-bottom: 0.5rem;
	}

.contact-time 
 {
  color  : #888;
    font-size: 0.95rem;
}@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2rem;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .service-detail-reversed {
        grid-template-columns: 1fr;
    }

    .service-detail-reversed .service-detail-image {
        order: 1;
    }

    .service-detail-reversed .service-detail-content {
        order: 2;
    }

    .service-detail-image {
        height: 250px;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .pricing-featured {
        transform: scale(1);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .next-steps {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-actions {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 1.5rem;
    }

    .services-hero-subtitle {
        font-size: 1rem;
    }

    .service-detail-card {
        margin-bottom: 2rem;
    }

    .service-detail-content h2 {
        font-size: 1.3rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .process-section,
    .pricing-section,
    .faq-section,
    .cta-services {
        padding: 2rem 1rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-title {
        font-size: 1.6rem;
    }
}.policy-section {
  padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4fd 100%);
  min-height: calc(100vh - 200px);
}

.policy-container {
     max-width: 900px;
	    margin: 0 auto;
	                    text-align: left;
	   background  :#ffffff;
	         padding   :       3rem;
	    border-radius: 10px;
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {
	    border-bottom: 3px solid #64b5f6;
    text-align: center;
  font-size   :2.5rem;
   color: #1a1a1a;
  font-weight: 700;
   margin-bottom :       2rem;
  padding-bottom: 1.5rem;
     }

.policy-container h2 {
   font-size: 1.8rem;
   color: #2c3e50;
  margin-top:   2.5rem;
     margin-bottom: 1.2rem;
    font-weight: 600;
}

.policy-container p {
    color :      #555;
   margin-bottom: 1.5rem;
	 font-size    :       1.05rem;
                    line-height: 1.8;


}

.policy-list{
    list-style    :       none;
          padding: 0;
    margin  :      1.5rem 0 2rem 0;
}

.policy-list li {
   padding: 1rem;
   margin-bottom    :      1rem;
  background: #f9f9f9;
   border-left: 4px solid #64b5f6;
   border-radius :     5px;
    line-height: 1.7;
    color: #555;
}

.policy-list li strong {
     color: #1a1a1a;
	 display: block;
  margin-bottom: 0.3rem; 
	
	}

.policy-container a {
    color: #64b5f6;
  -moz-transition: color 0.3s ease;
  text-decoration: none;
   transition: color 0.3s ease;
   -o-transition: color 0.3s ease;
}

.policy-container a:hover {
    color: #42a5f5;
   text-decoration: underline;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container {
        padding: 2rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .policy-container p {
        font-size: 1rem;
    }

    .policy-list li {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 0.5rem;
    }

    .policy-container {
        padding: 1.5rem;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .policy-container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }

    .policy-list li {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
        font-size: 0.95rem;
    }
}