* {

    margin: 0;
   padding: 0;
    box-sizing: border-box;


}

html, body {
		width: 100%;
  height: 100%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
	  color: #2c3e50; 
		 line-height   : 1.6; 
		background-color: #fafbfc;
}

a {
         text-decoration: none;
   color: inherit;


}

button {
    cursor   :pointer;
    border: none;
	 background: none;
}

input, textarea, select {
   font-family: inherit;
}

img {


    max-width: 100%;
  height: auto;
   display: block;
	
     }

.nav-main {
   	background  : #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
    top: 0;
  z-index: 1000;

}

.nav-container {
  max-width: 1200px;
	margin: 0 auto;
  display: flex;
	justify-content: space-between;
  align-items: center;
      padding: 1rem 2rem;


}

.nav-branding {
   flex: 0 0 auto;
} 

.nav-logo {
          height: 45px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nav-links   {
   display: flex;
   list-style: none;
  gap  : 2.5rem;
   align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
	color: #2c3e50;
	transition: color 0.3s ease;
}

.nav-links a:hover{
    color: #3498db;
}

.btn-nav-cta


{
	 background: #3498db !important;
  color: #fff !important;
    padding: 0.6rem 1.4rem !important;
   border-radius: 6px;
    font-size: 0.9rem !important;
}

.btn-nav-cta:hover {

	    background: #2980b9 !important;


}

.burger-menu {
               display: none;
  flex-direction:  column;
   gap: 5px;
    background: none;
    border: none;
}



.burger-line	{

	  width   : 25px; 
	  height: 3px; 
	 background: #2c3e50; 
	  border-radius: 2px; 
	   transition: all 0.3s ease;


}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translateY(12px);
}

.burger-menu.active .burger-line:nth-child(2) {
          opacity :    0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-12px);
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color  :        #fff;
   padding: 4rem 2rem;
    display: grid;
    grid-template-columns   : 1fr 1fr;
   gap: 3rem;
  align-items :  center;
  max-width     :  1400px;
  margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
  line-height: 1.2;
   margin-bottom: 1.5rem;
}

.hero-subtitle {
   font-size: 1.1rem;

	   margin-bottom: 2rem;

	    opacity: 0.95;

	               line-height: 1.7;
}

.hero-image {

	 width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	}

.btn-primary {


    display: inline-block;
    background   :        #3498db;
   color: #fff;
  padding    :     0.85rem 2rem;
          border-radius: 6px;
    font-weight: 600;
   transition: all 0.3s ease;
    font-size: 1rem;}

.btn-primary:hover {
	background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3); 
	
}

.btn-large {


    padding: 1rem 2.5rem;
  font-size: 1.1rem;}


.btn-submit {
  width: 100%;

	         padding: 0.9rem;

	   margin-top: 1rem;
}

.offerings-section {
   padding: 5rem 2rem;
   max-width: 1200px;
     margin: 0 auto;
}

.offerings-section h2 {
   text-align: center;
   font-size: 2.5rem;
         margin-bottom :  3.5rem;
   color: #2c3e50;


}

.offerings-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.offering-card {

    background: #fff;
         padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
    text-align :    center;

}

.offering-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.offering-icon {
  margin-bottom: 1.5rem;
}

.offering-icon img {


    width :        50px;
    height: 50px;
      margin: 0 auto;
  filter: drop-shadow(0 0 8px #667eea);
    transition: all 0.3s ease;
     }



.offering-card:hover .offering-icon img 
 {
  filter: drop-shadow(0 0 12px #764ba2);
  transform: scale(1.1);
}

.offering-card h3 {
    font-size: 1.4rem;
          margin-bottom: 1rem;
   color: #2c3e50;
}

.offering-card p {
    color     :    #555;
    line-height: 1.7;
   font-size :       0.95rem;


}

.story-section  
  {
   display: grid;
  grid-template-columns     :        1fr 1fr;
    gap: 3rem;
  align-items: center;
    padding   : 4rem 2rem;
	max-width: 1200px;
   margin: 0 auto;
    background: #f8f9fa;
               border-radius: 12px;
    margin: 3rem auto;
}

.story-image {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.story-content h2


{
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
   color: #2c3e50;
}

.story-content p {
	 margin-bottom: 1.2rem;
    line-height     :1.8;
    color: #555;
    font-size: 0.95rem;
}

.benefits-section {
    padding: 4rem 2rem; 
	  max-width: 1200px; 
	  margin: 0 auto;
} 

.benefits-section h2 {
	    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem; 
	}

.benefits-list{
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
          gap  :  2rem;
}

.benefit-item  {
    background: #fff;
   padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06); 

}

.benefit-icon {
	    width: 35px;
    height: 35px;
   margin-bottom: 1rem;
  filter: drop-shadow(0 0 5px #2ecc71);
	}  

.benefit-item h4 {
  font-size: 1.15rem;
  margin-bottom  :        0.5rem;
  color: #2c3e50;
}

.benefit-item p {

	         color: #777;
    font-size: 0.9rem;}

.work-life-section {
  background: linear-gradient(to right, #f8f9fa, #fff);
    padding: 3.5rem 2rem;
   display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  max-width: 1200px;
	margin     : 3rem auto;
    border-radius: 10px;
}

.wl-image {


    border-radius : 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  order :    2;
     }

.wl-content   {
    order: 1;
}

.wl-content h2 {


   font-size   :       2.1rem;
      margin-bottom: 1.5rem;
	 color: #2c3e50;

}

.wl-content p {
    color: #555;
       line-height: 1.8;
       margin-bottom: 1.5rem;
      font-size: 0.95rem;
}

.wl-features {
  display: flex;
    flex-wrap    :  wrap;
    gap: 1rem;


}

.feature-tag {
   background: #e8f4f8;
	 color : #2980b9;
	 padding: 0.6rem 1.2rem;
   border-radius:   20px;
    font-size  :0.85rem;
    font-weight:        500;
   border: 1px solid #b3d9e8; 

}

.cta-section {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color:  #fff;
   padding: 4rem 2rem;
  text-align  : center;
   margin: 3rem 0;
}

.cta-box {
	 max-width: 600px;
	 margin: 0 auto;
}

.cta-box h2 {
    font-size     :        2.5rem;
  margin-bottom: 1rem;
}

.cta-box p

{
    font-size: 1.05rem;
    margin-bottom: 2rem;
		 opacity: 0.95;
}

.contact-section {
    padding: 5rem 2rem;
   max-width: 800px;
   margin: 0 auto;
}

.contact-section h2 {
    text-align: center;
   font-size: 2.3rem;
    margin-bottom: 1rem;
}

.contact-intro {
  text-align    :       center;
   color: #666;
   margin-bottom  :   3rem;
    font-size: 1rem;
	}

.contact-form {
   background: #fff;
	  padding: 2.5rem;
	    border-radius: 10px;
	  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {

     display   :    block;
   font-weight: 600;
   margin-bottom: 0.6rem;
    color: #2c3e50;
    font-size: 0.95rem;
     }

.form-group input,
.form-group textarea,
.form-group select

{
    width: 100%;
    border: 1px solid #ddd;
  transition: border-color 0.3s ease;
	 padding: 0.85rem;
   font-size: 0.95rem;
  border-radius     :     6px; 

}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
     outline: none;
	border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
  font-family     :  inherit;
  resize: vertical;
}

.footer-main {
  background: #1a1f2e;
   color: #ecf0f1;
   padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
	
}

.footer-wrapper {

	 max-width: 1200px;
  margin: 0 auto;
    display:      grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 2.5rem;
   margin-bottom   :     2rem;


}

.footer-logo {
  height: 40px;
   width: auto;
  margin-bottom:       1rem;
  filter: brightness(0) invert(1);
}

.footer-main h4 {
    margin-bottom: 1rem;
    color: #fff;
  font-size: 1rem;
}

.footer-main p {
    color: #b8c5d6;
       font-size  :     0.9rem;
       line-height: 1.7;
     margin-bottom: 0.5rem;
}

.footer-links ul {
	list-style     :     none;
}

.footer-links li    {
  margin-bottom: 0.5rem;
}  

.footer-links a {
    color     :   #b8c5d6;
  transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {

	    color: #3498db;
	}


.footer-bottom {
    padding-top: 1.5rem;
		font-size: 0.85rem;
   border-top: 1px solid #2c3640;
   color: #7f8a99;
    text-align: center;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1.5rem 2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .story-section {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .work-life-section {
        grid-template-columns: 1fr;
    }

    .wl-image {
        order: 1;
    }

    .wl-content {
        order: 2;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .offerings-section h2,
    .benefits-section h2 {
        font-size: 1.8rem;
    }

    .story-content h2,
    .wl-content h2 {
        font-size: 1.6rem;
    }

    .contact-section h2 {
        font-size: 1.7rem;
    }

    .nav-container {
        padding: 0.8rem 1rem;
    }

    .nav-logo {
        height: 35px;
    }
}.services-header {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color: #fff;
     padding: 3.5rem 2rem;
  text-align: center;
    max-width: 100%;
}

.services-header h1 {


  font-size: 2.8rem;
  font-weight: 700;
	margin-bottom:  1rem;
     }

.services-header p {
    font-size: 1.15rem;
 opacity: 0.95;
}  

.service-detail-section {

	  padding: 4rem 2rem;
   max-width  : 1200px;
  margin    :0 auto;

}

.service-detail {

	display: grid;
				 grid-template-columns: 1fr 1fr;
     gap: 3rem;
  align-items: center;
    margin-bottom: 4.5rem;
    background: #f9fafb;
    padding: 2.5rem;
  border-radius: 10px;
  border: 1px solid #e8ecf1; 
	


} 

.service-detail-1, .service-detail-3, .service-detail-5 {
   grid-template-columns: 1fr 1fr;
}

.service-detail-2, .service-detail-4 {

  grid-template-columns: 1fr 1fr; 
}

.service-detail-2 .service-detail-content {
   order: 2;
}

.service-detail-2 .service-image {
  order: 1;
}

.service-detail-4 .service-detail-content    {
  order: 2;

}

.service-detail-4 .service-image {
    order  :        1;
}

.service-detail-content h2 {
  font-size: 2rem;
    color: #2c3e50;
  margin-bottom: 1.2rem;
}

.service-detail-content p {
      line-height: 1.8;
   font-size: 0.95rem;
   color: #555;
    margin-bottom: 1.5rem;

}

.service-image		{
  width: 100%;
   border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.service-detail:hover .service-image {
  transform: scale(1.02);
}

.service-highlights {
	   display: flex;
  flex-direction: column;
   gap: 1rem;
   margin: 1.5rem 0;
     }  

.highlight {

	          gap: 1rem;

	  background: #fff;

	  border-radius   :        6px;

	  display: flex;

	  padding: 1rem;

		 border-left: 3px solid #2ecc71;

		 transition    :      all 0.3s ease;

	    align-items: center;
}

.highlight:hover {
  box-shadow: 0 4px 10px rgba(46, 204, 113, 0.15);
  transform: translateX(5px);
} 

.highlight-icon {
    width: 22px;

	          height: 22px;

	               flex-shrink: 0;

	  filter: drop-shadow(0 0 4px #2ecc71);
}

.highlight span {
    color: #333;
    font-weight :       500;
    font-size: 0.9rem;
}

.service-price {

	  font-size: 1.3rem;
   font-weight: 700;
  color: #3498db;
   margin-top   :     1.5rem;
   padding-top: 1.5rem;
	border-top: 2px solid #ecf0f1;



}

.comparison-section {
  padding: 4rem 2rem;
	max-width: 1200px;
   margin: 3rem auto;
   background  :  #f8f9fa;
    border-radius: 10px;

}

.comparison-section h2 {
      text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
   color   :   #2c3e50;
	}

.comparison-table {
        background: #fff;
  border-radius    :       8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.comparison-row {
	        display: grid;
  grid-template-columns: repeat(4, 1fr);
   border-bottom: 1px solid #e8ecf1;


}

.comparison-row.header-row {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
  font-weight: 700;


     }

.comparison-cell		{
   padding : 1.5rem;
    font-size :0.9rem;
}

.header-row .comparison-cell


{
	color: #fff;
	 font-weight: 700;
}  

.comparison-row:nth-child(even):not(.header-row) {
    background: #f9fafb;
}

.comparison-row:hover:not(.header-row) {
	  background: #ecf4ff;
     }

.services-cta {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: #fff;
   padding: 3.5rem 2rem;
          text-align: center;
         margin: 3rem 0;
}

.services-cta h2 {
  margin-bottom:      1rem;
    font-size: 2.2rem;
}

.services-cta p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.thankyou-main
{
    padding: 5rem 2rem;
   max-width: 700px;
    margin  :     2rem auto;
    text-align:     center;
}

.thankyou-container {
    background: #fff;
	 padding: 3rem;
  border-radius     :  12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.thankyou-icon {
   margin-bottom: 2rem; 

}

.success-icon {


   width: 80px;

    height: 80px;

   margin: 0 auto;

  filter: drop-shadow(0 0 10px #2ecc71);

   animation: popIn 0.5s ease;}@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-main h1 {
     font-size: 2.2rem;
        color: #2c3e50;
    margin-bottom:    1rem;
     }

.thankyou-subtitle {
     font-size: 1.1rem;
				 color: #2ecc71;
    font-weight: 600;
 margin-bottom: 2rem;


}

.thankyou-message {
	   background: #f0f8f4;
   border-left : 4px solid #2ecc71;
  padding  :    2rem;
  border-radius: 6px;
  margin: 2rem 0;
    text-align: left;
	}

.thankyou-message h2 {
        color: #27ae60;
    font-size: 1.3rem;
  margin-bottom: 1rem;

}

.thankyou-message p {
    color: #555;
 line-height: 1.8;
	margin-bottom: 1rem;
      font-size   :  0.95rem;
}

.thankyou-message p:last-child


{
  margin-bottom: 0;
}

.next-steps {


	 text-align: center;
    margin    :       3rem 0;
     }

.next-steps h3 {
   font-size: 1.4rem;
	    margin-bottom    : 2rem;
	   color    : #2c3e50;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 2rem;
}

.step-item {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  padding: 2rem 1.5rem;
	border-radius: 10px;
  border:    1px solid #667eea30;
}

.step-number {
	 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-size: 1.5rem;
  font-weight: 700;
	margin: 0 auto 1rem;
}

.step-item h4 {
 color:        #2c3e50;
    font-size: 1rem;
  margin-bottom: 0.5rem; 
	
}

.step-item p {
   color: #666;
 font-size: 0.85rem;
  line-height:      1.6;
}

.thankyou-actions {
   display    :        flex;
        gap     :  1.5rem;
   justify-content: center;
  margin: 2.5rem 0;
 flex-wrap: wrap;


}

.btn-secondary {
    display: inline-block;
    background:        #ecf0f1;
    color: #2c3e50;
   padding: 0.85rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
  font-size: 1rem;
	border:        1px solid #bdc3c7;
}

.btn-secondary:hover {
   background: #d5dbdb;
  transform: translateY(-2px);
}

.info-box {
  background: #fff9e6;
	border: 1px solid #f39c12;
  border-radius: 8px;
      padding    :     1.5rem;
    margin-top: 2rem;
  text-align: left;
}

.info-box h4 {
  color: #e67e22;
   margin-bottom: 0.5rem;
}

.info-box p     {


   color: #555;
  font-size: 0.9rem;
	 line-height: 1.7;
	}

.testimonials-section-ty {
   padding: 4rem 2rem;
	max-width: 1200px;
  margin:      3rem auto;
   background: #f8f9fa;
    border-radius:    10px;
}

.testimonials-section-ty h2 {

  text-align: center;
  font-size: 2rem;
  margin-bottom  :        3rem;
  color: #2c3e50;


}

.testimonials-grid {
    display :      grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
	
}

.testimonial-card {

	background:#fff;
  padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-left: 4px solid #3498db;
  transition: all 0.3s ease;
	}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.testimonial-text
{
  color: #555; 
	line-height: 1.8; 
  margin-bottom: 1.5rem; 
    font-size: 0.95rem;
}

.testimonial-card h4 {
   color: #3498db;
  font-size:     1rem;
    font-weight     :       700;
}@media (max-width: 768px) {
    .services-header h1 {
        font-size: 2rem;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-2 .service-detail-content,
    .service-detail-4 .service-detail-content {
        order: 1;
    }

    .service-detail-2 .service-image,
    .service-detail-4 .service-image {
        order: 2;
    }

    .comparison-row {
        grid-template-columns: 1fr 1fr;
    }

    .comparison-cell {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-actions a {
        width: 100%;
        text-align: center;
    }

    .services-cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .services-header h1 {
        font-size: 1.6rem;
    }

    .service-detail {
        padding: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.4rem;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-main h1 {
        font-size: 1.5rem;
    }

    .next-steps h3 {
        font-size: 1.1rem;
    }

    .testimonials-grid {
        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 {
   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;
    }
}