* {
    margin: 0;
     padding: 0;
       box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #2d3748;
   background  :#ffffff;
}

.primary-nav {
    background     :   #1a202c;
		 padding: 1rem 0;
    position: sticky;
    top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
} 

.nav-wrapper {
    max-width   : 1200px;
    margin: 0 auto;
        padding: 0 20px;
   display: flex;
    justify-content: space-between;
    align-items: center; 

}

.brand-section .site-logo {
   height: 45px;

    display: block;
}

.nav-links {
   display: flex;
	list-style: none;
  gap: 2.5rem;
}

.nav-links a {
	font-size: 16px; 
  color: #e2e8f0; 
    font-weight :   500; 
   text-decoration: none; 
  transition  :    color 0.3s;
}

.nav-links a:hover {
	 color :    #4299e1;
}

.menu-toggle {
    display: none;
       flex-direction: column;
       cursor: pointer;
     gap: 5px;
}

.menu-toggle span {
    width: 28px;
  -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
  height: 3px;
    background: #e2e8f0;
   transition: all 0.3s;
    border-radius: 2px;
}

.hero-block {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
 color: white;

}

.hero-content-wrap {


  max-width: 1200px;
       margin: 0 auto;
    display:       grid;
  grid-template-columns: 1fr 1fr;
   gap :  60px;
    align-items: center;
	}

.text-area h1		{
  line-height:    1.2;
    margin-bottom: 20px;
  font-weight: 700;
  font-size: 3rem;
}

.lead-text

{
      font-size: 1.2rem;
   margin-bottom: 30px;
    opacity: 0.95;


}

.cta-buttons {
   display: flex;
   gap: 15px;
		flex-wrap    : wrap;
}

.btn-primary, .btn-secondary {
   padding  :      14px 32px;
  text-decoration: none;
    border-radius:  6px;
    font-weight: 600;
    transition: all 0.3s;
   display: inline-block;
}

.btn-primary {
   background    :       #ffffff;
   color: #667eea;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary  
  {
    background: transparent;
   color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

.hero-img {
  width: 100%;
          border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.intro-segment {
       padding: 80px 20px;
  background: #f7fafc;
}

.content-container {
	max-width: 1200px;
	margin: 0 auto;
}

.intro-segment h2 {
   font-size: 2.5rem;
    margin-bottom: 25px;
   color: #1a202c;
  text-align: center;
}

.intro-segment > .content-container > p {
 font-size: 1.1rem;
  text-align: center;
   max-width    :      800px;
  margin: 0 auto 50px;
  color:     #4a5568;
}

.feature-grid {
   display :    grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 30px;
          margin-top: 50px;

}

.feature-item {
   background: white;
    padding: 30px;
   border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
     transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item h3 {
    color: #667eea;
  margin-bottom: 15px;
   font-size: 1.4rem;
}

.feature-item p {
  color: #4a5568;
}

.services-preview {
	padding: 80px 20px;
} 

.services-preview h2 {
   font-size: 2.5rem;
    text-align  :  center;
  margin-bottom: 60px;
  color: #1a202c;
}

.services-layout     {
  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	   gap:      40px;
	   margin-bottom: 50px;
}

.service-card {
   background: white;
    border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;

}

.service-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transform: translateY(-8px);
}

.service-image {
  width: 100%;
  height: 220px;
	object-fit: cover;
}



.service-card h3 {

	padding: 20px 25px 10px; 
    color: #2d3748; 
 font-size: 1.5rem;
     }

.service-card p {
    padding: 0 25px 25px;
     color: #4a5568;
   line-height     :1.7;
}

.centered-action {
    text-align: center;
}

.btn-outlined	{
    display: inline-block;
     padding: 14px 35px;
     border: 2px solid #667eea;
     color: #667eea;
       text-decoration   :     none;
       border-radius: 6px;
     font-weight: 600;
     transition : all 0.3s;
}

.btn-outlined:hover {
  background: #667eea;
   color:       white;
}

.testimonials-area {
   padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.testimonials-area h2 {
  font-size: 2.5rem;
  text-align :   center;
          margin-bottom: 60px;
}

.testimonials-grid     {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 35px;


}

.testimonial-box {
  background: rgba(255,255,255,0.15);
    padding: 35px;
	 border-radius: 10px;
  backdrop-filter: blur(10px); 

}

.testimonial-box p {
    line-height: 1.7;
     margin-bottom    :      20px;
       font-style: italic;
      font-size: 1.05rem;
}



.author-name   {
  display: block;
   font-weight: 600;
   font-size: 0.95rem;
}

.cta-section {
   padding: 100px 20px;

	  background    :        #1a202c;

	   color: white;

	   text-align: center;
}

.cta-wrapper h2 {
	font-size: 2.8rem;
     margin-bottom: 20px;
}

.cta-wrapper p {
    font-size: 1.2rem;
    margin-bottom   :  35px;
  opacity :       0.9;
}

.btn-cta-large {
    border-radius: 8px;
	background: #667eea;
    color     :      white;
    text-decoration     :none;
    transition  :    all 0.3s;
  display: inline-block;
    font-weight: 600;
   padding: 18px 50px;
   font-size: 1.1rem;
}

.btn-cta-large:hover {
  background: #5568d3;
  transform: scale(1.05);
}

.contact-section {
  padding: 80px 20px;
  background: #f7fafc;
}

.contact-section h2 {
      font-size     :  2.5rem;
                    text-align: center;
   margin-bottom: 60px;
   color: #1a202c;
}

.contact-layout {
    display: grid;
   grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

.contact-form {
         background: white;
  padding: 40px;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);


}

.form-group {
  margin-bottom:      25px;
}

.form-group label {
       display: block;
    margin-bottom: 8px;
   font-weight    :600;
  color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
  width     :    100%;
   padding: 12px 15px;
   border: 2px solid #e2e8f0;
  border-radius: 6px;
 font-size: 1rem;
	transition: border-color 0.3s;
               font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: #667eea;
	}

.btn-submit {
   width: 100%;
    padding:        15px;
  background   :      #667eea;
    color: white;
    border     :        none;
  border-radius    :   6px;
    font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
   transition: background 0.3s;
}

.btn-submit:hover {
   background: #5568d3;
}

.info-area {
  flex-direction: column;
   gap: 30px;
    display: flex;
}

.info-block {
    background :        white;
    padding: 30px;
  border-radius:10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.info-block h3 {
	margin-bottom: 20px;
	color   :  #1a202c;
   font-size: 1.5rem;
}

.info-block p {
   color: #4a5568;
  line-height: 1.8;
}

.contact-img

{
    width: 100%;
	border-radius: 8px;
     -webkit-border-radius: 8px;
}

.site-footer {
   background: #1a202c;
  color: #e2e8f0;
  padding: 60px 20px 20px; 

}

.footer-content {
    max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
   margin-bottom: 40px;
}

.footer-logo    {
   height: 40px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {


  margin-bottom: 20px;
    color: white;
	 font-size: 1.1rem;


}

.footer-col ul {

	    list-style: none;
}

.footer-col ul li {


  margin-bottom: 10px;
     }

.footer-col a {
  color: #cbd5e0;
	  text-decoration: none;
	    transition     :  color 0.3s;
}

.footer-col a:hover
{

		color     : #4299e1;
}

.footer-col p {
    color :   #cbd5e0;
	line-height: 1.8;
}

.footer-bottom {
	    max-width: 1200px;
  margin: 0 auto;
    padding-top: 30px;
   border-top: 1px solid #2d3748;
  text-align: center;
   color: #a0aec0;
	}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a202c;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-links.active {
        max-height: 300px;
    }
    
    .nav-links li {
        padding: 12px 0;
        border-bottom: 1px solid #2d3748;
    }
    
    .hero-content-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .text-area h1 {
        font-size: 2.2rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .visual-area {
        order: -1;
    }
}

@media (max-width: 480px) {
    .text-area h1 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}.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;
    }
}.page-header-section{
  background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    padding     :   100px 20px 60px;
    text-align: center;
	color    :    white;
}

.header-overlay h1 {
   font-size     :  3rem;
      margin-bottom: 15px;
      font-weight: 700;
}

.subtitle-text {
  font-size  :   1.3rem;
    opacity: 0.9;
}

.services-detailed   {
	  padding: 80px 20px;
}

.intro-text-block {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
}

.intro-text-block h2 {

   font-size: 2.5rem;
	 margin-bottom: 20px;
   color: #1a202c;
     }

.intro-text-block p


{
   font-size: 1.15rem;
    color: #4a5568;
   line-height: 1.8;
}

.service-detail-card {
    margin-bottom :       80px;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
   gap: 50px;
   align-items: center;
}

.service-detail-card.reverse .service-detail-content {
       grid-template-columns: 1fr 1.2fr;

}

.service-detail-card.reverse .service-text-side {
    order: 2;
}

.service-detail-card.reverse .service-image-side {


 order: 1;

}

.service-text-side h3 {
   font-size: 2rem;
               color: #2d3748;
    margin-bottom: 20px;
}

.service-text-side p    {
  color: #4a5568;
      line-height: 1.8;
      margin-bottom     :       20px;
      font-size: 1.05rem;


}

.benefits-list {
   list-style     :none;
 padding: 0;
    margin-top: 30px;
}

.benefits-list li {
   padding: 12px 0 12px 35px;
               position   :        relative;
  color: #2d3748;
	line-height: 1.6;
}

.benefits-list li:before {
  content: "✓";
   position: absolute;
  left: 0;
                    color: #667eea;
   font-weight    :       700;
   font-size: 1.3rem;
}

.detail-img {
	  width   :     100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);}

.pricing-overview {
  padding: 80px 20px;
  background: #f7fafc;
     }

.pricing-overview h2 {
   font-size :       2.5rem;
   text-align :  center;
    margin-bottom: 15px;
   color: #1a202c;
}

.section-intro {
    text-align: center;
   font-size: 1.15rem;
  color: #4a5568;
               margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
    max-width :    1100px;
   margin: 0 auto;
}

.pricing-card	{
   background: white;
  border-radius: 12px;
    padding   : 40px 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
		 transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.pricing-card:hover {
     transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured {
  border: 3px solid #667eea;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);

}

.popular-badge {
    position: absolute; 
	  top: -15px; 
	   right: 20px; 
	  background: #667eea; 
	  color :  white; 
	  padding: 8px 20px; 
		border-radius:       20px; 
	  font-size:  0.85rem; 
	    font-weight: 600;
}

.package-header {
  text-align:     center; 
	    margin-bottom :       30px; 
	  padding-bottom: 25px; 
	   border-bottom: 2px solid #e2e8f0;


}

.package-header h3


{

    font-size: 1.8rem;
    color: #2d3748;
  margin-bottom: 10px;


}

.package-desc {

	    color: #718096;
    font-size: 1rem;
     }

.package-features {


    margin-bottom: 35px;


}

.package-features p     {

		padding :  14px 0;
	color: #4a5568;
  border-bottom: 1px solid #f7fafc;
	line-height: 1.5;
     }

.package-action  
  {
  text-align: center;
	
}

.package-btn {
  display: inline-block;
   padding  :     14px 40px;
    background   :      #667eea;
  color: white;
    text-decoration: none;
    border-radius: 6px;
  font-weight: 600;
   transition: background 0.3s;
}

.package-btn:hover {
  background: #5568d3;
}

.process-section {
       padding: 80px 20px;
	}

.process-section h2
	{
  font-size: 2.5rem;
   text-align :        center;
   margin-bottom: 60px;
  color     :#1a202c;
}

.process-timeline  {
   max-width: 1000px;
   margin  :       0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 40px;
}

.process-step {
    text-align   :  center;
  padding: 30px 20px;
}

.step-number {
   width :70px;
   height: 70px;
    margin: 0 auto 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  border-radius: 50%;
     display: flex;
  align-items: center;
    justify-content: center;
  font-size: 1.8rem;
   font-weight: 700;
}

.process-step h3 {
   font-size: 1.3rem;
  color: #2d3748;
   margin-bottom: 15px;
}

.process-step p {
    color: #4a5568;
    line-height: 1.7;
}

.cta-bottom-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   text-align: center;
         color: white;
}

.cta-content-wrap h2
	{
	 font-size: 2.8rem; 
               margin-bottom: 20px;
}

.cta-content-wrap p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.thankyou-main {
  padding: 80px 20px;
    background: #f7fafc;
    min-height: 70vh;
}

.thankyou-container {
  display: grid;
   margin: 0 auto;
    gap: 50px;
   grid-template-columns: 1.5fr 1fr;
  max-width: 1200px;
}

.thankyou-content {
	background: white;
	padding     :  60px 50px;
   border-radius     :       12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.success-icon-area {
   text-align: center;
    margin-bottom: 30px;
}

.checkmark-circle {
  width: 100px;
	height: 100px;
   margin: 0 auto;
          background  :    #48bb78;
   border-radius: 50%;
  -moz-border-radius: 50%;
    display :   flex;
      align-items: center;
        justify-content     :    center;
   animation: scaleIn 0.5s ease-out;
}@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}.checkmark-symbol {
        width: 35px;
   height: 60px;
    border: solid white;
  border-width: 0 6px 6px 0;
  transform: rotate(45deg);
   margin-bottom: 10px; 
	
}

.thankyou-content h1 {
    margin-bottom: 20px;
	    color: #1a202c;
	  font-size: 2.5rem;
	  text-align: center;
}  

.thankyou-message {
  font-size: 1.2rem;
	    color: #2d3748;
	   text-align: center;
	       margin-bottom :        15px;
	   line-height: 1.7;
}

.additional-info {

	    color     :        #4a5568;
  text-align: center;
   margin-bottom  :        40px;
        line-height: 1.7;


}

.next-steps-block {
  margin: 50px 0; 
	   padding: 35px; 
	   background: #f7fafc; 
		 border-radius: 8px;
}

.next-steps-block h2 {
   font-size: 1.8rem;
   color    :    #2d3748;
  margin-bottom: 30px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
  gap: 20px;
     }

.step-item {
  gap: 20px;
   align-items: center;
  display: flex;
}

.step-icon {
	    min-width: 45px;
  height: 45px;
  background   :     #667eea;
   color: white;
    border-radius: 50%;
    display: flex;
    align-items :     center;
    justify-content: center;
  font-weight: 700;
    font-size: 1.2rem;
}

.step-item p {
   color: #4a5568;
    margin   : 0;
   line-height: 1.6;
} 

.thankyou-actions	{
    display: flex;
    gap: 15px;
   justify-content: center;
	 margin-top:        40px;
   flex-wrap: wrap;
}

.thankyou-sidebar 
 {
	  display:     flex;
      flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.sidebar-card h3 {
      font-size: 1.5rem;

						color: #2d3748;

	   margin-bottom: 20px;
}

.sidebar-card p {
   color: #4a5568;
    line-height: 1.7;
      margin-bottom  :20px;
	
}


.contact-info-item {
    margin-bottom: 20px;
}

.contact-info-item strong {
   display   :        block;
   color: #2d3748;
    margin-bottom: 5px;
}

.contact-info-item p {
    margin     :        0;
   color: #4a5568;
}

.sidebar-image {
    width: 100%;
    border-radius: 8px;
  margin-bottom: 20px;
}@media (max-width: 968px) {
    .service-detail-content,
    .service-detail-card.reverse .service-detail-content {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card.reverse .service-text-side,
    .service-detail-card.reverse .service-image-side {
        order: unset;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
    }
    
    .thankyou-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .page-header-section {
        padding: 70px 20px 50px;
    }
    
    .header-overlay h1 {
        font-size: 2.2rem;
    }
    
    .subtitle-text {
        font-size: 1.1rem;
    }
    
    .service-text-side h3 {
        font-size: 1.6rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .thankyou-content {
        padding: 40px 30px;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .header-overlay h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
    }
    
    .thankyou-actions .btn-primary,
    .thankyou-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}