* {
  margin: 0;
   padding  :       0;
  box-sizing: border-box;
}  

html    {
  scroll-behavior  :        smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
  line-height: 1.6; 
    color:     #2c3e50; 
   background: #ffffff;
}

.container {
  max-width: 1200px;
    margin: 0 auto;
  padding   : 0 20px;
}

.navbar {
  background: linear-gradient(135deg, #1e7e34 0%, #2d5a2d 100%);
   padding: 1rem 0;
  position: sticky;
    top: 0;
   z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-container {
   max-width     :     1200px;
    margin: 0 auto;
    padding: 0 20px;
	display: flex;
    justify-content: space-between;
	align-items  :center;
}

.nav-logo img


{
    height: 45px;
  filter: brightness(0) invert(1);
}

.nav-menu {
   display: flex;
   list-style: none;
  gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
   font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover    {
       color    :    #a8e6c1;
}

.nav-toggle {
   cursor: pointer;
    gap: 6px;
	 flex-direction: column;
   display: none;
}

.hamburger {

  width: 25px;
  height: 3px;
 background: white;
    transition: all 0.3s ease;


}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e7e34;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}.hero {
    display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
  padding: 4rem 0;
  min-height: 600px;
}

.hero-content h1 {
    font-size   :        3.5rem;
	 color: #1e7e34;
    margin-bottom: 1rem;
    line-height    :       1.2;
}

.hero-content p {

   font-size  :    1.1rem;
   color: #555;
   margin-bottom: 2rem;

}

.hero-image img {
  width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button {
                    display: inline-block;
  background: linear-gradient(135deg, #1e7e34 0%, #2d5a2d 100%);
    color: white;
  padding: 14px 35px;
  border-radius: 8px;
    text-decoration: none;
   font-weight: 600;
    transition: all 0.3s ease;
    border :     2px solid #1e7e34;

}

.cta-button:hover {
   background: white;
    color: #1e7e34;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 126, 52, 0.3);
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}.services-preview {
  padding: 5rem 0;
 background: #f8fafb;
}

.services-preview h2 {
   font-size: 2.5rem;
   text-align: center;
    margin-bottom: 3rem;
   color: #1e7e34;


}

.services-grid 
 {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap    :        2rem;
}

.service-card

{
  background: white;
   border-radius: 12px;
                    overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
               transition: all 0.3s ease;
}

.service-card:hover
{
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(30, 126, 52, 0.2);
}

.service-card img


{
   width:     100%;
  height: 220px;
    object-fit   : cover;
}

.service-card h3 {

  font-size :  1.3rem; 
	   color :  #1e7e34; 
	   padding: 1.5rem 1.5rem 0.5rem;
     }

.service-card p {
  color: #666;
  font-size: 0.95rem;
  padding: 0 1.5rem 1.5rem;
}

.expertise {
   padding     :     5rem 0;

}

.expertise h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e7e34;
}

.expertise-content {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2.5rem;
}

.expertise-item {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(30, 126, 52, 0.05) 0%, rgba(45, 90, 45, 0.05) 100%);
    border-left: 4px solid #1e7e34;
  border-radius: 8px;
}

.expertise-item h3 {
  color: #1e7e34;
   margin-bottom: 1rem;
   font-size: 1.3rem;
}

.expertise-item p {
	  color: #555;
    line-height     : 1.7;


}



.cta-section {
  background: linear-gradient(135deg, #1e7e34 0%, #2d5a2d 100%);
    color: white;
   padding: 5rem 0;
   text-align     :   center;
}

.cta-section h2 {
        font-size: 2.5rem;
   margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
	 margin-bottom     :      2rem;
    opacity   : 0.95;
}

.cta-button-large


{
  display: inline-block;
    background  :    white;
	color: #1e7e34;
  padding  :16px 40px;
    border-radius: 8px;
               text-decoration  :none;
    font-weight   :      700;
    transition: all 0.3s ease;
   border: 2px solid white; 
	
}


.cta-button-large:hover {
   background: transparent;
   color: white;
  transform: scale(1.05);
}

.contact-section  {
  padding: 5rem 0;
	 background: #f8fafb;
}

.contact-section h2 {
   font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #1e7e34;}

.contact-form {
      max-width: 600px;
     margin: 0 auto;
         background  :      white;
    padding: 3rem;
          border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
     }

.form-group {
     margin-bottom: 1.5rem;}

.contact-form input,
.contact-form select,
.contact-form textarea{


    width: 100%;
	 padding: 12px 15px;
  border: 2px solid #e0e0e0;
    border-radius   : 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none; 
       border-color: #1e7e34; 
  box-shadow: 0 0 0 3px rgba(30, 126, 52, 0.1);
}

.submit-btn {
	width: 100%;
  background: linear-gradient(135deg, #1e7e34 0%, #2d5a2d 100%);
      color: white;
      padding    :  14px 20px;
  border: none;
    border-radius: 6px;
  font-size: 1rem;
         font-weight: 600;
  cursor: pointer;
    transition: all 0.3s ease; 

}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 126, 52, 0.3);
}

.footer {
          background: #1a1a1a;
    color :  white;
  padding: 4rem 0 2rem;
}

.footer-container
	{
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 20px; 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
	 gap: 2rem; 
   margin-bottom    :        2rem;
}

.footer-section h4 {

		color: #a8e6c1;
          margin-bottom: 1rem;
     font-size: 1.1rem;}

.footer-logo {
    height : 50px;
  filter: brightness(0) invert(1);
}

.footer-section ul    {
	   list-style: none;

}



.footer-section ul li {
  margin-bottom: 0.8rem;

}

.footer-section a {
  color: #ccc;
		 text-decoration: none;
	   transition: color 0.3s ease;
}

.footer-section a:hover {
      color: #a8e6c1;


}

.footer-section p {
   color: #aaa;
   line-height: 1.8;
}

.footer-bottom {

	   text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
  color  :       #888;


}@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}.services-hero {


  background: linear-gradient(135deg, #1e7e34 0%, #2d5a2d 100%);
       color: white;
      padding: 4rem 0;
      text-align: center; 
}

.services-hero h1 {
    font-size: 3rem;
               margin-bottom: 1rem;
}

.services-hero p {
	font-size: 1.2rem;
        opacity: 0.95;

}

.services-detailed {
  padding: 5rem 0;
}

.service-detailed-item {
    display  :        grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
    margin-bottom: 5rem;
}

.service-detailed-item.reverse {
  direction: rtl;
}

.service-detailed-item.reverse > * {
   direction: ltr;
}

.service-detailed-item h2 {
	     font-size: 2rem;
  color: #1e7e34;
   margin-bottom    :     1.5rem;}

.service-detailed-item p {

		color: #555;
   margin-bottom: 1.5rem;
  line-height: 1.8;}

.service-list {
    list-style: none;

	  margin-bottom:    1.5rem;

}

.service-list li {
   padding: 0.7rem 0 0.7rem 1.8rem;
    position  : relative;
  color: #666;
  line-height: 1.6;
}

.service-list li::before {
  content: "▸";
    position: absolute;
	 left: 0;
   color: #1e7e34;
 font-weight: bold;
}  

.service-duration {

	   background: #f0f8f4;
   padding: 1rem;
		border-radius: 6px;
  border-left: 4px solid #1e7e34;
 color: #333;
  margin-bottom: 1.5rem;


}



.service-cta-btn {
    display    :       inline-block;
  background: linear-gradient(135deg, #1e7e34 0%, #2d5a2d 100%);
   color :       white;
	padding: 12px 28px;
   border-radius:  6px;
        text-decoration:      none;
  font-weight: 600;
	transition  :  all 0.3s ease;
}

.service-cta-btn:hover  {
   background: white;
  color: #1e7e34;
  box-shadow: 0 8px 20px rgba(30, 126, 52, 0.3);
  transform: translateY(-2px);
}

.service-image-left img,
.service-image-right img {
   width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .service-detailed-item {
        grid-template-columns: 1fr;
        margin-bottom: 3rem;
    }

    .service-detailed-item.reverse {
        direction: ltr;
    }

    .services-hero h1 {
        font-size: 1.8rem;
    }

    .service-detailed-item h2 {
        font-size: 1.4rem;
    }
}.pricing-section{
          padding: 5rem 0;
               background   :#f8fafb;
}

.pricing-section h2 {
  text-align    :   center;
    font-size: 2.5rem;
   color: #1e7e34;
          margin-bottom: 3rem;
}

.pricing-grid {
   display   :     grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;


}

.pricing-card {
    background: white;
               padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   text-align    :    center;
  transition   :   all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(30, 126, 52, 0.2);
}

.pricing-card.featured {
   border: 3px solid #1e7e34;
  transform: scale(1.05);
	
}

.featured-badge
	{
    position   : absolute;
   top    :      -15px;
   left: 50%;
  transform: translateX(-50%);
    background: #1e7e34;
  color: white;
   padding: 0.5rem 1rem;
	border-radius: 20px;
    font-size: 0.8rem;
				 font-weight: 700;
}

.pricing-card h3 {
	color   :    #1e7e34;

	  margin-bottom: 1rem;

	   font-size: 1.5rem;
}

.price {
   font-size: 1.2rem;
  color    :   #666;
  margin-bottom: 2rem;
  font-style: italic;
}

.pricing-features   {
  list-style  : none;
    text-align: left;
   margin-bottom: 2rem;
}

.pricing-features li {
		padding: 0.8rem 0 0.8rem 1.5rem;
  position: relative;
  color: #555;
    border-bottom: 1px solid #eee;
     }

.pricing-features li:last-child {
  border-bottom: none;


}

.pricing-features li::before {
  content: "✓";
   left: 0;
    font-weight: bold;
               position: absolute;
  color: #1e7e34;
}

.pricing-btn {
   display: inline-block;
       background  :#f0f0f0;
   color: #1e7e34;
   padding    :       12px 30px;
   border-radius     :       6px;
    text-decoration: none;
  font-weight: 600;
   transition    :      all 0.3s ease;
  border: 2px solid #1e7e34;
}

.pricing-btn:hover {
      background: #1e7e34;
    color: white; 
	
	}

.pricing-btn.featured-btn {
   background    : #1e7e34; 
	  color:  white;
}

.pricing-btn.featured-btn:hover {


   background: white;
   color: #1e7e34;
}@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}.why-choose {

	    padding: 5rem 0;
     }

.why-choose h2   {
    text-align: center;
    font-size: 2.5rem;
  color  :  #1e7e34;
   margin-bottom: 3rem;
}

.features-grid		{
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
					gap    :   2rem;
}

.feature-box {
  background: linear-gradient(135deg, rgba(30, 126, 52, 0.05) 0%, rgba(45, 90, 45, 0.05) 100%);
    padding: 2rem;
 border-radius: 12px;
	border-left:  4px solid #1e7e34;
}

.feature-box h3    {
   color: #1e7e34;
   font-size: 1.2rem;
	margin-bottom :  1rem;
}

.feature-box p {
                    color: #666;
  line-height: 1.6;
}

.cta-final {
  background: linear-gradient(135deg, #1e7e34 0%, #2d5a2d 100%);
    color: white;
   padding  :    4rem 0;
	text-align: center;
	


}

.cta-final h2 {
   font-size   :      2.5rem;
  margin-bottom :        1rem;
} 

.cta-final p {
  font-size: 1.1rem;
       margin-bottom: 2rem;
     opacity: 0.95;
}

.cta-button-final		{
  display: inline-block;
  background    :       white;
    color    :  #1e7e34;
    padding     :      14px 40px;
     border-radius: 8px;
    text-decoration    :        none;
  font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button-final:hover {

	  transform: scale(1.05);
	  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.thankyou-section {
		 padding: 5rem 0; 
	  background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%); 
	  min-height: calc(100vh - 200px); 
	  display: flex; 
	  align-items: center; 
	  justify-content: center;}

.thankyou-container {
	 margin: 0 auto;
  padding: 3rem;
    max-width: 600px;
    text-align: center;
}

.success-icon {
   width: 100px;
	height  : 100px;
    margin: 0 auto 2rem;
   color: #1e7e34;
  animation: scaleIn 0.6s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1 {
   font-size: 2.5rem;
	 color:       #1e7e34;
     margin-bottom :        0.5rem; 

}

.thankyou-subtitle {
    font-size    :      1.2rem;
   color: #666;
   margin-bottom: 2rem;
}



.thankyou-content {
    background: white;
    padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.thankyou-content p {
	    color: #555;
    line-height: 1.8;
  margin-bottom: 1rem;
     }

.next-steps {
   border-radius    :   10px;
    background:   #f0f8f4;
  text-align: left;
        padding: 2rem;
    margin: 2rem 0;
}

.next-steps h3 {
    color    :#1e7e34;
    margin-bottom: 1rem;
	text-align: center;
} 

.steps-list {
   list-style: none;
   counter-reset: step-counter;
}

.steps-list li {
   counter-increment   :step-counter;
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
  color: #555;
}

.steps-list li::before {
  content: counter(step-counter);
   position: absolute;
    left: 0;
    top   :    0;
  background: #1e7e34;
    color: white;
  width: 24px;
               height :        24px;
    border-radius: 50%;
  display: flex;
    align-items: center;
      justify-content: center;
    font-weight: bold;
   font-size: 0.9rem;
}

.contact-info-box {
			background: #f0f8f4;
    padding: 1.5rem;
  border-radius: 10px;
    margin: 1.5rem 0;
}

.contact-info-box h3 {

	   color     :       #1e7e34;
	margin-bottom: 1rem;



}

.phone-display {
    margin :   1rem 0;
   color: #1e7e34;
  font-size:        1.5rem;
    font-weight: bold;
}

.small-text {
               font-size: 0.9rem;
  color: #888;
}

.thankyou-actions {
    display: flex;
          gap     :  1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-home,
.btn-services {
  transition: all 0.3s ease;
	 border-radius: 8px;
   display: inline-block;
	 text-decoration: none;
    padding: 12px 30px;
    font-weight: 600;
}

.btn-home {
  background: linear-gradient(135deg, #1e7e34 0%, #2d5a2d 100%);
  color     :  white;
}

.btn-home:hover {

  transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(30, 126, 52, 0.3);

}

.btn-services {
       color: #1e7e34;
         background: white;
  border   :   2px solid #1e7e34;
}

.btn-services:hover {

	   background: #1e7e34;
   color    : white;

}

.similar-interest {
   background: white;
   padding :     4rem 0;
}

.similar-interest h2
	{
      font-size: 2rem;
    color   :   #1e7e34;
  margin-bottom: 2rem;
    text-align: center;
}

.interest-grid {
  display  :  grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;


}

.interest-card {
	background   :        #f8fafb;
	padding: 2rem;
    border-radius:     10px;
    border-top: 4px solid #1e7e34;
   transition: all 0.3s ease;
}

.interest-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.interest-card h3 {
         color: #1e7e34;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.interest-card p {

  line-height: 1.6;
   margin-bottom: 1rem;
  color: #666;


}

.interest-card a {
        display: inline-block;
   color: #1e7e34;
	text-decoration: none;
   font-weight: 600;
	 transition  :        all 0.3s ease;
}

.interest-card a:hover {
 color: #2d5a2d;
  text-decoration: underline;
}@media (max-width: 768px) {
    .thankyou-container {
        padding: 2rem 1rem;
    }

    .thankyou-section h1 {
        font-size: 1.8rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .btn-home,
    .btn-services {
        width: 100%;
    }
}.policySection 
 {
  padding: 80px 2rem;
  background: #f8fafb;
} 

.policyContainer {

	   max-width: 800px;
         margin   :   0 auto;
         text-align: left;
}

.policyContainer h1 {
   font-size: 2.8rem;
	color: #1e7e34;
  margin-bottom: 2rem;
    font-weight: 700;
}

.policyContainer h2 {
  font-size     :   1.8rem;
    color    :       #1e7e34;
  margin-top: 2rem;
  margin-bottom: 1rem;
		font-weight  :       700;
  border-bottom: 2px solid #a8e6c1;
          padding-bottom: 0.5rem;
}

.policyContainer h3 {
   color   :  #2d5a2d;
  margin-top: 1.5rem;
    font-size: 1.3rem;
	 margin-bottom: 0.8rem;
    font-weight :     600;
}

.policyContainer p {
  color: #555;
  margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1rem;
   text-align: justify;
}

.policyContainer ul
{
  list-style: none;
	 margin :      1.5rem 0;
    padding-left:  0;
}

.policyContainer li   {


    color: #555;
   line-height: 1.6;
   position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;}

.policyContainer li::before {
  content: "•";
    position: absolute;
  left: 0;
    color: #1e7e34;
	font-weight: bold;
   font-size: 1.2rem;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        text-align: left;
    }

    .policyContainer li {
        padding-left: 1.2rem;
    }
}.policyContainer h2,
.policyContainer h3 {

  transition: color 0.3s ease;
     }

.policyContainer h2:hover {
    color: #2d5a2d;
}@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer {
        max-width: 100%;
    }
}