* {
   margin: 0;
    padding: 0;
  box-sizing  :  border-box;
}

body 
 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
  color     :#2c3e50;
    background: #ffffff;
}

.main-navigation {
     background  :    #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
	 top: 0;
   z-index: 1000;
   padding    :  1rem 0;
}

.nav-wrapper {
   max-width: 1400px;
  margin   :       0 auto;
  padding: 0 2rem;
   display: flex;
  justify-content: space-between;
   align-items: center;
}

.logo-section .brand-logo

{

	  height  :  45px;
	width   : auto;

}

.nav-links
	{
   display: flex;
   gap: 2.5rem;
	align-items: center;
}

.nav-links a {
   text-decoration: none;
  color: #2c3e50;
	font-weight   :    500;
  transition: color 0.3s ease;
     font-size: 16px;
}

.nav-links a:hover		{
    color:#667eea;
}

.cta-nav {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: #fff !important;
    padding: 10px 24px;
   border-radius: 6px;
  transition   :  transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4); 

}

.burger-menu {
   display: none;
               flex-direction    :column;
   background: none;
		border: none;
   cursor: pointer;
   padding: 0;
}

.burger-line {
	width: 28px;
   height: 3px;
  background-color: #2c3e50;
   margin: 4px 0;
  transition: 0.3s;
	border-radius: 3px;
}

.hero-section {
    display: grid;

    grid-template-columns: 1fr 1fr;

  gap     :   4rem;

  max-width :       1400px;

  margin: 5rem auto;

  padding:   0 2rem;

   align-items: center;
	
}

.hero-content h1
	{
   font-size: 3rem;
   color  :    #1a202c;
       margin-bottom  : 1.5rem;
	line-height: 1.2;
}

.hero-subtitle {
    font-size  :       1.25rem;
  color: #4a5568;
    margin-bottom     :     2.5rem;
}

.hero-actions
	{
  display: flex;
   gap: 1.5rem;
}

.btn-primary, .btn-secondary
	{
   -o-transition: all 0.3s ease;
    padding: 14px 32px;
         border-radius  :  8px;
  text-decoration: none;
		-moz-transition    :all 0.3s ease;
    font-weight   :    600;
  -webkit-transition: all 0.3s ease;
   transition: all 0.3s ease;
	display: inline-block;
     }

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #fff;


}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.35);
}

.btn-secondary
{
  border: 2px solid #667eea;
   background: transparent;
        color: #667eea;
}

.btn-secondary:hover {


    background: #667eea;
   color: #fff;

}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.features-area

{

	    background: #f7fafc;
  padding: 6rem 0;


}

.container-fluid {
         max-width: 1400px;
         margin: 0 auto;
   padding: 0 2rem;}

.section-heading {
                    text-align: center;
  font-size     :       2.5rem;
    color: #1a202c;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap     :     2.5rem;
}

.feature-card {
    background: #fff;

   padding: 2.5rem;

  border-radius: 12px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);

    transition:       transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.icon-holder {
  width     :   70px;
     height: 70px;
   margin-bottom: 1.5rem;
}


.icon-holder svg {
  stroke: url(#grad1);
	fill: none;
   stroke-width: 2;
	stroke-linecap: round;
   stroke-linejoin   :   round;
   width: 100%;
 height: 100%;
}

.feature-card h3 {
    font-size: 1.5rem;
   margin-bottom: 1rem;
  color: #1a202c;
}

.feature-card p {
    color: #4a5568;
	    line-height: 1.7;
}

.about-section {
   padding: 6rem 0;
} 

.about-wrapper {
  max-width: 1400px;
	 margin: 0 auto;
          padding: 0 2rem;
        display     :grid;
      grid-template-columns:   1fr 1fr;
  gap: 5rem;
    align-items: center;
}

.about-image img {
  width: 100%; 
	  border-radius: 12px; 
	  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.about-text h2 {
       font-size: 2.25rem;
   color     :#1a202c;
   margin-bottom :     1.5rem;
}

.about-text p {

        color: #4a5568; 
	    margin-bottom: 1.25rem; 
	   font-size: 1.1rem;
	}

.benefits-list {

	   list-style: none;
  margin-top: 2rem; 
	}

.benefits-list li {
  padding-left: 2rem;
    margin-bottom: 1rem;
    position :  relative;
   color    :  #2c3e50;
}

.benefits-list li::before {
  content: "✓";
   position: absolute;
   left: 0;
    color     : #667eea;
   font-weight: bold;
   font-size: 1.3rem;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 5rem 2rem;
	text-align     :  center;
}

.cta-content h2 {
      color: #fff;
   font-size:       2.5rem;
  margin-bottom: 1.5rem;
}



.cta-content p {
     color   :       #fff;
       font-size: 1.25rem;
      margin-bottom: 2.5rem;
       max-width: 700px;
       margin-left : auto;
            margin-right     :       auto;}

.btn-cta {
    display: inline-block;
   padding    :   16px 40px;
     border-radius: 8px;
	 background: #fff;
	transition   :    all 0.3s ease;
  font-weight: 600;
    text-decoration: none;
  color: #667eea;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.services-preview {
    background: #f7fafc;
        padding: 6rem 0;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
    margin-bottom     :     3rem;
}

.service-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}



.service-item:hover {
  transform: translateY(-8px);
}

.service-item img {
   width: 100%;
    height:    240px;
   object-fit: cover; 

}

.service-item h3 {
   padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
   color: #1a202c;
}

.service-item p {
  padding  :      0 1.5rem 1.5rem;
    color: #4a5568;
	
}

.services-link {
    text-align   : center;
  margin-top: 3rem;
}

.contact-section {
  padding: 6rem 0;
}

.contact-wrapper

{
       max-width: 1400px;
    margin  :   0 auto;
	 padding: 0 2rem;
	display :   grid;
       grid-template-columns: 1fr 1.5fr;
 gap: 4rem;
}

.contact-info h2 {
   font-size: 2.25rem;
               color: #1a202c;
          margin-bottom:      1.5rem;
}

.contact-info p {
  color: #4a5568;
                    margin-bottom: 2.5rem;
   font-size: 1.1rem;
}

.contact-details {
    display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-item {
   gap: 1.5rem;
   display: flex;
   align-items    :        flex-start;
}

.detail-icon {
        width:    50px;
  height: 50px;
    flex-shrink: 0;
}

.detail-icon svg {
   stroke-linecap: round;
  height: 100%;
   stroke-width: 2;
  width: 100%;
  stroke-linejoin: round;
   fill: none;
    stroke: #667eea;
}

.detail-item strong {
    display     :        block;
         color: #1a202c;
   margin-bottom  :   0.5rem;
  font-size: 1.1rem;
}

.detail-item p {
   color: #4a5568;
	margin: 0;
}

.contact-form    {
   background: #fff;
    padding: 3rem;
  border-radius   : 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;

}

.form-row {


 display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;

}

.form-group label {
   display: block;
  margin-bottom: 0.5rem;
   color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width :100%;
  padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius  :     6px;
   font-size: 1rem;
	transition: border-color 0.3s ease;
  font-family: inherit;
}  

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus     {
     outline    :      none;
   border-color: #667eea;
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
    width: 100%;
   padding: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
         border: none;
  border-radius: 8px;
   font-size: 1.1rem;
 font-weight: 600;
    cursor :    pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {

	  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.35);}

.main-footer {
  color: #fff;
  background: #1a202c;
 padding: 4rem 0 2rem;
}

.footer-content {
   max-width: 1400px;
	margin: 0 auto;
   padding     : 0 2rem;
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
   margin-bottom: 3rem;
}

.footer-logo {
   height: 40px;
    width: auto;
	margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-section p{
   color     :        #cbd5e0; 
  line-height: 1.7;
}

.footer-section h4		{
  font-size  :   1.2rem;

   margin-bottom     : 1.5rem;
}

.footer-section ul {
   list-style: none;
}

.footer-section ul li {
   margin-bottom: 0.75rem;


}

.footer-section ul li a {

	    color: #cbd5e0;

	   text-decoration: none;

	  transition: color 0.3s ease;


}

.footer-section ul li a:hover {
    color: #667eea;
}

.footer-bottom  
  {

  text-align     :    center;
  padding-top: 2rem;
    border-top: 1px solid #2d3748;
   color: #cbd5e0;
     }@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 76px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 6px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -6px);
    }

    .hero-section {
        grid-template-columns: 1fr;
        margin: 3rem auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        width: 100%;
        text-align: center;
    }

    .contact-form {
        padding: 2rem;
    }
}.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 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 6rem 2rem 4rem;
   text-align    :   center;
         color: #fff;
}

.header-content h1   {
   font-size: 3rem;
    margin-bottom: 1.25rem;
}

.header-content p     {
      font-size: 1.3rem;
	max-width: 800px;
                    margin: 0 auto;
   opacity: 0.95;}

.services-detailed
{
	          padding: 5rem 0;}

.service-detail-card {
   display: grid;
    grid-template-columns: 1fr 1.2fr;
	gap: 4rem;
          margin-bottom: 6rem;
    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: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
	}

.service-icon-box {
    width: 80px;
   height: 80px;
  margin-bottom: 1.75rem;
}

.service-icon-box svg		{
  stroke: url(#grad1);
    fill: none;
	stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
    width: 100%;
    height: 100%;
}

.service-icon-box.grad2 svg {
  stroke: url(#grad2);
}

.service-icon-box.grad3 svg   {
  stroke: url(#grad3);
}

.service-detail-content h2		{
               font-size: 2.25rem;
    color    :        #1a202c;
   margin-bottom: 1.25rem;
	
}

.service-intro {
    font-size: 1.15rem;
    color: #4a5568;
   margin-bottom: 2rem;
    line-height: 1.7;
}

.service-detail-content h3 {
   font-size: 1.4rem;
  color  :#2c3e50;
    margin-bottom: 1.25rem;
                    margin-top: 2rem;
}

.service-benefits {
  list-style: none;
     margin-bottom:       2.5rem;
}

.service-benefits li {
    padding-left:      2rem;
    margin-bottom: 1rem;
    position: relative;
   color: #4a5568;
	line-height: 1.6;
}

.service-benefits li::before {


  content: "✓";
   position: absolute;
   left   :     0;
	color: #667eea;
        font-weight: bold;
    font-size: 1.3rem;

}  

.service-details-info {
	 display: flex;
   gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0; 

}

.info-item {

        display: flex;
   flex-direction: column;
  gap: 0.5rem;

}

.info-item strong {
   color: #1a202c;
  font-size: 1.05rem;
}

.info-item span {
   color  :   #4a5568;
}

.process-section    {
    background: #f7fafc;
    padding: 6rem 0;
}

.process-subtitle {
	text-align: center; 
	   font-size: 1.2rem; 
		 color: #4a5568; 
	  margin-bottom: 4rem;
}

.process-steps  {


	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
	}

.process-step	{
     background: #fff;
   padding: 2.5rem;
	 border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
         text-align: center;
         position: relative;
	transition: transform 0.3s ease;
     }

.process-step:hover {
  transform: translateY(-8px);
}

.step-number {

	  position: absolute;
  top: -20px;
       left: 50%;
  transform: translateX(-50%);
   width: 50px;
               height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #fff;
 border-radius: 50%;
   display :       flex;
   align-items: center;
  justify-content: center;
   font-weight: bold;
    font-size: 1.25rem;
	}

.step-icon {
          width: 70px;
   height: 70px;
	 margin: 0 auto 1.5rem;}

.step-icon svg {
   stroke: #667eea;
  fill: none;
  stroke-width:     2;
   stroke-linecap: round;
    stroke-linejoin: round;
  width: 100%;
    height: 100%;
}

.process-step h3


{
   font-size: 1.4rem;
       color: #1a202c;
    margin-bottom: 1rem;
}

.process-step p 
 {
	color: #4a5568;
  line-height: 1.6;
}

.cta-services {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);

                    padding: 5rem 2rem;

	text-align: center;
}

.cta-services-content h2 {
  color: #fff;
    font-size  :       2.5rem;
  margin-bottom: 1.5rem;
}

.cta-services-content p {
	   margin-left: auto;
   color: #fff;
  margin-bottom: 2.5rem;
   margin-right: auto;
    font-size    :        1.25rem;
    max-width: 700px;
	}

.thankyou-section {


  min-height: calc(100vh - 200px);
   display: flex;
   align-items: center;
  justify-content: center;
   padding: 5rem 2rem;}

.thankyou-container	{
    max-width: 750px;
   text-align    :center;
}

.thankyou-icon {


   width    :      100px;
  height: 100px;
   margin: 0 auto 2rem;
  animation: checkmarkPop 0.6s ease-out;}@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-icon svg {
    stroke: #38ef7d;
       fill  :    none;
    stroke-width: 2;
  stroke-linecap: round;
   stroke-linejoin: round;
  width: 100%;
    height: 100%;
}

.thankyou-container h1 {
  font-size     :      2.75rem;
	color: #1a202c;
   margin-bottom: 1.5rem;
}  

.thankyou-message {
    font-size: 1.25rem;
  color: #4a5568;
    margin-bottom:  3rem;
   line-height: 1.7;


}

.thankyou-info-box  {
  background: #f7fafc;
   padding: 3rem;
    border-radius: 12px;
   margin-bottom: 3rem;
  text-align:   left;
}

.thankyou-info-box h3 {

   font-size: 1.75rem;
    color: #1a202c;
  margin-bottom: 2rem;
    text-align  :     center;
     }

.next-steps {
          display: flex;
   flex-direction: column;
               gap: 2rem;
}

.next-step-item {
	gap    :    1.5rem;
   align-items: flex-start;
    display: flex; 
	
}

.step-icon-small {


  width: 50px;
   height: 50px;
  flex-shrink :0;
     }

.step-icon-small svg {
  stroke: #667eea;
  fill: none;
     stroke-width: 2;
    stroke-linecap   :   round;
   stroke-linejoin: round;
  width     :       100%;
   height: 100%;
}

.next-step-item strong {
  display:  block;
   color: #1a202c;
    font-size    :       1.15rem;
   margin-bottom: 0.5rem;
}  

.next-step-item p {
  color: #4a5568;
     margin: 0;
	line-height: 1.6;
}

.thankyou-actions {
   display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom     :      3rem;
}

.thankyou-contact {
  padding-top: 2rem;
   border-top: 2px solid #e2e8f0;
}



.thankyou-contact p {
 color: #4a5568;
   margin-bottom:      0.75rem;
}

.phone-highlight {

	    font-size: 1.5rem;
  font-weight: 600;
  color: #667eea;
	}@media (max-width: 968px) {
    .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: initial;
    }

    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .service-details-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 4rem 2rem 3rem;
    }

    .header-content h1 {
        font-size: 2.25rem;
    }

    .header-content p {
        font-size: 1.1rem;
    }

    .service-detail-content h2 {
        font-size: 1.85rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-info-box {
        padding: 2rem;
    }

    .next-step-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .step-icon-small {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .service-detail-card {
        margin-bottom: 4rem;
    }

    .service-icon-box {
        width: 60px;
        height: 60px;
    }

    .service-detail-content h2 {
        font-size: 1.65rem;
    }

    .thankyou-icon {
        width: 80px;
        height: 80px;
    }
}