* {
  box-sizing    :  border-box;
  padding: 0;
  margin :  0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #2d3748;
    background   :       #ffffff;

}

.main-navigation {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
   position: sticky;
   top     :    0;
  z-index: 1000;
    padding    :0;
}

.nav-wrapper {
   max-width: 1320px;
       margin: 0 auto;
 display: flex;
    justify-content: space-between;
    align-items: center;
        padding: 1.2rem 2rem;
}

.brand-section .site-brand-img {
                    height: 42px;
    width: auto;
}

.mobile-trigger {
    display: none;
	background:       none;
   border: none;
    cursor  :pointer;
  flex-direction: column;
	gap: 5px;

}

.burger-line {
  width: 28px;
   height: 3px;
    background: #2d3748;
	transition: 0.3s;
}

.nav-links {
  list-style: none;
     gap: 2.5rem;
    display: flex;
}

.nav-links a {
    text-decoration  : none;
   color: #2d3748;
   font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
    color: #667eea;
}

.nav-links a::after  {
    background: #667eea;
  content: '';
  left: 0;
  width: 0;
    bottom: -5px;
   transition: width 0.3s ease;
 position: absolute;
  height: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero-banner {
  background: linear-gradient(135deg, #f6f8fb 0%, #e9ecf4 100%);
   padding: 5rem 2rem;
}

.hero-content-wrap {
     max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
}

.hero-text-area h1 {
    font-size: 3.2rem;
      line-height: 1.2;
      color: #1a202c;
      margin-bottom: 1.5rem;
     font-weight: 700;
}

.intro-statement {
    font-size: 1.25rem;
     color: #4a5568;
     margin-bottom: 2.5rem;
       line-height: 1.8;
}

.cta-buttons {
	display: flex;
    gap: 1.5rem;
 flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding:     1rem 2.5rem;
  text-decoration    :      none;
   border-radius: 8px;
   font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
}

.btn-primary:hover {
     transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
     }

.btn-secondary {
	background    :       white;
   color: #667eea;
   padding: 1rem 2.5rem;
  text-decoration: none;
	border-radius: 8px;
  font-weight: 600;
  border: 2px solid #667eea;
	transition:     all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
  background: #667eea;
  color    :  white;
}

.hero-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15); 
	
}

.philosophy-area {
  padding: 6rem 2rem;
  background: white;
}

.content-container {
    max-width: 1320px;
    margin: 0 auto;
}

.philosophy-area h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a202c;
  margin-bottom: 4rem;
}

.philosophy-grid {
  display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
	    gap: 3rem;
}

.philosophy-card {
   background: #f7fafc;
    padding:       2.5rem;
   border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
	
}

.card-icon-holder {
    margin-bottom: 1.5rem;
}

.card-icon-holder svg {
  stroke: url(#iconGrad1);
    fill: none;
    stroke-width: 2;
	 stroke-linecap: round;
  stroke-linejoin  :        round;
	
}

.philosophy-card h3 {

	    font-size   :    1.5rem;
  color: #2d3748;
    margin-bottom: 1rem;}

.philosophy-card p {
   color: #4a5568;
                    line-height: 1.8;
}

.services-preview {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);
}

.services-intro {
   text-align: center;
  margin-bottom: 4rem;

}

.services-intro h2 {
   font-size   :  2.8rem;
    color: #1a202c;
  margin-bottom: 1rem;
}

.services-intro p    {
    font-size:    1.2rem;
    color     :     #4a5568;
}

.services-showcase {
   display    :       grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
       margin-bottom: 3rem;

}

.service-item {
   background: white;
   border-radius     :        12px;
          overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   transition: transform 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item img {
        width: 100%;
    height: 240px;
    object-fit: cover;
}



.service-details {
  padding: 2rem;
}

.service-details h3 {
  font-size: 1.5rem;
    color    :   #2d3748;
         margin-bottom  :    1rem;
}

.service-details p {
                       color: #4a5568;
   line-height   : 1.7;}

.services-cta  
  {
    text-align: center;
}

.call-to-action-block {
                    padding: 6rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color   :white;
}

.cta-content-area {
  max-width: 1320px;
               margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center; 

}

.cta-text-side h2  
  {
  font-size: 2.5rem;
   margin-bottom: 1.5rem;
}

.cta-text-side > p    {
  font-size: 1.1rem;
   margin-bottom    :        2rem;
    opacity: 0.95;
}

.benefit-points {

	  list-style    :  none;
    margin-bottom: 2.5rem;


}

.benefit-points li {
  display     : flex;
   gap: 1rem;
   margin-bottom: 1rem;
    align-items: flex-start;
}

.benefit-points svg {
   fill:    white;
  flex-shrink: 0;

}


.cta-visual-side img	{
  width: 100%;
   border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cta-text-side .btn-primary {
    background    :        white;
   color: #667eea;
}

.cta-text-side .btn-primary:hover     {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.3);
	
}

.testimonial-section {
  padding: 6rem 2rem;
	background :       white; 
	
}

.testimonial-section h2 {
  text-align: center;
    font-size: 2.8rem;
    color: #1a202c;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
	                    gap    :  2.5rem;
}

.testimonial-box {
     background: #f7fafc;
    padding: 2.5rem;
   border-radius: 12px;
   border-left: 4px solid #667eea;
}

.testimonial-text {
   font-size: 1.05rem;
    color: #2d3748;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
   	 color: #4a5568;
    font-weight: 600;
}

.contact-section {
	padding: 6rem 2rem;
  background: linear-gradient(135deg, #f6f8fb 0%, #e9ecf4 100%);


}


.contact-container {


   max-width: 1320px;
               margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 1.5fr;
        gap: 4rem;

}

.contact-info-side h2 {
   font-size: 2.5rem; 
  color: #1a202c; 
    margin-bottom: 1.5rem;
}

.contact-info-side > p {
   font-size: 1.1rem; 
		color: #4a5568; 
	  margin-bottom: 2.5rem; 
	    line-height: 1.8;
	
}

.contact-details {
   display: flex;
	flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
  display   :       flex;
  gap: 1.5rem;
}

.contact-detail-item svg {
   stroke-linejoin: round;
    fill: none;
   stroke-width: 2;
  flex-shrink    :0;
  stroke: #667eea;
	 stroke-linecap: round;
}

.contact-detail-item strong {
  display: block;
     color: #2d3748;
  margin-bottom: 0.5rem;
      font-size: 1.1rem;


}

.contact-detail-item p {
  color: #4a5568;
    line-height    :  1.6;
}

.contact-form {
   background: white;
   padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-row {
                    margin-bottom:    1.5rem;
}

.form-group {


  display: flex;
  flex-direction: column; 


}

.form-group label {


 font-weight    : 600;
    color: #2d3748;
	 margin-bottom: 0.5rem;
   font-size: 15px;
     }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem;
   border    :       2px solid #e2e8f0;
    border-radius: 8px;
   font-size: 16px;
   font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	 outline: none;
    border-color: #667eea;
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 1rem 3rem;
   border: none;
    border-radius: 8px;
  font-size: 16px;
    font-weight: 600;
    cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
   width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.site-footer		{
   background: #1a202c;
  color: white;
   padding:        4rem 2rem 2rem;
}

.footer-content    {
  max-width: 1320px;
	    margin: 0 auto;
	    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	  gap: 3rem;
	  margin-bottom :  3rem;
}


.footer-section h4 {
  font-size   :  1.2rem;
   margin-bottom: 1.5rem;
  color: white;
}

.footer-logo {
   height: 40px;
    margin-bottom: 1rem;
  filter: brightness(0) invert(1);
     }

.footer-tagline {
   color: #a0aec0;
	  line-height: 1.6;
}

.footer-links {
   list-style:   none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color   :     #a0aec0;
	    text-decoration: none;
	   transition: color 0.3s;

}


.footer-links a:hover {
    color: white;
}

.footer-section p{

   color: #a0aec0;
   line-height: 1.8;}

.footer-bottom {
	max-width: 1320px; 
	   margin: 0 auto; 
		padding-top: 2rem; 
	   border-top  :        1px solid #2d3748; 
	   text-align    : center; 
	  color: #a0aec0;
}@media (max-width: 768px) {
    .mobile-trigger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: left 0.3s;
        gap: 1rem;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-content-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text-area h1 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
    }
    
    .cta-content-area {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}.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  
  {
  font-size: 1.1rem;
  line-height :   1.7;
  margin-bottom: 1.5rem;
	color: #7f8c8d;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.page-header-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem 4rem;
   text-align: center;
  color: white;


}



.header-content-wrapper h1 {
	    font-size :       3rem;
   margin-bottom: 1rem;
	font-weight :    700;


}

.header-subtitle {


   font-size    :    1.2rem;
   max-width: 800px;
	margin :     0 auto;
                    opacity: 0.95;


}

.services-detailed-section {
	      padding: 5rem 2rem;
  background: white;


}

.service-detail-card {
   display: grid;
	grid-template-columns   :       1fr 1.2fr;
      gap: 3rem;
	margin-bottom: 5rem;
  align-items   :    center;
}

.service-detail-card.reverse {
  grid-template-columns :     1.2fr 1fr;
}

.service-detail-card.reverse .service-detail-image {
   order: 2;
}

.service-detail-card.reverse .service-detail-content  {

  order: 1;
	}

.service-detail-image img {
   width: 100%;
    border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);

}

.service-detail-content {
  position: relative;
}

.service-badge {
    display  :    inline-block;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 0.5rem 1.5rem;
	border-radius    :     20px;
	 font-size: 14px;
    font-weight: 600;
   margin-bottom:        1rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
   color: #1a202c;
    margin-bottom: 1rem;
}

.service-intro {
   font-size: 1.15rem;
  color: #4a5568;
    margin-bottom: 2rem;
   line-height: 1.7; 
	
}

.service-features
	{


	 margin-bottom: 2rem;

}

.feature-item
{
    display: flex;
 gap: 1rem;
    margin-bottom :  1rem;
  align-items    :        flex-start;
}

.feature-item svg {
    flex-shrink: 0;
  fill: #667eea;
  margin-top: 2px;
}

.feature-item span {
  color   : #2d3748;
         line-height: 1.6;
}

.service-description {
   color :   #4a5568;
	line-height  :  1.8;
   font-size: 1.05rem;
}

.pricing-info-section {

  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f6f8fb 0%, #e9ecf4 100%);


}

.pricing-info-section h2 {
     text-align: center;
   font-size: 2.8rem;
    color: #1a202c;
    margin-bottom: 1rem; 
	
	}

.pricing-intro {
    text-align: center; 
	  font-size: 1.15rem; 
	  color: #4a5568; 
	   max-width: 700px; 
			margin   :     0 auto 4rem;
}

.pricing-cards   {
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
    max-width: 1200px;
	 margin: 0 auto;
}

.pricing-card {
     background : white;
  padding: 3rem 2.5rem;
	border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card.featured {
   border: 3px solid #667eea;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);

}

.popular-badge  
  {
  position: absolute;
   top: -15px;
       right: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 0.5rem 1.5rem;
	border-radius  :     20px;
  font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
          font-size: 1.8rem;
    color     :#1a202c;
    margin-bottom    :    1rem;
} 

.price-description  {

        color: #4a5568;
   margin-bottom: 2rem;
  line-height   : 1.6;
	min-height: 50px;
	}

.pricing-features{
  list-style: none; 
	  margin-bottom  :  2.5rem;
}

.pricing-features li {
     padding: 0.75rem 0;
   color: #2d3748;
   border-bottom: 1px solid #e2e8f0;




}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn
	{
    display: block;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 2rem;
    text-decoration: none;
     border-radius: 8px;
  font-weight: 600;
   transition  :       transform 0.3s, box-shadow 0.3s;
}

.pricing-btn:hover {

	  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.process-section {
    padding: 5rem 2rem;
    background: white; 
	
}

.process-section h2 {

	   color: #1a202c;
   font-size: 2.8rem;
    text-align    :       center;
    margin-bottom: 4rem;}

.process-timeline {
	max-width: 900px;
   margin: 0 auto;
}

.timeline-item 
 {
   display: flex;
	 gap: 2rem;
       margin-bottom: 3rem;
    position: relative;
}  

.timeline-item:not(:last-child)::after {
  content: '';
	position     :    absolute;
    left: 28px;
   top: 60px;
    width: 2px;
  height: calc(100% + 3rem);
   background: #e2e8f0;
}

.timeline-number {
  flex-shrink:   0;
               width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  border-radius: 50%;
  display: flex;
    align-items: center;
  justify-content: center;
        font-size: 1.5rem;
     font-weight: 700;
   z-index    :   1;
}

.timeline-content h3 {
    font-size: 1.5rem;
  color: #2d3748;
      margin-bottom    :       0.75rem;
}

.timeline-content p {

   color   :       #4a5568;
  line-height: 1.7;

}

.cta-services-section {
   padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     text-align: center;
          color   : white;
}

.cta-services-wrapper h2 {

  margin-bottom: 1rem;
    font-size: 2.5rem;
	}

.cta-services-wrapper p {


	font-size  :     1.2rem;
   margin-bottom: 2.5rem;
   opacity: 0.95;
     }

.cta-services-wrapper .btn-primary   {
  background: white;
   color: #667eea;
}

.thankyou-main-section	{
    padding  :     5rem 2rem;
  background: linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);
  min-height: calc(100vh - 200px);
}



.thankyou-container {
  max-width: 900px;
    margin: 0 auto;
	text-align: center;
}

.thankyou-icon-wrapper {
   margin-bottom: 2rem;
}

.success-checkmark {
  stroke: #667eea;
  fill: none;
  stroke-width: 2.5;
	 stroke-linecap: round;
   stroke-linejoin: round;
    animation: checkmarkDraw 0.6s ease-in-out;
}@keyframes checkmarkDraw {
    0% {
        stroke-dasharray: 0, 100;
        opacity: 0;
    }
    100% {
        stroke-dasharray: 100, 0;
        opacity: 1;
    }
}.thankyou-container h1 {
  font-size     :  2.8rem;
  color: #1a202c;
      margin-bottom: 1rem;
}

.thankyou-message {
          font-size: 1.2rem;
		color: #4a5568;
  margin-bottom: 4rem;
}


.next-steps-area {
     margin-bottom: 4rem;
}

.next-steps-area h2 {
  font-size   :   2rem;
    color: #2d3748;
  margin-bottom: 2.5rem;
}

.steps-grid {
  display :       grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
   text-align: left;
} 

.step-box {
    background: white;
  padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-icon{
    margin-bottom    :  1rem;
}

.step-icon svg {
                  stroke: #667eea;
    fill: none;
   stroke-width: 2;
   stroke-linecap: round;
  stroke-linejoin     :  round;


}

.step-box h3 {
   font-size     :     1.3rem;
    color    :#2d3748;
  margin-bottom: 0.75rem;
}

.step-box p {
    color: #4a5568;
		line-height: 1.6;
}

.additional-resources {
  background: white;
   padding: 3rem;
	border-radius: 16px;
   margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.additional-resources h2 {
  font-size     :      1.8rem;
    color: #2d3748;
   margin-bottom:1rem;
}

.additional-resources > p   {

	    color: #4a5568;
         margin-bottom: 2rem;
}

.resource-buttons {

    display    :  flex;
   gap :     1.5rem;
  justify-content   :center;
	 flex-wrap: wrap;
	}

.contact-reminder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
   color:      white; 
  padding: 3rem; 
    border-radius: 16px;
}

.contact-reminder h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-reminder p {
  margin-bottom: 0.75rem;
   opacity: 0.95;
}  

.phone-highlight {
          font-size  :     1.8rem;
   font-weight   :       700;
    margin: 1.5rem 0;

}

.contact-address {
  font-size: 1rem;
    opacity: 0.9;
}@media (max-width: 768px) {
    .page-header-section {
        padding: 3rem 2rem;
    }
    
    .header-content-wrapper h1 {
        font-size: 2rem;
    }
    
    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card.reverse .service-detail-image,
    .service-detail-card.reverse .service-detail-content {
        order: unset;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        gap: 1.5rem;
    }
    
    .timeline-number {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .timeline-item:not(:last-child)::after {
        left: 23px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-buttons {
        flex-direction: column;
    }
    
    .thankyou-container h1 {
        font-size: 2rem;
    }
}