body {
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #ffff;
}
::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 10px solid transparent;
  background-clip: content-box;
}

/* NAVBAR */
.custom-navbar {
  background-color: rgb(52, 119, 97);
}
.custom-navbar a {
  font-weight: 600;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* HERO SECTION */

.hero-section {
  background-color: rgb(217, 227, 185);
}

/* FOUNDERS */

.clamp-text {
  display: -webkit-box;
  -webkit-line-clamp: 4; /* show 4 lines initially */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

.clamp-text.expanded {
  -webkit-line-clamp: unset;
  display: block;
}
.read-more-btn {
  background-color: transparent;
  border: none;
  color: #007bff;
  font-weight: 500;
  padding: 0;
  cursor: pointer;
}


.founder-section {
  background-color: rgb(217, 227, 185);
}
#founders .founder-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


#founders .founder-image:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

#founders .card-body {
  padding: 2rem;
}

#founders h4 {
  font-size: 1.5rem;
  color: rgb(52, 119, 97);
}

#founders p {
  font-size: 28px;
  color: #6c757d;
}
.founder-heading {
  color: rgb(52, 119, 97);
}

#founders .container {
  padding-top: 3rem;
}
.social-icons a {
  color: rgba(0, 0, 0, 0.733);
  transition: all 0.3s ease;
  font-size: 10px;
}

.social-icons a:hover {
  color: rgb(52, 119, 97);
}

/* PRICE PACKAGE */

.price-section {
  background-color: rgb(217, 227, 185);
}

/* COUNTER */

.counter-section {
  background-color: rgb(221, 234, 176);
  padding-top: 80px !important;
}
#counter .icon {
  margin-bottom: 0.5rem;
}
#counter h2 {
  font-size: 2.5rem;
}
#counter p {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 0.5rem;
}
.counter-div i {
  color: rgb(52, 119, 97);
}

/* ABOUT */

.about-section {
  background-color: rgb(52, 119, 97) !important;
}

.large-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  border: 8px solid white;
  transition: all 0.3s ease;
}

.shadow-hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

#about ul li {
  font-size: 1.05rem;
  color: white;
}

.about-button {
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 22px;
  background-color: white !important;
  color: rgb(52, 119, 97);
  font-weight: 800;
  border: none;
  transition: all 0.3s ease;
}

.about-button:hover {
  color: rgb(42, 100, 82);
}

h2.service-heading {
  color: white;
}

p.lead {
  color: white;
}

p.text-secondary {
  color: white;
}

/* SERVICES */
.service-section {
  background-color: rgb(217, 227, 185);
}
.service-heading {
  color: rgb(52, 119, 97);
  text-transform: uppercase;
  font-weight: 600;
}
.service-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item h5 {
  font-weight: 600;
}

.service-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.service-item p {
  flex-grow: 1;
}

.service-item .btn {
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 24px;
  background-color: rgb(52, 119, 97);
  color: #fff;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
  width: auto;
  align-self: center;
  white-space: nowrap;
}

.service-item .btn:hover {
  background-color: rgb(42, 100, 82);
  color: #fff;
}

/* CONTACT */

.contact-section {
  background-color: rgb(217, 227, 185);
}
#contactForm {
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

#contactForm .form-control {
  border-radius: 10px;
  font-size: 1rem;
  padding: 10px 15px;
  border: 1px solid #ccc;
}

#contactForm label {
  font-weight: 600;
  margin-bottom: 5px;
}

#submitBtn {
  background-color: rgb(52, 119, 97);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#submitBtn:hover {
  background-color: rgb(42, 100, 82);
  transform: translateY(-2px);
}

#submitBtn:focus {
  outline: none;
  box-shadow: 0 0 0 0.3rem rgba(52, 119, 97, 0.3);
}

/* FOOTER */
.footer {
  background-color: rgb(52, 119, 97);
  font-size: 0.95rem;
}
.footer a.footer-link {
  color: #e2e2e2;
  transition: color 0.3s ease;
}
.footer a.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer .footer-icon {
  color: #ffffff;
  transition: transform 0.3s ease;
}
.footer .footer-icon:hover {
  color: #a5d6c5;
  transform: scale(1.2);
}
.footer i {
  vertical-align: middle;
}
@media (max-width: 600px) {
  #founders p {
    font-size: 20px;
  }
  }