* {
    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: #2d3748;
	background-color: #ffffff;
}

.navbar-top {
    position: sticky;
	top: 0;
  background: linear-gradient(135deg, #1a365d 0%, #2d5a8c 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
   padding     :       0.8rem 0;
}

.nav-container {
 max-width: 1280px;
   margin: 0 auto;
   padding: 0 1.5rem;
	 display: flex;
   justify-content :        space-between;
   align-items: center;
}

.nav-brand {
   display: flex;
  align-items: center;
}

.navbar-logo {
   height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu


{
    display: flex;
  list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #ffffff; 
	   text-decoration: none; 
		font-weight  :   500; 
	    font-size: 0.95rem; 
	    transition: all 0.3s ease; 
	  position: relative;
}

.nav-menu a:hover {
    color: #63b3ed;
}

.nav-menu a::after {
  content: '';
  position :     absolute;
  bottom: -5px;
    left:       0;
    width: 0;
    height  :    2px;
    background-color: #63b3ed;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
   width: 100%;

}

.nav-cta    {
  background-color: #f6ad55 !important;
  color: #1a365d !important;
	padding: 0.6rem 1.2rem !important;
   border-radius: 6px;
    font-weight   :600;
}

.nav-cta:hover {

	    background-color: #ed8936 !important;
      color:    #ffffff !important;
     }

.nav-cta::after {
          display: none !important;
}

.nav-toggle {
    display: none;
  flex-direction: column;
	 cursor   : pointer;
   gap: 5px;
}

.nav-toggle span {
  width: 25px;
    height: 3px;
   background-color: #ffffff;
    border-radius: 3px;
  transition :      all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {

	  transform: rotate(45deg) translate(8px, 8px); 


}

.nav-toggle.active span:nth-child(2) {


  opacity: 0;
	}  

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {

  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   					padding: 5rem 1.5rem;
   	 position: relative;
       overflow: hidden;
	}

.hero-section::before {


  content: ''; 
	    position: absolute; 
		top   :        -50%; 
		right     :    -10%; 
	    width: 600px; 
	    height  :     600px; 
	  background: radial-gradient(circle, rgba(99, 179, 237, 0.15) 0%, transparent 70%); 
	   border-radius: 50%;
	}

.hero-content {
   max-width: 900px;
   margin: 0 auto;
	position: relative;
  z-index: 1;
    text-align: center; 
	
}

.hero-content h1 {
   font-size   :       3rem;
   font-weight: 700;
   color: #1a365d;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    max-width: 700px;
    margin-left: auto;
   font-size: 1.15rem;
   color: #4a5568;
   margin-bottom: 2rem;
  margin-right: auto;
}

.cta-button {
   display: inline-block; 
	    background-color: #f6ad55; 
	  color: #1a365d; 
	  padding: 1rem 2rem; 
	 border-radius: 8px; 
	       text-decoration: none; 
		font-weight: 600; 
	   font-size: 1rem; 
		transition: all 0.3s ease; 
	    border : 2px solid #f6ad55; 
	  cursor: pointer;
}

.cta-button:hover   {
   background-color: transparent;
    color: #f6ad55;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(246, 173, 85, 0.3);
}

.cta-button.primary {
   background-color: #2d5a8c;
    color: #ffffff;
    border-color: #2d5a8c;
}

.cta-button.primary:hover {

		color: #2d5a8c;
   background-color: transparent;


}

.hero-accent     {
  position: absolute;

   bottom: 0;

  right: 0;

	width: 300px;

    height: 300px;

  background: linear-gradient(135deg, #63b3ed 0%, #4299e1 100%);

  opacity: 0.1;

   border-radius: 50% 0 0 0;
}

.problem-section

{
   padding: 4rem 1.5rem;
	background-color: #f7fafc;
}

.problem-container {
	max-width: 1200px;
    margin: 0 auto;
}

.problem-section h2,
.solution-section h2,
.services-preview h2,
.testimonial-section h2,
.image-showcase h2,
.cta-section h2,
.contact-section h2 {
     font-size   :   2.2rem;
  font-weight: 700;
  color: #1a365d;
    margin-bottom: 3rem;
	 text-align: center;
	}

.challenges-grid  {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;

}

.challenge-card
{
   background     :     #ffffff;
    padding: 2rem;
   border-radius: 8px;
   border-left: 4px solid #2d5a8c;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition   : transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.challenge-card h3 {
    font-size  :1.2rem;
    color: #2d5a8c;
    margin-bottom: 0.8rem;
}

.challenge-card p {
  font-size: 0.95rem;
    color :     #718096;
	 line-height: 1.6;
}

.solution-section {
   padding    :      4rem 1.5rem;
   background:#ffffff;
}

.solution-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
	 grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
}

.solution-text h2 {
	text-align: left;
    margin-bottom: 1.5rem;
}

.solution-text p {
   font-size: 1rem;
   color: #4a5568;
  margin-bottom: 1.5rem;
   line-height: 1.8;
} 

.solution-image {

	  width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);



}

.services-preview {
  padding   :  4rem 1.5rem;
  background: linear-gradient(135deg, #edf2f7 0%, #f7fafc 100%);
}

.services-preview {
	max-width: 1200px;
	margin: 0 auto;

}  

.services-row {
  display     :      grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap   : 2rem;
   max-width:  1200px;
   margin: 0 auto;
}

.service-item {
   background: #ffffff;
    padding  :   2.5rem 2rem;
    border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
	position: relative;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-number {
    font-size:     2.5rem;
   font-weight: 700;
	 color: #cbd5e0;
  margin-bottom :  1rem;
}

.service-item h3 {
   font-size: 1.3rem;
    color  :       #2d5a8c;
	margin-bottom: 1rem;
}

.service-item p {
  font-size: 0.95rem;
  color: #718096;
    line-height: 1.7;
}

.testimonial-section {
 padding: 4rem 1.5rem;
   background: #1a365d;
  color: #ffffff;
}

.testimonial-section h2 {
   color: #ffffff;
  margin-bottom: 3rem;
}

.testimonials-container     {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
    max-width: 1200px;
	 margin: 0 auto;
}

.testimonial-card	{
  background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
   border-radius: 8px;
  border-left: 3px solid #f6ad55;
  backdrop-filter: blur(10px);
}

.testimonial-card p {
   font-size: 1rem;
  margin-bottom: 1rem;
    line-height: 1.8;
  font-style: italic;
	}

.testimonial-author
	{
   font-size: 0.9rem;
	 color: #cbd5e0;
	
}

.image-showcase {
   padding: 4rem 1.5rem;
	   background: #ffffff;
}

.showcase-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
          max-width: 1200px;
   margin: 0 auto;
}

.showcase-img {
    width: 100%;
        height: 250px;
   object-fit: cover;
  border-radius   :8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.showcase-img:hover {
  transform: scale(1.05);
}

.cta-section {
	  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #2d5a8c 0%, #1a365d 100%);
   color: #ffffff;
    text-align: center;
	}

.cta-wrapper {
           max-width     :  900px;
  margin: 0 auto;



}


.cta-section h2 {
  color: #ffffff;
		 margin-bottom: 1.5rem;

}

.cta-section p {
  color: #cbd5e0;
	margin-bottom :      2rem;
    line-height: 1.8;
	font-size: 1.1rem;
}

.contact-section {
	padding: 4rem 1.5rem;
    background: #f7fafc;
}

.contact-container {
	 max-width   :  700px;
	 margin: 0 auto;
}

.contact-subtitle {
  text-align: center;
      color: #4a5568;
      font-size: 1.05rem;
       margin-bottom: 2.5rem;
}

.contact-form
	{
  background: #ffffff;
    padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.8rem;
          display: flex;
   flex-direction: column;
	
}

.form-group label {
   font-weight: 600;
   color   :#2d5a8c;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {

		padding: 0.9rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
      font-family: inherit;
          font-size  :     1rem;
    transition: all 0.3s ease;
	background-color: #f7fafc;
	}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
   border-color: #2d5a8c;
	background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(45, 90, 140, 0.1);
}

.form-group textarea {
         resize: vertical;

	  min-height: 120px;
}

.submit-button  {

	  width: 100%;
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
    color: #ffffff;
 padding: 1rem;
   border: none;
  border-radius: 6px;
   font-weight: 600;
    font-size: 1rem;
	 cursor: pointer;
               transition: all 0.3s ease;
	}

.submit-button:hover {
     transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246, 173, 85, 0.4);

}

.submit-button:active {
  transform: translateY(0);
}

.main-footer {
      background: #1a365d;
  color: #cbd5e0;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-container {
   max-width:     1200px;
        margin: 0 auto;
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #ffffff;
   margin-bottom: 1rem;
   font-size: 1.1rem;
}

.footer-logo-img {
  height: 50px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-links{
   list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
   color: #cbd5e0;
  text-decoration: none;
   transition: color 0.3s ease;
}

.footer-links a:hover {
   color    : #f6ad55;
}

.footer-address {
  font-size: 0.95rem;
   line-height     :1.8;
   margin-bottom: 1rem;
}

.footer-phone {
   font-weight: 600;
  color: #f6ad55;
   font-size: 1rem;
}

.footer-section p {
  font-size: 0.95rem;
   line-height: 1.7;
}

.footer-bottom {
	    max-width     :   1200px;
   margin: 0 auto;
   padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align    :        center;
  color: #a0aec0;
  font-size: 0.9rem;
	}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #1a365d;
        padding: 1.5rem;
        gap: 0;
        z-index: 999;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .problem-section h2,
    .solution-section h2,
    .services-preview h2,
    .testimonial-section h2,
    .image-showcase h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .solution-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .services-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-number {
        font-size: 2rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }
}.policySection {
   background: #f8f9fa;
    padding: 80px 2rem;
}

.policyContainer {
     max-width :      800px;
	margin    :        0 auto;
  text-align: left;
}

.policyContainer h2 {
  font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
   font-weight: 700;
}

.policyContainer p {
  color: #7f8c8d;
         font-size: 1.1rem;
  line-height: 1.7;
   margin-bottom: 1.5rem; 
	
}

@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #1a365d 0%, #2d5a8c 100%);
  padding: 4rem 1.5rem;
    color: #ffffff;
  text-align:       center;
}

.services-hero-content h1 {
    line-height: 1.2;
    font-size: 2.8rem;
   margin-bottom: 1rem;
  font-weight: 700;
}

.services-hero-subtitle {
   color :    #cbd5e0;
    line-height :      1.7;
   font-size: 1.2rem;
    max-width: 700px;
	margin: 0 auto;
}

.services-navigation {
  background: #ffffff;
  padding: 2rem 1.5rem;
   border-bottom: 1px solid #e2e8f0;
   position: sticky;
    top: 70px;
   z-index: 100;
}

.nav-services-list	{
   max-width: 1200px;
          margin: 0 auto;
   display: flex;
  gap: 1rem;
    flex-wrap: wrap;
   justify-content: center;
}

.service-nav-link {
   padding: 0.8rem 1.5rem;
  background: #f7fafc;
    color: #2d5a8c;
    text-decoration: none;
  border-radius: 6px;
    font-weight: 600;
   transition: all 0.3s ease;
  border: 2px solid transparent;
   cursor: pointer;
}

.service-nav-link:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

.service-nav-link.active {
  background: #2d5a8c;
   color     :#ffffff;
  border-color: #f6ad55;
}

.service-detail-section {
   padding     :       4rem 1.5rem;

	  background: #ffffff;

	   border-bottom  : 1px solid #e2e8f0;
}

.service-detail-section.alternate


{
   background: #f7fafc;


}

.service-detail-wrapper {
  margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
  max-width: 1200px;
  align-items: flex-start;


}

.service-detail-section.alternate .service-detail-wrapper {

   grid-template-columns: 1fr 1fr;

}

.service-detail-section.alternate .service-detail-image {
   order: -1;
}


.service-detail-content h2 {
   font-size: 2rem;
	 color: #1a365d;
   margin-bottom: 1rem;
  font-weight  :   700;
}

.service-intro {
   font-size  :        1.1rem;
  color: #4a5568;
    font-style: italic;
   margin-bottom: 2rem;
   line-height     :   1.8;
}

.service-detail-content h3 {
	font-size : 1.2rem;
    color: #2d5a8c;
        margin-top: 1.8rem;
   margin-bottom:       1rem;
  font-weight: 600;
}

.service-list {
    list-style: none;
               margin-bottom: 1.5rem;
}

.service-list li {
    padding: 0.6rem 0;
  padding-left: 1.5rem;
    color: #4a5568;
	position: relative;
	line-height:        1.6;
}

.service-list li::before {
  content: '▸';
  position: absolute;
   left : 0;
  color: #f6ad55;
    font-weight: bold; 
	
}

.service-detail-content p {
    color: #4a5568;
       line-height: 1.8;
  margin-bottom: 1rem;
      font-size: 1rem;}

.service-detail-image {
	  width: 100%;
  height: auto;
   border-radius: 8px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
               transition    : transform 0.3s ease;
}

.service-detail-image:hover    {
  transform: scale(1.02);
}

.service-comparison-section {
   background :       #ffffff;

    padding: 4rem 1.5rem;
}

.service-comparison-section h2 {

	text-align: center;
     font-size: 2.2rem;
  color: #1a365d;
   margin-bottom: 2.5rem;
    font-weight   :700;
}

.comparison-table {
  max-width: 1200px;
    margin: 0 auto;
   display     :        grid;
    gap: 0;
   border-radius: 8px;
      overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-row {
      gap: 0;
  grid-template-columns: repeat(5, 1fr);
    display: grid;
}

.comparison-cell {
    padding: 1.2rem;
   text-align: center;
   font-size: 0.95rem;
	line-height: 1.5;
}

.comparison-row .comparison-cell:first-child {
    text-align: left;
}

.comparison-row:first-child .comparison-cell.header {
   background: #1a365d;
  color: #ffffff;
   font-weight: 700;
  font-size: 1rem;
}

.comparison-row:nth-child(even) {
    background: #f7fafc;
}

.comparison-row:nth-child(odd) .comparison-cell {

	background: #ffffff;}

.comparison-row:not(:first-child) .comparison-cell {
   border-bottom:    1px solid #e2e8f0;
    color :  #4a5568;
}

.process-section		{
   padding     :    4rem 1.5rem;
  background: linear-gradient(135deg, #edf2f7 0%, #f7fafc 100%);
}

.process-section h2 {
   text-align: center;
   font-size: 2.2rem;
    color: #1a365d;
	margin-bottom: 3rem;
    font-weight: 700;
	
}

.process-steps {
	max-width: 1200px;
  margin: 0 auto;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 2rem;
}

.process-step {
   background: #ffffff;
    padding: 2rem;
  border-radius: 8px;
	text-align    :     center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
		 transition: all 0.3s ease;
	position: relative;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.process-number {
   width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
  color: #ffffff;
  font-size: 1.8rem;
   font-weight: 700;
 display  :    flex;
    align-items: center;
   justify-content  :        center;
   border-radius  :50%;
   margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1.1rem;
  color: #2d5a8c;
         margin-bottom  :  0.8rem;
    font-weight: 600;
}

.process-step p {

    color: #718096;
  font-size: 0.95rem;
  line-height: 1.6;
	}

.faq-section 
 {
   padding: 4rem 1.5rem;
  background     :       #ffffff; 

}

.faq-section h2 {
    text-align: center;
  font-size: 2.2rem;
  color: #1a365d;
   margin-bottom   :3rem;
  font-weight: 700;
}

.faq-container {
   max-width    :      900px;
	margin: 0 auto;
}

.faq-item {

	  background: #f7fafc;
   padding: 2rem;
  margin-bottom :       1.5rem;
    border-radius     :      8px;
  border-left: 4px solid #2d5a8c;
   cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.faq-question {
    font-size: 1.1rem;
  color:      #1a365d;
  margin: 0;
   font-weight: 600;
}

.faq-answer   {
    color: #4a5568; 
    font-size: 0.95rem; 
  margin-top: 1rem; 
   line-height: 1.7;
}

.cta-bottom-section {
   padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #2d5a8c 0%, #1a365d 100%);
    color: #ffffff;
  text-align: center;
}  

.cta-bottom-wrapper    {
    max-width: 800px;
   margin  :0 auto;
}

.cta-bottom-section h2 {
  color: #ffffff; 
   font-size: 2rem; 
   margin-bottom: 1rem;


}

.cta-bottom-section p {
	    font-size: 1.1rem;
    color: #cbd5e0;
 margin-bottom: 2rem;
    line-height: 1.7;
}

.thankyou-section {
	padding: 4rem 1.5rem; 
	  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); 
	  min-height: 80vh; 
	   display: flex; 
	  align-items: center; 
	  justify-content: center;


}

.thankyou-container {
   max-width: 700px; 
	   background: #ffffff; 
		padding: 3rem; 
	    border-radius: 12px; 
	  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); 
	    text-align  :  center;
}

.thankyou-icon {
  margin-bottom: 2rem;
}

.success-circle {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
    border-radius: 50%;
  margin: 0 auto;
   display: flex;
   align-items: center;
   justify-content: center;
  position: relative;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.checkmark {

	    width: 50px;
    height: 30px;
  border: 3px solid #ffffff;
   border-top    :        none;
  border-right: none;
  transform: rotate(-45deg);
  animation: checkmark 0.6s ease-in-out 0.3s both;
	} @keyframes checkmark {
    from {
        opacity: 0;
        transform: rotate(-45deg) scale(0);
    }
    to {
        opacity: 1;
        transform: rotate(-45deg) scale(1);
    }
}.thankyou-title  
  {
   font-size  : 2.5rem;
  color: #1a365d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thankyou-message {
    font-size: 1.1rem;
  color: #4a5568;
   margin-bottom: 2.5rem;
         line-height: 1.8;
	}

.thankyou-details {


                    background: #f7fafc;
  padding: 2rem;
   border-radius: 8px;
    margin-bottom  : 2rem;
  text-align: left;
     }

.thankyou-details h2
	{
    font-size: 1.5rem;
    color: #1a365d;
   margin-bottom: 1.5rem;
 text-align     : center;
}

.details-grid	{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap     :   1.5rem;

}

.detail-item {
   text-align: center;}

.detail-number {
   width: 50px;
    height: 50px;
  background: #2d5a8c;
   color    :       #ffffff;
  font-weight: 700;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
   align-items: center;
  justify-content     :center;
	 margin: 0 auto 0.8rem;


}

.detail-item h3 {
  font-size: 1rem;
    color :#2d5a8c;
   margin-bottom: 0.5rem;
  font-weight: 600;
}

.detail-item p {
    font-size: 0.85rem;
	 color     : #718096;
   line-height: 1.5;
}

.thankyou-info-box {
   -webkit-border-radius: 8px;
   background: #edf2f7;
  padding: 2rem;
                    border-radius: 8px;
  -moz-border-radius: 8px;
   margin-bottom: 2rem;
    border-left: 4px solid #2d5a8c;
}

.thankyou-info-box h3 {
    color   :     #1a365d;
    margin-bottom: 1.5rem;
	 font-size: 1.2rem; 
	
}

.info-qa {
  text-align: left;
}

.qa-item {
    margin-bottom: 1.5rem;
}

.qa-item:last-child {
  margin-bottom: 0;
}

.qa-question

{
  font-weight: 600;
	  color: #2d5a8c;
	          margin-bottom: 0.5rem;
	    font-size: 0.95rem;
}

.qa-answer	{
  color:      #4a5568;
    font-size: 0.9rem;
   line-height: 1.6;
     margin: 0;
}

.thankyou-actions 
 {
  display: flex;
       gap: 1rem;
   margin-bottom: 2rem;
    flex-wrap  :    wrap;
    justify-content: center;
}

.action-button {
	 display: inline-block;
   padding: 0.9rem 1.8rem;
   border-radius: 6px;
   text-decoration: none;
    font-weight: 600;
   font-size: 1rem;
	 transition: all 0.3s ease;
   cursor: pointer;
}

.action-button.primary {
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
         color: #ffffff;
}

.action-button.primary:hover {
     transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(246, 173, 85, 0.3);


}

.action-button.secondary {

	  background: #2d5a8c;
    color: #ffffff;
	 border: 2px solid #2d5a8c;

}

.action-button.secondary:hover {
	 background: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45, 90, 140, 0.3);
}

.thankyou-contact-box {
    background: #1a365d;
   color: #ffffff;
  padding: 2rem;
    border-radius: 8px;
}

.thankyou-contact-box h3   {


	color: #ffffff;
  margin-bottom: 1rem;
    font-size: 1.1rem;


}

.thankyou-contact-box p {


	 color: #cbd5e0;
  margin-bottom: 0.8rem;
	font-size: 0.95rem;}

.contact-phone {
		 font-weight :700;

    font-size: 1.1rem;

  color: #f6ad55;}

.contact-address {
   font-size: 0.85rem;
}

.testimonial-preview-section {
   padding: 3rem 1.5rem;
    background: #f7fafc;
}

.testimonial-preview-section h2 {
  font-size: 2rem;
   text-align: center;
	color: #1a365d;
	 font-weight: 700;
  margin-bottom: 2.5rem;
}

.testimonial-preview-grid {
    max-width: 1200px;
   margin: 0 auto;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap  :       2rem;
}

.testimonial-preview-card {
    background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
   transition: all 0.3s ease;
    border-left: 3px solid #f6ad55;
}

.testimonial-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-preview-card p {
	   color: #4a5568; 
	   font-style: italic; 
	      margin-bottom: 1rem; 
		 line-height: 1.7;

}

.testimonial-preview-author {
  color: #718096;
    font-size: 0.9rem;
}@media (max-width: 1024px) {
    .service-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-section.alternate .service-detail-image {
        order: 0;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        border-bottom: 1px solid #e2e8f0;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-navigation {
        top: 60px;
    }

    .nav-services-list {
        gap: 0.5rem;
    }

    .service-nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .service-detail-content h2 {
        font-size: 1.6rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-title {
        font-size: 2rem;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .thankyou-details {
        padding: 1.5rem;
    }
}