* {
  margin: 0px;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
ol,
ul {
  padding: 0rem;
}
:root {
  --Brand-Primary: #4caf4f;
  --Brand-Primary-hover: #81c784;
  --Text-Gray-900: #18191f;
  --Text-Gray-700: #393a3f;
  --Neutral-Silver: #f5f7fa;
  --Neutral-D_Grey: #4d4d4d;
  --Neutral-Grey: #717171;
  --Neutral-White: #fff;
  --Neutral-Black: #263238;
}
.btn-primary,
.btn-secondary {
  border-radius: 6px;
  display: flex;
  padding: 10px 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
  line-height: 1;
  font-weight: 500;
}
.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--Brand-Primary);
  color: var(--Brand-Primary);
}
.btn-primary {
  background: var(--Brand-Primary);
  border: none;
  color: #fff;
}
.btn-primary:hover {
  background: var(--Brand-Primary-hover);
}
/* ------------------- main-header  ------------------------------ */
.main-header {
  background: var(--Neutral-Silver);
}
.main-header .bg-body-tertiary {
  background-color: transparent !important;
  padding: 22px 0px;
}
.main-header .btn-primary {
  border: none;
  outline: none;
  margin-left: 15px;
}
.main-header .navbar-expand-lg .navbar-nav {
  position: relative;
  margin: 0 auto;
  gap: 35px;
}

.main-header .navbar-expand-lg .navbar-nav .nav-item a {
  color: var(--Text-Gray-900);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
/* ------------------- hero ------------------------------ */
.hero {
  background: var(--Neutral-Silver, #f5f7fa);
  display: flex;
  padding: 96px 0px;
  align-items: center;
  align-self: stretch;
  min-height: 550px;
}
.hero .carousel-item .text-caption h5 {
  color: var(--Neutral-D_Grey, #4d4d4d);
  font-family: Inter;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 76px;
  margin-bottom: 16px;
}
.hero .carousel-item img {
  max-width: 100%;
}
.hero .carousel-item .text-caption span {
  color: var(--Brand-Primary, #4caf4f);
}
.hero .carousel-item .text-caption p {
  color: var(--Neutral-Grey, #717171);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 32px;
}
.hero .carousel-indicators [data-bs-target] {
  background-color: var(--Brand-Primary, #4caf4f);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}
.hero .carousel-indicators {
  margin-bottom: -3rem;
}

/* ------------------- clients ------------------------------ */
.clients {
  padding: 40px 0;
  background: #fff;
}
.clients h2 {
  color: var(--Neutral-D_Grey);
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 8px;
}
.clients p {
  color: var(--Neutral-Grey);
  font-size: 16px;
  line-height: 24px;
}
.clients .client-logos img {
  opacity: 1;
  transition: all 0.3s;
}

/* ------------------- community ------------------------------ */
.community {
  padding: 60px 0;
  background: #fff;
}
.community .section-title h2 {
  color: var(--Neutral-D_Grey);
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 8px;
}
.community .section-title p {
  color: var(--Neutral-Grey);
  font-size: 16px;
}
.community .community-card {
  padding: 24px 32px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 4px rgba(171, 190, 209, 0.2);
  height: 100%;
  transition: all 0.3s;
}
.community .community-card:hover {
  box-shadow: 0px 8px 16px rgba(171, 190, 209, 0.4);
  transform: translateY(-5px);
}
.community .community-card .icon-box {
  width: 65px;
  height: 65px;
  background-color: #e8f5e9;
  border-radius: 18px 5px 10px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.community .community-card .icon-box img {
  width: 40px;
  height: auto;
}
.community .community-card h3 {
  color: var(--Neutral-D_Grey);
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 8px;
}
.community .community-card p {
  color: var(--Neutral-Grey);
  font-size: 14px;
  line-height: 20px;
}

/* ------------------- unlock & calendar & customer common ------------------------------ */
.unlock,
.calendar,
.customer {
  padding: 60px 0;
  background: #fff;
}
.unlock .content-box h2,
.calendar .content-box h2 {
  color: var(--Neutral-D_Grey);
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 16px;
}
.unlock .content-box p,
.calendar .content-box p {
  color: var(--Neutral-Grey);
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 32px;
}

/* ------------------- achievements ------------------------------ */
.achievements {
  padding: 64px 0;
  background: var(--Neutral-Silver);
}
.achievements .text-content h2 {
  color: var(--Neutral-D_Grey);
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
}
.achievements .text-content span {
  color: var(--Brand-Primary);
}
.achievements .text-content p {
  color: var(--Text-Gray-900);
  font-size: 16px;
  margin-top: 8px;
}
.achievements .stat-box h4 {
  color: var(--Neutral-D_Grey);
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  margin: 0;
}
.achievements .stat-box p {
  color: var(--Neutral-Grey);
  font-size: 16px;
  margin: 0;
}

/* ------------------- customer ------------------------------ */
.customer {
  background: var(--Neutral-Silver);
  padding: 32px 0;
}
.customer .quote {
  color: var(--Neutral-Grey);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.customer .customer-name {
  color: var(--Brand-Primary);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 8px;
}
.customer .customer-logos img {
  transition: 0.3s;
}
.customer .btn-link {
  color: var(--Brand-Primary);
  font-weight: 600;
  font-size: 20px;
}

/* ------------------- updates ------------------------------ */
.updates {
  padding: 48px 0;
  background: #fff;
}
.updates .section-title h2 {
  color: var(--Neutral-D_Grey);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 8px;
}
.updates .section-title p {
  color: var(--Neutral-Grey);
  font-size: 16px;
  line-height: 24px;
}
.updates .update-card {
  position: relative;
  margin-bottom: 100px;
}
.updates .card-img {
  border-radius: 8px;
  overflow: hidden;
}
.updates .card-content {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 8px 16px rgba(171, 190, 209, 0.4);
  padding: 16px;
  width: 85%;
  margin: -60px auto 0; /* done with AI Pull up the card content */
  position: relative;
  z-index: 2;
  text-align: center;
}
.updates .card-content h5 {
  color: var(--Neutral-D_Grey);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 12px;
}
.updates .card-content .read-more {
  color: var(--Brand-Primary);
  font-weight: 600;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

/* ------------------- cta ------------------------------ */
.cta {
  padding: 32px 0;
  background: var(--Neutral-Silver);
}
.cta h2 {
  color: var(--Neutral-Black);
  font-size: 64px;
  font-weight: 600;
  line-height: 76px;
}

.cta .btn-primary {
  margin: 32px auto 0;
}

/* ------------------- footer ------------------------------ */
.footer {
  background: var(--Neutral-Black, #263238);
  display: flex;
  padding: 64px 0px;
  align-items: flex-start;
}
.footer .company-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .company-info img {
  max-width: 210px;
}
.footer .company-info p {
  color: var(--Neutral-Silver, #f5f7fa);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.footer .company-info .socials ul {
  position: relative;
  display: inline-flex;
  list-style: none;
}
.footer .company-info .socials ul li {
  display: flex;
  margin-left: 15px;
}
.footer .company-info .socials ul li:first-child {
  margin-left: 0px;
}
.footer .company-info .socials ul li a {
  width: 32px;
  height: 32px;
  border-radius: 50px;
  background-color: var(--Text-Gray-700);
  color: #fff;
  text-align: center;
  line-height: 32px;
  display: block;
}
.footer .footer-title {
  color: var(--Neutral-White, #fff);
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 20px;
}
.footer .hot-links ul li {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.footer .hot-links ul li a {
  color: var(--Neutral-Silver, #f5f7fa);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.footer .newsletter form .input-group input {
  border-radius: 8px;
  opacity: 0.2;
  background: var(--Neutral-White, #fff);
  color: #fff;
}
.footer .newsletter form .input-group button {
  opacity: 0.2;
  background: var(--Neutral-White, #fff);
}
