body {
  margin: 0;
font-family: 'Rubik', sans-serif;
background: #f4f9ff;
  color: #222;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 1rem;
}

header {
  background: #fff;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-title {
  display: flex;
  align-items: center;
}

/* Site title style */
.header-wrapper h1 {
  font-size: 1.5rem;
  margin: 0;
  color: #1c6939;
  font-weight: 600;
}

.logo {
  height: 100px; /* Adjust the height as needed */
}

h1 {
  font-size: 2rem;
  margin: 0;
}

.contact-btn {
  float: right;
  color: #fff;
  background: #1c6939;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}
.contact-btn:hover {
 background:#bdeac8;
}
.hero {
  background-color: #bdeac8;
  color: white;
  text-align: center;
  padding: 0rem 1rem 6rem;
  position: relative;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: black;
  margin-top: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: black;
}

.input-icon {
  position: relative;
  margin-bottom: 1.5rem; /* more space for error */
}

.input-icon i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #999;
  font-size: 1rem;
  pointer-events: none;
  z-index: 1;
}

.input-icon input {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem; /* space for icon */
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}

.input-icon input.is-invalid {
  border-color: #dc3545;
  background-color: #ffe6e6;
}

.input-icon .error-message {
  display: none;
  position: absolute;
  top: 100%; /* places it just below input */
  left: 0;
  width: 100%;
  padding: 0.5rem;
  color: #dc3545;
  background: #ffe6e6;
  border-radius: 6px;
  font-size: 0.85rem;
  box-sizing: border-box;
}



.lead-form {
  max-width: 800px;
  margin: auto;
  background: rgba(255,255,255,0.95);
  padding: 2rem;
  padding-bottom: 1px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.1);
  color: #333;
}
.lead-form input,
.lead-form textarea,
.lead-form button {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.text-danger {
  color: #dc3545;
  font-size: 0.9rem;
  display: block;
  margin-top: 4px;
}

/* === Error Input Border === */
input.is-invalid,
input.input-error {
  border: 2px solid #dc3545;
}

/* === General Error Message === */
.error-message {
  color: #d93025;
  background: #ffeaea;
  border: 1px solid #ffbcbc;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 5px;
  display: block;
}

.lead-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-align: left;
  font-size: 22px;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid;
  border-radius: 8px;
  font-size: 20px;
  padding-left: 2rem;
}

.lead-form button {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  background: #1c6939;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.lead-form button:hover {
  background-color: #bdeac8; /* Darker green shade */
}
.is-invalid {
  border: 1px solid red;
  background-color: #fff0f0;
}
.form-disclaimer{
    font-size: 18px !important;
    padding-top: 4rem;
}

/* ------- Our Mission Section Styles ------- */

.mission-section {
  background: #f9f9f9;
  padding: 4rem 1rem;
  text-align: center;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.section-heading h2 {
  font-size: 2rem;
  color: #1c6939;
  margin: 0;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.line {
  position: relative;
  height: 2px;
  background-color: #1c6939;
  width: 0;
  max-width: 80px;
  transition: width 1s ease;
}

.line::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #1c6939;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 1s ease 0.5s;
}

/* Animation Trigger */
.animate-line {
  animation: growLine 1s forwards;
}

.animate-line::after {
  animation: showDot 1s forwards 1s;
}

@keyframes growLine {
  from { width: 0; }
  to { width: 80px; }
}

@keyframes showDot {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mission-section p {
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}


/* ------- Our Mission Section Styles end ------- */

/* ------- what we do best section starts ---*/
/* What We Do Best Section */
.email-services {
  background: #bdeac8;
  padding: 4rem 1rem;
}

.email-service-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.email-service-list li {
  background: #ffffff;
  padding: 1.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  font-size: 1.05rem;
  color: #000;
  line-height: 1.6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.email-service-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.email-service-list strong {
  color: #1c6939;
  font-weight: 600;
}


/* Reusable Section Title With Animated Lines */
.section-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-title {
  color: #1c6939;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  position: relative;
}

.section-line {
  color: #1c6939;
  font-weight: bold;
  font-size: 1.4rem;
  opacity: 0;
  transform: scaleX(0);
  animation: drawLine 0.8s forwards;
}
.solid-line {
  flex: 1;
  height: 2px;
  background-color: #1c6939;
  position: relative;
  max-width: 100px;
  animation: lineGrow 0.6s ease forwards;
}


.left-line {
  animation-delay: 0.3s;
}

.right-line {
  animation-delay: 0.5s;
}

@keyframes drawLine {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
/* ------- what we do best section ends-*/




/* ============================= */
/*      HOW OUR SERVICES WORK    */
/* ============================= */

/* ============================= */
/* HOW OUR SERVICES WORK Section */
/* ============================= */

.fancy-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.heading-text {
  color: #1c6939;
  font-size: 2rem;
  font-weight: bold;
  padding: 0 0.5rem;
  text-align: center;
}

.line {
  flex: 1;
  max-width: 100px;
  height: 2px;
  background-color: #1b6739;
  position: relative;
  opacity: 0;
  animation: growLine 1s forwards;
}

.left-line::after,
.right-line::after {
  content: ".";
  position: absolute;
  right: -10px;
  top: -10px;
  font-size: 2rem;
  color: #1c6939;
  font-weight: bold;
}

.left-line::after {
  right: auto;
  left: -10px;
}

@keyframes growLine {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Steps Grid */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.step-box {
  background: #bdeac8;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number {
  font-size: 2rem;
  font-weight: bold;
  color: #1c6939;
  background: white;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px solid #1c6939;
}

.step-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: black;
}

.step-box p {
  color: black;
  font-size: 1rem;
}
/* ============================= */
/*      HOW OUR SERVICES WORK ends   */
/* ============================= */

/* ===== Why Choose Us Section ===== */

.why-choose-us {
  background: #bdeac8;
  padding: 4rem 1rem;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.why-card {
  background: #bdeac8;
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card .icon {
  font-size: 2.5rem;
  color: #1c6939;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: black;
}

.why-card p {
  color: black;
  font-size: 1rem;
}

/* Reuse animated heading from other sections */
.why-choose-us .fancy-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.why-choose-us .heading-text {
  color: #1c6939;
  font-size: 2rem;
  font-weight: bold;
  padding: 0 0.5rem;
  text-align: center;
}

.why-choose-us .line {
  flex: 1;
  max-width: 100px;
  height: 2px;
  background-color: #1c6939;
  position: relative;
  opacity: 0;
  animation: growLine 1s forwards;
}

.why-choose-us .left-line::after,
.why-choose-us .right-line::after {
  content: ".";
  position: absolute;
  font-size: 2rem;
  color: #1c6939;
  font-weight: bold;
  top: -10px;
}

.why-choose-us .left-line::after {
  left: -10px;
}

.why-choose-us .right-line::after {
  right: -10px;
}

/* ===== Why Choose Us Section ends ===== */


/* ===== Service Plans & Pricing Section ===== */

.plans-section {
  padding: 40px 20px;
  background: #f8fdf9;
  color: #1c6939;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2em;
  color: #1c6939;
}

.section-subtitle {
  text-align: center;
  color: #4e8f65;
  margin-bottom: 40px;
}

.plans-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.plan-card {
  background: #fff;
  border: 2px solid #bdeac8;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(28, 105, 57, 0.1);
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.featured {
  background: #bdeac8;
  border-color: #1c6939;
}

.plan-card h3 {
  margin-top: 0;
  font-size: 1.5em;
  color: #1c6939;
}

.price {
  font-size: 1.75em;
  font-weight: bold;
  color: #1c6939;
  margin: 10px 0;
}

.plan-card ul {
  list-style: none;
  padding: 0;
}

.plan-card li {
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.icon {
  margin-right: 10px;
  font-size: 1.2em;
}
.scroll-btn {
  background-color: #1c6939; /* Dark green */
  color: #ffffff;
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.scroll-btn:hover {
  background-color: #bdeac8; /* Mint green on hover */
  color: #1c6939; /* Optional: Keep text visible on mint */
}


.how-it-works, .remote-support {
  margin-top: 40px;
  background: #e6f8ee;
  padding: 20px;
  border-left: 5px solid #1c6939;
  border-radius: 8px;
}

.how-it-works h3, .remote-support h3 {
  margin-top: 0;
  color: #1c6939;
}


 
/* ===== Service Plans & Pricing Section end ===== */


/* ===== contact info start===*/
.contact-info-section {
  background: #fff;
  padding: 3rem 1rem;
  text-align: left;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-box h4 {
  color: #1c6939;
  margin-bottom: 0.5rem;
}

.info-box p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #333;
}

/* ===== footer start ===*/


.footer {
  background: #eaeaea;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
}

.footer .note {
  font-size: 1.0rem;
  color: #444;
  margin-bottom: 0.5rem;
}

.footer a {
  color: #1c6939;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
