* 
 {
      margin: 0;
    padding: 0;
   box-sizing: border-box;
     }

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: #fff;
}

.navbar {

  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); 
	


}

.navbar-wrapper {
   max-width: 1200px;
    margin :0 auto;
  display   :        flex;
  justify-content: space-between;
   align-items: center;
	
}

.logo-img {
   height: 45px;
     width: auto;
  filter: brightness(0) invert(1);
   transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.navbar-menu {

   display: flex;
    list-style :      none;
   gap: 2rem;


}

.nav-link {
  color: white;
    text-decoration: none;
    font-weight: 500;
   transition: all 0.3s ease;
   position: relative;
}

.nav-link:hover {
  color: #ffd89b;
}


.nav-link::after {
  content: '';
   position: absolute;
   bottom: -5px;
     left     :      0;
					width: 0;
  height: 2px;
       background :    #ffd89b;
    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: 5px;
}

.burger-menu span {
	width: 25px;
 height: 3px;
   background:  white;
	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);
}

.hero-section {
    display :     flex;
   align-items: center;
   justify-content: space-between;
    padding: 6rem 2rem;
   max-width  :    1400px;
	margin: 0 auto;
  gap: 3rem;
}

.hero-content

{
   flex: 1;
   animation: fadeInLeft 0.8s ease;
}

.hero-content h1 {
 font-size     :        3.5rem;
    color: #1a1a1a;
   margin-bottom: 1rem;
	line-height: 1.2;
   font-weight :     800;
}



.hero-subtitle {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.cta-button {
    display: inline-block;
   padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color:white;
  text-decoration: none;
   border-radius: 50px;
	 font-weight: 600;
	 transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.hero-image {
     flex: 1;
       animation: fadeInRight 0.8s ease;
}


.hero-img   {
               width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}


.about-section {
  padding    :      5rem 2rem;
  background  :       #f8f9fa;
}

.about-wrapper {
         max-width: 1200px;
  margin: 0 auto;
   display: flex;
  align-items  :  center;
    gap: 4rem;
}

.about-text {
   flex: 1;
}

.about-text h2 {
      font-size: 2.5rem;
	 color: #1a1a1a;
	 margin-bottom: 1.5rem;
}

.about-text p {

	  font-size: 1.1rem;
   color: #555;
  margin-bottom: 1.5rem;
    line-height: 1.8;}

.about-image {
               flex     :        1;
}

.about-img 
 {
   width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.services-preview {
    padding: 5rem 2rem;
  max-width: 1200px;
   margin: 0 auto;
}

.services-preview h2 {
  text-align: center;
  margin-bottom:  3rem;
         color: #1a1a1a;
			font-size   :   2.5rem;
}

.services-grid {
   display   :  grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
    margin-bottom: 2rem;
	}  

.service-card     {
    background: white;
   padding: 2rem;
   border-radius :    15px;
    text-align: center;
  transition: all 0.3s ease;
   border: 1px solid #e0e0e0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); 

}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
                    border-color :        #667eea;
}

.service-icon {
	margin-bottom: 1rem;
       height: 80px;
    display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
   width: 60px;
   height: 60px;
  filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
    transition  :  all 0.3s ease;
	
}

.service-card:hover .service-icon img {
	  filter: drop-shadow(0 8px 15px rgba(102, 126, 234, 0.5));
  transform: scale(1.1);}

.service-card h3 {
               font-size :        1.4rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.view-all-btn {
   display: block;
       width: fit-content;
    margin:      0 auto;
   padding     :  0.9rem 2rem;
    background: #667eea;
    color: white;
   text-decoration: none;
  border-radius: 50px;
	 font-weight :    600;
     transition: all 0.3s ease;
        border: 2px solid #667eea;
}

.view-all-btn:hover

{
   background: transparent;
			color: #667eea;
}

.experience-section {
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

.experience-section h2
	{
   font-size: 2.5rem;
    text-align: center;
      margin-bottom: 3rem;
    color: #1a1a1a;
}

.experience-container {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
    max-width    :        1200px;
  margin: 0 auto;}

.experience-item   {
   background :       white;
    padding: 2.5rem;
    border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.exp-number {
  display: inline-flex;
  align-items: center;
	justify-content :        center;
  width: 60px;
    height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         color :   white;
  font-size: 1.8rem;
    font-weight: 800;
    border-radius     :     50%;
   margin-bottom: 1rem;
}

.experience-item h3 {
   color: #1a1a1a;
   margin-bottom: 1rem;
  font-size: 1.3rem;
}

.experience-item p {
    color: #666;
    line-height: 1.6;
}

.image-showcase {
    padding:    5rem 2rem;
}

.image-showcase h2 {
   font-size: 2.5rem;
   text-align: center;
    margin-bottom: 3rem;
  color: #1a1a1a;
}

.showcase-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 2rem;
   max-width: 1200px;
    margin: 0 auto;
}

.showcase-item {
   width: 100%;
  height: 300px;
    object-fit: cover;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
	
}

.showcase-item:hover{


  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);


}

.cta-section{
    padding: 6rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-wrapper {
    margin: 0 auto;
    max-width: 800px;
}

.cta-wrapper h2 {
      font-size: 2.5rem;
   color     : white;
    margin-bottom: 1rem;
}

.cta-wrapper p {
  font-size     :      1.2rem;
  color: rgba(255, 255, 255, 0.9);
   margin-bottom  :2.5rem;
   line-height: 1.6;
}

.cta-button-large


{

  display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
  color: #667eea;
    text-decoration :none;
   border-radius: 50px;
   font-weight: 700;
   font-size   : 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.contact-section {
	background: #f8f9fa;
   padding: 5rem 2rem;
}

.contact-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-wrapper h2
{
    font-size :     2.5rem;

    text-align: center;

    margin-bottom: 3rem;

   color: #1a1a1a;
}

.contact-form {
    background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
   margin-bottom: 2rem;
}

.form-group label
	{
      display: block;
    margin-bottom: 0.8rem;
	 font-weight: 600;
     color  :   #1a1a1a;
   font-size: 1rem;


}

.form-group input,
.form-group select,
.form-group textarea {
               width  : 100%;
  padding: 0.9rem 1.2rem;
   -webkit-border-radius    :    8px;
	border: 2px solid #e0e0e0;
  border-radius: 8px;
    font-size   :  1rem;
   font-family: inherit;
   transition: all 0.3s ease;
   background: #fafafa; 

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus		{
         outline: none;
  border-color: #667eea;
   background:white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
  resize: vertical;
	min-height: 120px;


}

.submit-btn {
          width: 100%;
    padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
  border    :     none;
                    border-radius: 8px;
   font-weight: 700;
   font-size   :      1.1rem;
   cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);

}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
} 

.footer {
    background   :#1a1a1a;
    color: #e0e0e0;
	 padding  :      4rem 2rem 2rem;
}

.footer-wrapper {
   max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
}  

.footer-section h3 {
      color: white;
    margin-bottom: 1.5rem;
  font-size:       1.2rem;
     }

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #e0e0e0;
   text-decoration: none;
               transition: all 0.3s ease;
}

.footer-section a:hover {

      color: #667eea;
  transform: translateX(5px);
}

.footer-section p {
      color  :       #e0e0e0;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid #333;
	   padding-top: 2rem;
	    text-align: center;
	    color: #999;
}@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 2rem;
        gap: 1rem;
    }

    .navbar-menu.active {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }

    .hero-section {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .experience-container {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section a {
        display: inline-block;
    }

    .contact-form {
        padding: 2rem;
    }

    .cta-wrapper h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .about-text h2,
    .services-preview h2,
    .experience-section h2,
    .image-showcase h2,
    .contact-wrapper h2,
    .cta-wrapper h2 {
        font-size: 1.8rem;
    }

    .navbar-wrapper {
        flex-wrap: wrap;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 5rem 2rem;
   text-align: center;
   color: white;
}

.services-hero-content h1 {
                    font-size: 3rem;
   margin-bottom: 1rem;
  font-weight: 800;
     }

.services-hero-content p {
    font-size: 1.2rem;
   opacity: 0.95;
    line-height   :   1.6;
}

.services-detailed {

			padding: 5rem 2rem;
    background: #fff;

}

.services-container {


    max-width: 1200px;
  margin    :0 auto;

}  

.service-detail-card {
  display: flex;
   align-items: center;
  gap  :4rem;
  margin-bottom: 5rem;
	animation :    fadeInUp 0.8s ease;
}

.service-detail-card.alternate {
	flex-direction   :    row-reverse;
}

.service-detail-image {
  -webkit-flex: 0 0 45%;
  flex: 0 0 45%;
   -ms-flex: 0 0 45%;
}



.detail-img {
    width  : 100%;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
   object-fit: cover;
   height: 400px;
}

.service-detail-content {
    flex: 0 0 55%;
}

.service-detail-content h2		{
      font-size: 2.2rem;
          margin-bottom: 1.5rem;
       color: #1a1a1a;
   font-weight: 700;


}


.service-detail-content p {

    line-height: 1.8; 
  color: #555; 
    margin-bottom: 2rem; 
    font-size: 1.05rem;
}

.service-features {
    grid-template-columns: 1fr 1fr;
   margin: 2rem 0;
    display: grid;
   gap: 1.5rem;
}

.feature-item {
   display: flex;
   align-items: flex-start;
	 gap: 1rem;
}

.feature-icon {
    flex-shrink: 0; 
   width: 40px; 
	height     :40px; 
                    display  :    flex; 
	 align-items: center; 
    justify-content: center;
}

.feature-icon img {
   width: 28px;
   height: 28px;
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}


.feature-item span
	{
    color: #333;
    font-size   :1rem;
    font-weight: 500;
   line-height   :      1.4; 
	
}

.service-pricing  
  {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
	padding: 1.5rem;
   border-radius: 12px;
    margin-top: 2rem;
    border-left:       4px solid #667eea;
}

.price    {
   font-size:       1.5rem;
   color   : #667eea;
   font-weight: 700;
   margin-bottom: 0.5rem;
}

.duration{
  color: #666;
    font-size: 0.95rem;
}

.service-comparison {
        padding: 5rem 2rem;
    background: #f8f9fa;
}

.service-comparison h2{
  margin-bottom    :3rem;
    color: #1a1a1a;
  font-size: 2.5rem;
    text-align: center;
}

.comparison-table {
	max-width: 1000px;
	 margin: 0 auto;
   overflow-x: auto;
}

table	{
   width     :      100%;
    border-collapse: collapse;
    background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); 
	
}

thead 
 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		 color: white;
}

th {
   padding    :   1.5rem;
    text-align: left;
    font-weight   :       700;
	font-size: 1rem;
}

td {
    padding     :   1.5rem;
  border-top: 1px solid #e0e0e0;
    font-size: 0.95rem;
  color: #555; 
	
}

tbody tr:hover {
  background: #f8f9fa;


}

.table-check {
    width:        24px;
    height: 24px;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2));
}

.testimonials-section {
 padding: 5rem 2rem;
         background: #fff;
}

.testimonials-section h2 {
  font-size : 2.5rem;
   text-align: center;
    color: #1a1a1a;
   margin-bottom   :   3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
		gap: 2.5rem;
  max-width: 1200px;
   margin: 0 auto;
} 

.testimonial-card {
  background:      white;
  padding :2.5rem;
         border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
   border-top: 4px solid #667eea;
    transition  : all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
   margin-bottom: 1.5rem;
}

.testimonial-stars {
   display: flex;
  gap :   0.3rem;
}

.star {
   font-size: 1.3rem;
	 color: #ffc107;
}

.testimonial-text {
   font-size: 1rem;

    color: #555;

   line-height: 1.8;

      margin-bottom: 1.5rem;

   font-style: italic;
}

.testimonial-author {
    color: #667eea;
   font-weight: 600;
  font-size: 0.95rem;
}

.faq-section {
	    padding: 5rem 2rem;
    background: #f8f9fa; 
	
     }

.faq-section h2 {
   font-size: 2.5rem;
			text-align: center;
         margin-bottom: 3rem;
  color:   #1a1a1a;
}

.faq-container {
   max-width: 900px;
   margin  :      0 auto; 
	
}

.faq-item		{
  background: white;
   margin-bottom  :   1.5rem;
  border-radius: 12px;
	overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {


  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);


}

.faq-question {
    padding   :     1.8rem;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  cursor: pointer;
               font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
   display: flex;
  justify-content: space-between;
    align-items: center;
	 border-left: 4px solid #667eea;
}

.faq-answer {
  padding: 1.8rem;
    color   :   #555;
   line-height: 1.8;
  display: none;
}

.faq-item.active .faq-answer {
   display: block;
	
}

.cta-section-services {
    padding: 6rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   text-align: center;
}

.cta-section-services .cta-wrapper h2 {

	    color: white;
    font-size: 2.5rem;
				 margin-bottom: 1rem;
}

.cta-section-services .cta-wrapper p     {
  color: rgba(255, 255, 255, 0.9);
   font-size: 1.1rem;
    margin-bottom   :2.5rem;
}

.thankyou-section  
  {
  min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
	justify-content: center;
	 padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

.thankyou-container {
    max-width: 700px;
  background: white;
   padding: 4rem;
   border-radius     :    20px;
	text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  animation: slideInUp 0.6s ease;}

.thankyou-icon

{
    width:   100px;
  height: 100px;
	margin: 0 auto 2rem;
   display: flex;
	 align-items: center;
   justify-content: center; 
	
}

.thankyou-icon img {
    width: 100%;
    height: 100%;
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.4));
}

.thankyou-container h1    {

	    font-size: 2.8rem;
   color: #1a1a1a;
  margin-bottom :       1rem;
  font-weight: 800;

}

.thankyou-message  
  {
    font-size: 1.3rem;
  color: #667eea;
  margin-bottom: 2rem;
    font-weight     : 600;
}

.thankyou-details     {
    background    :  #f8f9fa;

	   padding: 2rem;

	     border-radius: 12px;

	    margin-bottom: 2.5rem;

	  border-left: 4px solid #667eea;
}

.thankyou-details p {
      color: #555;
  line-height: 1.8;
	margin-bottom: 1rem;
  font-size: 1rem;

}

.thankyou-details p:last-child {
   margin-bottom   :        0;
}

.thankyou-next-steps {
   margin: 3rem 0;
   text-align: left;
}

.thankyou-next-steps h2   {
  font-size: 1.8rem;
    color: #1a1a1a;
  margin-bottom: 2rem;
    text-align: center;

}

.steps-list {
  flex-direction: column;
   gap: 1.5rem;
    display   :      flex;
}

.step-item {
     display: flex;
   gap: 1.5rem;
	align-items: flex-start;

}


.step-number

{
  flex-shrink: 0;
  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-weight: 700;
    font-size: 1.3rem;
}

.step-content h3 {
   color:     #1a1a1a;
    font-size: 1.1rem;
  margin-bottom: 0.5rem;

}

.step-content p


{
    color: #666;
   font-size: 0.95rem;
  line-height: 1.6; 
	
}

.thankyou-cta {
	 margin: 3rem 0;
}

.thankyou-cta p {
   color: #555;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.cta-button {
   display: inline-block;
	padding     :     1rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
  text-decoration: none;
  border-radius  :    50px;
   font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
   margin-right: 1rem;
  margin-bottom: 1rem;
}

.cta-button:hover {
     transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.cta-button-secondary   {
   display: inline-block;
   padding: 1rem 2.5rem;
	background: white;
  color   :  #667eea;
  text-decoration: none;
	 border-radius: 50px;
    font-weight: 600;
	 border: 2px solid #667eea;
   transition   :     all 0.3s ease;
          margin-bottom :     1rem;
}

.cta-button-secondary:hover {
  background: #667eea;
    color: white;

	}

.thankyou-contact-info  
  {
       margin-top: 3rem;
   padding-top: 2rem;
          border-top: 1px solid #e0e0e0;


}

.thankyou-contact-info h3 {

    color: #1a1a1a;
	font-size   :  1.2rem;
  margin-bottom: 1rem;
}

.thankyou-contact-info p {


   color   : #555;
    line-height     :   1.8;
       font-size: 0.95rem;
	}

.thankyou-contact-info a {
  color    :      #667eea;
 text-decoration   :none;
   font-weight: 600;
   transition: all 0.3s ease;
}

.thankyou-contact-info a:hover {
   text-decoration :     underline;
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .service-detail-card {
        flex-direction: column !important;
        gap: 2rem;
    }

    .service-detail-image,
    .service-detail-content {
        flex: 1 !important;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .detail-img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail-card {
        margin-bottom: 3rem;
    }

    .service-detail-content h2 {
        font-size: 1.6rem;
    }

    .detail-img {
        height: 250px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 1rem;
    }

    .cta-button {
        margin-right: 0.5rem;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .steps-list {
        gap: 1rem;
    }

    .step-item {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.3rem;
    }

    .service-pricing {
        padding: 1rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    table {
        font-size: 0.75rem;
    }

    .cta-button,
    .cta-button-secondary {
        display: block;
        margin: 0.5rem 0;
    }

    .thankyou-cta p {
        margin-bottom: 1rem;
    }

    .thankyou-next-steps h2 {
        font-size: 1.4rem;
    }
}.policySection {
  padding: 80px 2rem;
    background: #f8f9fa;
  min-height: calc(100vh - 400px);
}

.policyContainer {
    max-width:900px;
	 margin: 0 auto;
	 text-align : left;
  animation: fadeInUp 0.8s ease;
}

.policyContainer h1 {
  font-size: 3rem;
	 color: #1a1a1a;
                    margin-bottom: 2rem;
          font-weight: 800;
    text-align :center;
}

.policyContainer h2 {
    font-size: 1.8rem;
   color: #1a1a1a;
	margin-bottom: 1.2rem;
   margin-top: 2.5rem;
  font-weight: 700;
    border-left: 4px solid #667eea;
        padding-left: 1.5rem;
	
}


.policyContainer p {
  color: #555;
        margin-bottom: 1.5rem;
    line-height: 1.8;
                    font-size: 1.05rem;
   text-align: justify;
}

.policyContainer a {
   color: #667eea;
	   text-decoration: none;
	   transition: all 0.3s ease;
}

.policyContainer a:hover {
  color: #764ba2;
	text-decoration: underline;
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 1rem;
        margin-bottom: 1.3rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
        min-height: auto;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.8rem;
        margin-bottom: 0.9rem;
        padding-left: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
        border-left-width: 3px;
        padding-left: 1rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
}