* {
  margin: 0;
   box-sizing: border-box;
  padding: 0;
}

:root {
    --primary-color: #1a3a52;
    --accent-color: #2e7d9a;
    --light-bg: #f5f7fa;
    --text-dark: #1a1f2e;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;

    line-height: 1.6;

  color: var(--text-dark);

	 background-color: #ffffff;
}

.nav-main {
  background: var(--primary-color);
    padding: 0.75rem 0;
   position: sticky;
    top  :  0;
   z-index: 999;
  box-shadow: var(--shadow-sm);
}

.nav-container  
  {
  max-width: 1200px;
  margin: 0 auto;
    padding: 0 1.5rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.nav-logo-wrapper {

	  flex: 0 0 auto;
     }

.nav-logo {

   height: 50px;
    width: auto;
  display: block;
}

.nav-links {
    display     :flex;
    list-style: none;
    gap: 2.5rem;
   align-items: center;
}



.nav-links a {
   color    :    #ffffff;
  -moz-transition   :      color 0.3s ease;
    text-decoration: none;
  -webkit-transition: color 0.3s ease;
    font-weight: 500;
    -o-transition: color 0.3s ease;
  font-size: 0.95rem;
					transition    :       color 0.3s ease;
    position: relative;
}



.nav-links a:hover {
    color: #a0d4e8;
}

.nav-contact-btn {
  background: var(--accent-color);
  padding :   0.6rem 1.5rem;
    border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-contact-btn:hover {
  color     :        #ffffff;
   background: #24627a;
}

.nav-burger{
  display: none;
  flex-direction     :      column;
      background: none;
   border :    none;
    cursor: pointer;
          gap: 6px;
  padding: 8px;

}

.nav-burger span {
   width: 25px;
	height :   3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;

}

.nav-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}  

.nav-burger.active span:nth-child(2) {
  opacity   :        0;
}

.nav-burger.active span:nth-child(3)

{
  transform: rotate(-45deg) translate(7px, -7px);
}@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--primary-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .nav-links.active {
        max-height: 300px;
        padding: 1rem 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-contact-btn {
        margin: 0.5rem 1rem;
        width: calc(100% - 2rem);
    }
}.header-section {
          display: grid;
  grid-template-columns    :       1fr 1fr;
     gap: 3rem;
    align-items: center;
  max-width: 1200px;
  margin     :   0 auto;
	padding: 4rem 1.5rem;
	
}

.header-content h1 {
  font-size   : 2.8rem;
  line-height:       1.2;
    margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.header-subtitle {
    font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
  background: var(--accent-color);
   color: #ffffff;
    padding: 0.9rem 2.2rem;
   border-radius: 8px;
     text-decoration: none;
                    font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.cta-button:hover    {
   background: transparent;
  color: var(--accent-color);
}

.header-image img {
   width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
	
}@media (max-width: 1024px) {
    .header-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .header-content h1 {
        font-size: 2.2rem;
    }
}.intro-section		{
  background: var(--light-bg);
   padding: 4rem 1.5rem;
}

.intro-content {
    max-width: 1200px;

 margin: 0 auto;
}  

.intro-content h2 {
    font-size: 2.2rem;
   margin-bottom: 3rem;
  text-align: center;
  color: var(--primary-color);
}

.intro-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.intro-card {
	         background: #ffffff;
 padding: 2.5rem;
   border-radius: 10px;
  box-shadow: var(--shadow-sm);
    text-align  :    center;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
     }

.intro-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-icon

{

	  margin-bottom: 1.5rem;
}

.svg-icon {
      width: 50px;
          height    :    50px;
  stroke: var(--accent-color);
   fill: none;
	stroke-width: 1.5;
   stroke-linecap: round;
         stroke-linejoin: round;
    transition: all 0.3s ease;
}

.intro-card:hover .svg-icon	{
  stroke: var(--primary-color);
  filter: drop-shadow(0 0 8px rgba(46, 125, 154, 0.3));
}

.intro-card h3 {
  font-size: 1.3rem;
	margin-bottom     :       0.8rem;
  color: var(--primary-color);
}

.intro-card p {
  color: var(--text-light);
   font-size: 0.95rem;
   line-height: 1.6;
}

.showcase-section {
  max-width: 1200px;

  margin: 0 auto;

    padding: 4rem 1.5rem;
}

.showcase-section h2
	{
       font-size: 2.2rem;
 margin-bottom: 3rem;
    text-align: center;
  color: var(--primary-color);}


.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
	}

.showcase-item {
               position :        relative;
    overflow: hidden;
     border-radius: 12px;
  box-shadow: var(--shadow-md);
	 height: 300px;


}

.showcase-item img {
   width: 100%;
  height: 100%;
  object-fit   :        cover;
    transition: transform 0.4s ease;
}

.showcase-overlay {
  position: absolute;
   top:    0;
    left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 58, 82, 0.85);
       display: flex;
   flex-direction: column;
       justify-content     :     flex-end;
         padding:2rem;
   color    :    #ffffff;
    opacity    :        0;
  transition: opacity 0.4s ease;
}

.showcase-item:hover {
  cursor: pointer;
}

.showcase-item:hover img {
  transform: scale(1.08);
}

.showcase-item:hover .showcase-overlay {
  opacity: 1;
}

.showcase-overlay h3 {
   font-size: 1.5rem;
  margin-bottom    :        0.5rem;


} 

.showcase-overlay p {
    font-size: 0.9rem;

	         opacity: 0.95;
}

#services {
	  background: var(--light-bg);
  padding: 4rem 1.5rem;
	}

.services-section h2 {
   font-size: 2.2rem;
    margin-bottom: 3rem;
 text-align     :     center;
  color: var(--primary-color);
   max-width: 1200px;
  margin-left: auto;
   margin-right: auto;
}

.services-container {
  max-width: 1200px;
	margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;

}

.service-box {
    background: #ffffff;
  padding    :2rem;
  border-radius    :   10px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
     }

.service-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-box h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
    margin-bottom :    1rem;
}

.service-box p  
  {
  color: var(--text-light);
   font-size: 0.95rem;
   line-height:   1.6;
    margin-bottom: 1.5rem;
}

.service-tag {
  display: inline-block;
     background: var(--accent-color);
    color: #ffffff;
     padding: 0.3rem 0.9rem;
       border-radius: 20px;
     font-size: 0.8rem;
       font-weight: 600;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
	padding: 4rem 1.5rem;
    text-align: center;
}

.cta-wrapper {
    max-width: 700px;
   margin: 0 auto;
   color : #ffffff;
}

.cta-wrapper h2 {
    font-size: 2.4rem;

  margin-bottom: 1.5rem;
}

.cta-wrapper p {
   font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.cta-button-large {
     display: inline-block;
    background: #ffffff;
  color: var(--primary-color);
       padding: 1rem 2.5rem;
   border-radius: 8px;
  text-decoration: none;
   font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  border: 2px solid #ffffff;
}

.cta-button-large:hover {
	 background: transparent;
  color    :  #ffffff;
}

#contact     {
    max-width: 1200px;
   margin: 0 auto;
  padding: 4rem 1.5rem; 
	
}

.contact-section h2 {
    font-size: 2.2rem;
	 margin-bottom: 3rem;
    text-align : center;
  color: var(--primary-color);
}


.contact-container {
    display: grid;
    gap :       3rem;
   grid-template-columns: 2fr 1fr;
}

.contact-form

{
  background: var(--light-bg);
     padding: 2.5rem;
       border-radius: 10px; 
	
}

.form-group {
    margin-bottom: 1.8rem;
  display: flex;
	 flex-direction : column;
}

.form-group label {
	 font-weight: 600;
  margin-bottom  :0.6rem;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea  
  {
      padding: 0.9rem 1.2rem;
  border: 1px solid var(--border-color);
         border-radius: 6px;
    font-family: inherit;
   font-size :   0.95rem;
   transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline    :  none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(46, 125, 154, 0.1);
}

.form-submit-btn {
  background: var(--accent-color);
        color: #ffffff;
  padding: 1rem 2rem;
	border: none;
  border-radius: 6px;
   font-weight: 600;
	 font-size: 1rem;
          cursor: pointer;
  transition: all 0.3s ease;
	 width: 100%;
}

.form-submit-btn:hover {
  background: #24627a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-info  
  {
    background: #ffffff;
    padding     : 2rem;
    border-radius: 10px;
  border: 1px solid var(--border-color);
     }

.contact-info h3 {
  color: var(--primary-color);
    font-size  :       1.3rem;
  margin-bottom    :     1.5rem;
}

.info-item	{
	margin-bottom: 1.5rem; 
	
}

.info-item strong {
  color: var(--primary-color);
				 display: block;
	margin-bottom: 0.4rem;
}

.info-item p		{
  color: var(--text-light); 
	   font-size   :0.95rem; 
	    line-height: 1.5;
}@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}.footer-main {
  background: var(--primary-color);
  color: #ffffff;
          padding:        3rem 1.5rem 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-section h4 {
   font-size: 1.1rem;
   margin-bottom: 1rem;
}

.footer-logo-wrapper {
	    margin-bottom: 1rem;


}

.footer-logo {
	    height: 40px;
   width: auto;
    display: block;
     }

.footer-links   {
    list-style: none;

}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
  transition: color 0.3s ease;
   font-size: 0.95rem;
}

.footer-links a:hover {
  color:    #ffffff;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size:    0.95rem;
   line-height: 1.6;
}

.footer-bottom {

		 max-width: 1200px;
   margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size   : 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem;
    }

    .intro-content h2,
    .showcase-section h2,
    .services-section h2,
    .cta-wrapper h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .cta-button,
    .cta-button-large {
        width: 100%;
    }
}.services-hero  
  {
  background: linear-gradient(135deg, #1a3a52 0%, #2e7d9a 100%);
    padding: 5rem 1.5rem;
    text-align: center;
  color: #ffffff;
}

.services-hero-content h1 {
    line-height: 1.2;
    font-size :   2.8rem;
    margin-bottom: 1rem;
}

.services-hero-content p {
    opacity: 0.95;
         font-size: 1.3rem;
}

.services-overview {
   max-width   :  1200px;
   margin: 0 auto;
   padding    : 4rem 1.5rem;
}

.overview-container {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap     :        2.5rem;
}

.overview-card {
 background: #f5f7fa;
    padding: 2.5rem;
               border-radius: 10px;
   text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
  border-top: 4px solid #2e7d9a;
}

.overview-card:hover   {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.overview-number {
  font-size: 2.5rem;
   font-weight: 700;
  color: #2e7d9a;
   margin-bottom: 1rem;
  opacity: 0.3;
}

.overview-card h3  {
   margin-bottom: 0.8rem;

    color     :      #1a3a52;

   font-size: 1.3rem;
}

.overview-card p	{
  color: #6b7280;
  font-size    :        0.95rem;
    line-height: 1.6;
}

.service-detail-section {

  max-width: 1200px;
  margin: 0 auto;
      padding: 4rem 1.5rem;

}

.service-detail-section.alternate-bg {
	background: #f5f7fa;
}

.service-detail-wrapper {
   display: block;
}

.service-detail-row {
    display: grid;
         grid-template-columns: 1fr 1fr;
   gap: 3rem;
	align-items    : center;
     }

.service-detail-row.reverse {
	grid-template-columns: 1fr 1fr;


}

.service-detail-row.reverse .service-detail-image {
    order: 2;
}

.service-detail-row.reverse .service-detail-text {
  order: 1;
}

.service-detail-image {
	overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);

}

.service-detail-image img {
  width: 100%;
   			height: 100%;
      object-fit: cover;
       transition: transform 0.4s ease;
}

.service-detail-image:hover img {
  transform: scale(1.05);
}

.service-detail-text h2 {
   font-size: 2.2rem;
	color: #1a3a52;
   line-height: 1.2;
	margin-bottom: 1.5rem;
}

.service-detail-text > p{
    font-size: 1rem;
   color: #6b7280;
	line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-text h4 {
   font-size: 1.1rem;
        color: #1a3a52;
 margin-bottom: 1rem;
    margin-top :    1.5rem;
}

.service-benefits {
   list-style  :    none;
   padding: 0;
   margin-bottom     :   2rem;
}

.service-benefits li {
	padding: 0.8rem 0;
  color: #6b7280;
   position: relative;
	 padding-left: 1.8rem;
	font-size: 0.95rem;
}

.service-benefits li:before {
  content: "";
   position: absolute;
   left: 0;
  top: 1.2rem;
      width: 6px;
  height: 6px;
	 background: #2e7d9a;
   border-radius  :   50%;
}



.service-meta {
    display:flex;
        gap: 1rem;
    flex-wrap: wrap;
    margin-top     : 1.5rem;
}

.meta-badge {

       background: #e0f0f5;
   color: #2e7d9a;
  padding: 0.5rem 1rem;
   border-radius: 20px;
    font-size: 0.85rem;
    font-weight :       600;
}@media (max-width: 1024px) {
    .service-detail-row {
        grid-template-columns: 1fr;
    }

    .service-detail-row.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-row.reverse .service-detail-image {
        order: 1;
    }

    .service-detail-row.reverse .service-detail-text {
        order: 2;
    }
}.pricing-preview    {
  max-width: 1200px;
          margin: 0 auto;
   padding   :     4rem 1.5rem;
    background: #f5f7fa;
}

.pricing-preview h2 {
      font-size: 2.2rem;
    color: #1a3a52;
   text-align    :   center;
   margin-bottom:      1rem;
}

.pricing-intro {
	  text-align: center;
  color: #6b7280;
     font-size: 1rem;
     margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
	margin-right: auto;
	}

.pricing-grid    {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap :   2.5rem;
	}

.pricing-card {
    background     :       #ffffff;
	 padding: 2.5rem;
 border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   text-align:  center;
	transition: all 0.3s ease;
   position: relative;
}

.pricing-card:hover {

	  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
       border: 2px solid #2e7d9a;
  transform: scale(1.02);
	}

.featured-badge {
    position: absolute;

   top    :    -12px;

  left: 50%;

  transform: translateX(-50%);

  background: #2e7d9a;

		 color: #ffffff;

   padding: 0.4rem 1rem;

    border-radius: 20px;

   font-size: 0.8rem;

  font-weight   :   700;
}

.pricing-card h3 {
  font-size: 1.3rem;
  color: #1a3a52;
  margin-bottom: 1.5rem;
}

.pricing-amount {
  font-size: 2.2rem;
  color: #2e7d9a;
    font-weight: 700;
	 margin-bottom: 0.5rem;
}

.pricing-desc {
	   color: #6b7280;
    font-size  :  0.9rem;
    margin-bottom: 1.5rem;

}


.pricing-features {
       list-style: none;
   padding: 0;
   margin: 0;
}



.pricing-features li {
  padding: 0.6rem 0;
   color: #6b7280;
	font-size: 0.9rem;
  position: relative;
    padding-left: 1.5rem;

}

.pricing-features li:before {
  content: "";
  position:      absolute;
    left: 0;
          top: 0.9rem;
    width: 5px;
          height   :   5px;
    background: #2e7d9a;
    border-radius: 50%;
}

.process-section {
    max-width: 1200px;
   margin: 0 auto;
                    padding     :        4rem 1.5rem;
}

.process-section h2 {
    font-size:   2.2rem;
  color: #1a3a52;
    text-align   :center;
     margin-bottom    :   3rem;
}

.process-timeline {
       display: flex;
  justify-content: space-between;
    align-items:    stretch;
  flex-wrap: wrap;
   gap: 2rem;

}

.process-step


{
        flex: 1;
   min-width: 200px;
  text-align   :        center;

}

.step-number {
	    width    :     50px;

    height: 50px;

                    background     :       #2e7d9a;

  color: #ffffff;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

	font-size  :      1.5rem;

  font-weight: 700;

         margin  :      0 auto 1.5rem;

     }

.process-step h3 {
          font-size: 1.1rem;
					color: #1a3a52;
	 margin-bottom: 0.8rem;
}

.process-step p {
   color: #6b7280;
   font-size: 0.9rem;
  line-height: 1.6;
}

.process-arrow {
    height   : 3px;
 display   :        none;
   width: 30px;
    background: #2e7d9a;
    margin:25px -15px 0;
}@media (min-width: 1025px) {
    .process-timeline {
        flex-wrap: nowrap;
    }

    .process-arrow {
        display: block;
    }

    .process-arrow:last-of-type {
        display: none;
    }
}.faq-section {
  max-width: 1000px;

	 margin: 0 auto;

	   padding: 4rem 1.5rem;

	    background: #f5f7fa;

}


.faq-section h2 {
               font-size: 2.2rem;
   color: #1a3a52;
     text-align: center;
          margin-bottom    :3rem;

}

.faq-container {
  display: flex;
	 flex-direction    :    column;
    gap: 1.5rem;
}

.faq-item {
    background :      #ffffff;
	border-radius: 8px;
	overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	
}

.faq-question    {
  padding: 1.5rem;
   display:flex;
	justify-content: space-between;
    align-items: center;
    cursor: pointer;
  transition: background 0.3s ease;
	
}

.faq-question:hover {
     background: #f9fafb;
}

.faq-question h4 {

	  margin: 0;
    color: #1a3a52;
    font-size  :   1.05rem;
    text-align: left;
  flex  :    1;}

.faq-toggle {
  width: 24px;
   height: 24px;
         stroke: #2e7d9a;
     fill: none;
   stroke-width     :     2;
  stroke-linecap: round;
 stroke-linejoin: round;
  transition: transform 0.3s ease;
   flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {


    overflow: hidden;
  transition   :   max-height 0.3s ease;
    max-height: 0;


}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
   padding: 0 1.5rem 1.5rem;
	 color: #6b7280;
    line-height: 1.7;
   margin: 0;
}

.cta-final {
  background: linear-gradient(135deg, #1a3a52 0%, #2e7d9a 100%);
  color: #ffffff;
    text-align  :        center;
   padding: 4rem 1.5rem;
	max-width: 1200px;
  margin   :        4rem auto 0;
}

.cta-final h2 {
   font-size: 2.4rem;
    margin-bottom: 1rem;
}

.cta-final p {
    font-size :  1.1rem;

	   margin-bottom: 2rem;

	  opacity: 0.95;
}

.cta-button-primary {
   display: inline-block;
	  background: #ffffff;
	  color    :   #1a3a52;
	  padding: 1rem 2.5rem;
	   border-radius: 8px;
	  text-decoration: none;
	   font-weight: 700;
	    transition: all 0.3s ease;
	   font-size: 1rem;
}

.cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.thankyou-section {
    max-width: 800px;
    margin: 0 auto;
   padding: 5rem 1.5rem;
}

.thankyou-container {
   text-align: center;
}

.thankyou-icon {
    margin-bottom :  2rem; 

}

.success-icon {
    width: 80px;
	 height: 80px;
        stroke: #2ecc71;
  fill    :   none;
               stroke-width: 2;
   stroke-linecap     :round;
        stroke-linejoin: round;
    animation    :     bounceIn 0.6s ease;
}@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1    {
  font-size: 2.5rem;
  color: #1a3a52;
    margin-bottom: 1rem;
}

.thankyou-subtitle {
   font-size: 1.2rem;
    color:   #6b7280;
    margin-bottom: 2.5rem;


}

.thankyou-message {
  background: #e8f7f1;
 padding: 2rem;
   -moz-border-radius: 10px;
	border-radius  :  10px;
    margin-bottom: 3rem;
   text-align: left;
    border-left     :     4px solid #2ecc71;


}

.thankyou-message h2 {
    color: #1a3a52;
   font-size  :     1.3rem;
	margin-bottom     :    1rem;
}

.thankyou-message p {

	   color: #6b7280;
    line-height: 1.7;
	}

.thankyou-benefits {
  background: #f5f7fa;
  padding   :      2.5rem;
   border-radius: 10px;
   margin-bottom: 2.5rem;
	text-align: left;
}


.thankyou-benefits h3 {
    color: #1a3a52;
  font-size: 1.2rem;
   margin-bottom: 1.5rem;
                    text-align: center;
}

.benefits-list {
  list-style: none; 
	  padding: 0;
}

.benefits-list li {
	   display: flex;
         gap: 1.5rem;
  margin-bottom: 1.5rem;
   align-items  :   flex-start;
     }

.benefit-icon  
  {
   flex-shrink: 0;
   width: 40px;
      height: 40px;
  background: #e0f0f5;
   border-radius: 6px;
    display: flex;
  align-items: center;
    justify-content     :     center;
}

.benefit-icon img   {
       width: 24px;
   height     :        24px;
	stroke: #2e7d9a;
  fill:    none;
  stroke-width: 2;
     }

.benefit-text strong {
  color: #1a3a52;
    display: block;
   margin-bottom: 0.3rem;
}

.benefit-text p {
    color: #6b7280;
   font-size: 0.9rem;
	margin: 0;
}

.thankyou-info-box {
	 background: #fef3e2;
   padding: 2rem;
   border-radius: 10px;
  margin-bottom: 2.5rem;
    border: 1px solid #fde8c6;
}

.thankyou-info-box p {
   color: #6b7280;

   margin    :      0.5rem 0;
}

.phone-number {
  font-size: 1.5rem;
  font-weight: 700;
    color: #1a3a52;
   margin: 1rem 0 !important;

}

.working-hours {
    font-size: 0.9rem;
        color: #6b7280;
}



.thankyou-actions {
       display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom  :  3rem;}

.action-button {
    padding: 0.9rem 2rem;
       border-radius: 8px;
   text-decoration: none;
    font-weight: 600;
   transition: all 0.3s ease;
        display     :   inline-block;
   font-size: 0.95rem;
}

.action-button.primary {
   background  : #2e7d9a;
	color  :     #ffffff; 
	
}

.action-button.primary:hover

{
  -webkit-transform: translateY(-2px);
    background: #24627a;
  transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
}

.action-button.secondary	{
    background: #ffffff;
  color: #2e7d9a;
  border: 2px solid #2e7d9a;
}



.action-button.secondary:hover {
    background: #e0f0f5;
}

.next-steps {

   background: #ffffff;
   padding: 2rem;
  border-radius: 10px;
    border: 1px solid #e5e7eb;
  text-align   : left;
     }

.next-steps h3 {
    color: #1a3a52;
    font-size: 1.1rem;
   margin-bottom: 1rem;
}

.next-steps p {
   color: #6b7280;
  line-height: 1.7;
   margin: 0;
}@media (max-width: 768px) {
    .service-detail-row {
        grid-template-columns: 1fr;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .process-timeline {
        flex-direction: column;
    }

    .process-arrow {
        display: none !important;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
        text-align: center;
    }

    .thankyou-section h1 {
        font-size: 2rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
    }
}.policySection {
    padding: 80px 2rem;
    background: #f8f9fa;

}

.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;
   margin-bottom:        1.5rem;
    line-height: 1.7;
  font-size: 1.1rem;
	}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}