:root {
  --primary-color: #16a34a;
  --secondary-color: #7de4a3;
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #083f1c;
  --text-color: #333;
  --light-text: #fff;
  --gray-bg: #f8f9fa;
  --text-white: #fff;
  --gray-up-text: #bbb;
  --dark-bg: #343a40;
  --dark-text: #000;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}
body {
  color: var(--text-color);
  font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  margin-bottom: 1rem;
}
a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--primary-color);
}
.btn {
  border-radius: 30px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
}
.btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn-primary:hover {
  background-color: #2980b9;
  border-color: #2980b9;
}
.btn-outline-light {
  border-color: var(--light-text);
  color: var(--light-text);
}
.btn-outline-light:hover {
  background-color: var(--light-text);
  color: var(--primary-color);
}
.section-header {
  margin-bottom: 3rem;
}
.section-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.section-header p {
  color: #666;
  font-size: 1.2rem;
}
.navbar {
  background-color: var(--text-white);
  padding: 1rem 0;
  transition: var(--transition);
}
.navbar-dark .navbar-nav .nav-link {
  color: var(--dark-bg);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition);
}
.navbar-dark .navbar-nav .nav-link:hover {
  border-bottom: 1px solid var(--primary-color);
}
.navbar-dark .navbar-nav .nav-link.active {
  border-bottom: 3px solid var(--primary-color);
  color: var(--primary-color);
}
.hamburger {
  background-color: #16a34a;
  border-radius: 10px;
  padding: 1.2em;
}
.navbar-dark .navbar-nav .nav-link.contact-btn {
  background-color: var(--primary-color);
  border-radius: 30px;
  color: var(--text-white);
  margin-left: 0.5rem;
  padding: 0.5rem 1.5rem;
}
.navbar-dark .navbar-nav .nav-link.contact-btn:hover {
  background-color: var(--secondary-color);
}
.nav-link.contact-btn:hover {
  text-decoration: none !important;
}
.logo {
  height: 52px;
}
.hero {
  align-items: center;
  background-attachment: fixed;
  background-image: url(../courthouse-bg.jpg);
  background-position: top;
  background-size: cover;
  color: var(--light-text);
  display: flex;
  min-height: 100vh;
  padding: 150px 0 100px;
  position: relative;
}
.hero:before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-content {
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-top: 15rem;
  padding: 2rem;
}
.hero-content h1 {
  font-size: 1em;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.typewriter-container {
  display: flex;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}
.typewriter {
  animation: typing 2s steps(3), blink-caret 0.75s step-end infinite;
  border-right: 0.15em solid orange;
  font-weight: "bold";
  overflow: hidden;
  white-space: nowrap;
}
@keyframes blink-caret {
  0%,
  to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}
@keyframes typing {
  0% {
    width: 0;
  }
  to {
    width: 86.5%;
  }
}
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0,
    var(--secondary-color) 100%
  );
  color: var(--light-text);
  padding: 111px 0 28px;
  text-align: center;
}
.page-header h1 {
  font-size: 3rem;
  margin-bottom: 0;
}
.page-header .lead {
  font-size: 1.25rem;
}
.features {
  background-color: var(--light-color);
}
.feature-card {
  background-color: var(--light-text);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  height: 100%;
  padding: 2rem;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-10px);
}
.feature-icon {
  color: var(--secondary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.how-it-works {
  background-color: var(--gray-bg);
}
.step-card {
  background-color: var(--light-text);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  height: 100%;
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-10px);
}
.step-number {
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 50%;
  color: var(--light-text);
  display: flex;
  font-size: 1.5rem;
  font-weight: 700;
  height: 50px;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 50px;
}
.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.testimonials {
  background-color: var(--light-color);
}
.testimonial-card {
  background-color: var(--light-text);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  height: 100%;
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-10px);
}
.testimonial-content {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-weight: 700;
  text-align: right;
}
.cta {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0,
    var(--secondary-color) 100%
  );
  color: var(--light-text);
}
.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.footer {
  background-color: var(--dark-bg);
  color: var(--light-text);
}
.footer-logo {
  background: #fff;
  border-radius: 10px;
  height: 53px;
  margin-bottom: 1rem;
  padding: inherit;
}
.footer h5 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: hsla(0, 0%, 100%, 0.8);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--light-text);
  text-decoration: none;
}
.team-section {
  background-color: var(--gray-bg);
}
.team-image-container {
  align-items: center;
  background-color: var(--light-text);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.team-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.team-image-placeholder {
  background-color: #e9ecef;
  color: #adb5bd;
  font-size: 8rem;
}
.team-member-info {
  padding: 1.5rem;
}
.team-member-info h2 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.team-member-info h5 {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.team-bio p {
  margin-bottom: 1rem;
}
.team-divider {
  border-top: 1px solid #333;
}
.what-is-it-section {
  background-color: var(--gray-bg);
}
.content-block {
  margin-bottom: 2rem;
}
.content-block h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.content-image {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}
.benefit-card,
.process-card,
.tech-card {
  background-color: var(--light-text);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  height: 100%;
  padding: 1.5rem;
  transition: var(--transition);
}
.benefit-card:hover,
.process-card:hover,
.tech-card:hover {
  transform: translateY(-10px);
}
.benefit-icon,
.process-icon {
  color: var(--secondary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.benefit-card h4,
.tech-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.mission-section {
  background-color: var(--gray-bg);
}
.vision-image {
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.value-card,
.vision-card,
.vision-image {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  height: 100%;
}
.value-card,
.vision-card {
  background-color: var(--light-text);
  padding: 1.5rem;
  transition: var(--transition);
}
.value-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
}
.value-icon,
.vision-icon {
  color: var(--secondary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.commitment-list {
  list-style: none;
  padding: 0;
}
.commitment-list li {
  align-items: flex-start;
  display: flex;
  margin-bottom: 1rem;
}
.commitment-list i {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin-right: 0.5rem;
}
.quote-section {
  background-color: var(--dark-bg);
  color: var(--light-text);
}
.quote-block {
  padding: 3rem 0;
}
.quote-icon {
  color: hsla(0, 0%, 100%, 0.3);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.quote-block h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1.5rem 0;
}
.faqs-section {
  background-color: var(--gray-bg);
}
.accordion-item {
  border: none;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin-bottom: 1rem;
  overflow: hidden;
}
.accordion-button {
  background-color: var(--light-text);
  box-shadow: none;
  color: var(--primary-color);
  font-weight: 600;
  padding: 1.5rem;
}
.accordion-button:not(.collapsed) {
  background-color: var(--secondary-color);
  color: var(--light-text);
}
.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}
.accordion-body {
  background-color: var(--light-text);
  padding: 1.5rem;
}
.accordion-body p,
.accordion-body ul {
  margin-bottom: 1rem;
}
.accordion-body ul {
  padding-left: 1.5rem;
}
@media (max-width: 991.98px) {
  .hero {
    background-repeat: no-repeat;
    min-height: auto;
    padding: 120px 0 80px;
  }
  .typewriter {
    animation: none;
    border-right: none;
    white-space: normal;
  }
  .hero-content {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .page-header {
    padding: 120px 0 60px;
  }
  .page-header h1 {
    font-size: 2.5rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .navbar-dark .navbar-nav .nav-link.contact-btn {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .navbar-dark .navbar-nav .nav-link.active,
  .navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-color);
  }
}
@media (max-width: 767.98px) {
  .hero-content {
    padding: 1rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    margin-bottom: 1rem;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .quote-block h3 {
    font-size: 1.75rem;
  }
}

/* 
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1476px;
  }
} */



@media (min-width: 1024px) {
  .small-tile {
     justify-content: center;
     text-align: center;
  }
}


.footer-subtitle {
  margin-bottom: 0;
}

#moreText {
  display: none; /* Ensures it's hidden initially */
  margin-bottom: 2rem;
}

.btn-more {
  color: black;
  cursor: pointer;
  text-decoration: underline;
}

.show-more {
  margin-top: 2rem;
}



#more-description-robert {
  display: none; /* Ensures it's hidden initially */
  margin-bottom: 2rem;
}

.btn-more {
  color: black;
  cursor: pointer;
  text-decoration: underline;
}

.show-more {
  margin-top: 2rem;
}

.lead {
  font-weight: 600;
  font-size: 2rem;
}

.show-more-button {
  background-color: var(--primary-color);
  border: none;
  color: var(--light-color);
  border-radius: 1rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 2px 18px;
  font-weight: bold;
  margin-top: 7px;
}

.show-less-button {
  background-color: var(--primary-color);
  border: none;
  color: var(--light-color);
  border-radius: 1rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 2px 18px;
  font-weight: bold;
  margin-top: 7px;
  display: none;
}

.introduction {
  line-height: 2.2rem;
  font-size: 1.3rem;
}

.ref-featured {
  color: var(--primary-color);
  text-decoration: underline;
}