body {
    color: #111111;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 0;
    padding: 0;
}
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    all: unset;
    cursor: pointer;
    /* display: block; */
}
button:hover {
    background-color: #00f275;
    transition: background-color .3s ease-in;
}
h1 {
    font-size: 3.5rem;
    font-weight: 500;
    padding: 0;
    margin: 0;
}
h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    padding: 0;
}
input {
    appearance: auto;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    /* all: unset; */
    /* cursor: pointer; */
    border: 1px solid #e4e4e4;
    border-radius: .5rem;
    padding: .7rem 1.2rem;
    width: 100%;
    font-size: 1rem;
    font-weight: 300;
    font-family: "Inter", sans-serif;
}
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* box-sizing: border-box; */
    /* gap: 5px; */
}
select {
  width: 100%;
  padding: .7rem 1.2rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: .5rem;
  appearance: none;
  background-color: white;
  color: #333;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='none' stroke='%23333' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    all: unset;
    /* cursor: pointer; */
    border: 1px solid #e4e4e4;
    border-radius: .5rem;
    padding: .7rem 1.2rem;
    width: 100%;
    font-size: 1rem;
    font-weight: 300;
    font-family: "Inter", sans-serif;
}
.boldly{
    font-weight: 900;
    font-size: 5rem;
}
.buttonLink {
    text-decoration: none;
    color: #22280c;
}
.card-description {
  margin-bottom: 1.5rem;
}
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 1rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    /* padding: 1rem 0rem; */
}
.cta-primary {
    background-color: #85be94;
    background-color: #54d363;
    background-color: #ceed4f;
    background-color: #89eab8;
    border-radius: 2rem;
    padding: .8rem 1.6rem;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
    color: #22280c;
    border: 1px solid #89eab8;
    font-weight: 500;
    text-align: center;
}
.cta-primary-fade {
    background-color: #89eab8;
    background-color: rgba(255,255,255,0.8);
    border-radius: 2rem;
    padding: .8rem 1.6rem;
    /* border: 1px solid #89eab8; */
    color: #222222;
    /* border: 1px solid #54d363; */
    /* border: 1px solid rgba(0,0,0, 0.1); */
    font-weight: 500;
    text-align: center;
    opacity: 0;
    /* transition: background-color .5s ease-in-out; */
    transition: opacity .5s ease-in-out .5s;
    /* visibility: hidden; */
}
.cta-primary-fade.stuck {
    /* border: 1px solid #333333; */
    /* box- shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    background-color: #d1fae5;
    background-color: #d9fae9;
    background-color: rgba(255,255,255,0.8);
    opacity: 1;
    /* transition: border 1s ease .5s, background-color 1s ease .5s; */
}
.cta-primary-fade.stuck:hover {
        background-color: #dbadde;

    transition: background-color .3s ease-in-out 0s;
}
.cta-small-primary {
    background-color: #85be94;
    background-color: #54d363;
    background-color: #ceed4f;
    background-color: #89eab8;
    border-radius: 2rem;
    padding: .5rem 1rem;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    color: #22280c;
    /* border: 1px solid #54d363; */
    font-size: .8rem;
    font-weight: 500;
    text-align: center;
}
.cta-secondary {
    background-color: rgba(255,255,255,0.3);
    border-radius: 2rem;
    padding: .8rem 1.6rem;
    border: 1px solid #89eab8;
}
.cta-wide {
    width: 100%;
}
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    row-gap: 1rem;
    padding: 2rem 2rem 0rem 2rem;
    box-sizing: border-box;
}
.footer-legal {
    font-size: .8rem;
}
.full-width-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    padding: 0;
    margin: 0;
    /* justify-content: center; */
}
.hero-container {
    display: flex;
    flex-direction:column;
    align-items: center;
    padding: 5rem 1rem;
    gap: 2rem;
    /* color: #ffffff; */
}
.hero-ctas {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.hero-subtitle {
    width: 60%;
    font-size: 1.3rem;
    text-align: center;
}
.hero-title {
    text-align: center;
    width: 100%;
    font-size: 2.5rem;
}
.logo {
    width: 150px;
}
.nav-container {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: .8rem 1.6rem;
    width: 100%; 
}
/* portfolio */
.portfolio-container {
    display: grid;
    column-gap: 1rem;
    grid-template-columns: 1fr;
    grid-template-rows: min-content auto;
    padding: 4rem 1rem;
    row-gap: 2rem;
}
.portfolio-container-list {
    display: grid;
    column-gap: 1rem;
    row-gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: min-content;
}
/* section */
.section {
    padding: 0;
    margin: 0;
}
.section-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: sticky;
    top: 0px;
    /* border-bottom: 1px solid transparent; */
    /* background-color: red; */
    transition: background-color .3s ease-in-out, box-shadow .3s ease-in-out;
}
.section-title.stuck {
    background-color: #d1fae5;
    background-color: #e5f962;
    background-color: #54d363;
    background-color: #f5e8f6;
    /* box-shadow: 0 4px 10px rgba(80, 80, 80, 0.1); */
    /* background-color: #ffffff; */
    /* border-bottom: 1px solid #54d363; */
    
}
/* services */
.services-container {
    display: grid;
    column-gap: 1rem;
    grid-template-columns: 1fr;
    grid-template-rows: min-content;
    row-gap: 2rem;
    /* margin-top: 3rem; */
    /* margin-bottom: 4rem; */
    width: 100%;
}
.services-container-list {
    display: grid;
    column-gap: 0;
    row-gap: 0;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: min-content;
}
.services-title {
    /* border-left: .3rem solid #000000; */
    /* padding-left: 1rem; */
    font-size: 2.5rem;
    font-weight: 700;
}
.service-carda {
    /* border: 1px solid #f0f0f0; */
    border-radius: .5rem;
    padding: 0.5rem 1.5rem;
    /* border-left: 8px solid #85be94; */
    box-shadow: 0 4px 10px rgba(80, 80, 80, 0.1);
    background-color: #ffffff;
    /* background-image: radial-gradient(#d1fae5 1px, transparent 1px);
    background-size: 10px 10px; */
    background-color: white;
    /* background-image: linear-gradient(to bottom left, #d1fae5 30%, transparent 30%); */
}
.service-card-desc {
    /* border-bottom: 1px solid #eeeeee; */
    /* padding: 1rem 0rem; */
    font-size: 1rem;
    /* margin-bottom: 1rem; */
    margin: 0;
    margin-bottom: .5rem;
    padding: 0;
    color: #555555;
}
.service-card-image {
    /* border-radius: .5rem; */
    width: 60%;
    display: flex;
    justify-self: center;
    margin-bottom: 1rem;
}
.service-card-price {
    display: inline-block;
    /* margin-top: 1rem; */
}
.service-card-price p {
    background-color: #efefef;
    padding: .3rem .7rem;
    font-size: .7rem;
    color: #444444;
    border-radius: .25rem;
}
.service-card {
  display: grid;
  grid-template-rows: auto auto auto;
  background: white;
  padding: 2rem 2rem;
  text-align: center;
  /* border-radius: .5rem; */
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.05); */
}
.sticky-sentinel {
  position: relative;
  height: 1px;
  /* margin-top: -10px; */
  top: -1rem; /* adjust if needed */
  /* background-color: red; */
}
.services-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* background-color: #ffffff; */
    /* position: sticky; */
    width: 100%;
    box-sizing: border-box;
    /* top: 0px; */
    /* outline: 1px solid red; */
    padding: 2rem 3rem;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 730;
    line-height: 1.8rem;
    /* margin-bottom: 1rem; */
    /* padding: 0; */
    /* margin: 1rem 0rem; */
    margin-top: 0rem;
    margin-bottom: 1rem;
    min-height: 2em;
}
.service-card-cta {
    margin-top: 2rem;
    background-color: #85be94;
    background-color: #54d363;
    border-radius: .5rem;
    padding: .5rem .8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    border: 1px solid #54d363;
    font-size: .9rem;
    font-weight: 400;
    text-align: center;
}
.social-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
} 
.socialmedia-icon {
    width: 40px;
}
.socialmedia-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-sizing: border-box;
}
/* value */
.value-card {
    /* border: 1px solid black; */
    border-radius: .5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem;
    text-align: center;
}
.value-container {
    display: grid;
    column-gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: min-content;
    padding: 2rem 2rem;
    width: 80%;
}
.value-icon {
    width: 50px;
}
.value-title {
    font-size: 1.2rem;
    text-align: center;
    margin: 1rem 0rem 0rem 0rem;
}
.value-desc {
    margin-top: 1rem;
}
.wehelp-container {
    display: grid;
    grid-template-columns: 3fr 7fr;
    column-gap: 4rem;
    grid-template-rows: min-content();
    width: 80%;
    padding: 6rem 0rem;
    align-items: center;
    max-width: 1400px;
    box-sizing: border-box;
}
.wehelp-title {
    text-align: right;
    font-size: 2.4rem;
    font-weight: 300;
    font-style: italic;
}
.wehelp-title-strong {
    margin: 0;
    padding: 0;
}
.wehelp-title-italic {
    
    color: #a0e8bc;
    font-weight: 500; 
}
.wehelp-businesses {
    display: flex;
    flex-direction: column;
    row-gap: 1.3rem;
}
.wehelp-title-business-type {
    font-size: 1.2rem;
    font-weight: 600;
    margin: .5rem 0rem 1rem 0rem;
    padding: 0;
}
.wehelp-business-type-desc {
    font-size: 1rem;
    font-weight: 300;
    padding: 0;
    margin: 0;
}
/* background colors */
.bg-green {
    background-color: green;
}
.bg-blue {
    background-color: #fafafa;
}
.bg-light-gray {
    background-color: #fafafa;
}
.bg-gray {
    background-color: #fafafa;
}
.bg-black {
    background-color: #000000;
    color: #ffffff;
}
.bg-white {
    background-color: #ffffff;
}
.bg-light-green {
    background-color: #f5fffa;
}
.bg-dotted {
        /* background-image: radial-gradient(#d1fae5 1px, transparent 1px);
    background-size: 10px 10px; */
    background-color: #fafafa;
    background-image: linear-gradient(to bottom left, #d1fae5 30%, transparent 30%);
}
.bg-d1fae5 {
    background-color: #d1fae5;
}
.bg-gradient {
    background: linear-gradient(180deg, #dcfbeb, #f5fffa); /* matches green-100 */
    /* background: linear-gradient(180deg, #d1fae5, #ffffff); matches green-100 */
}
.bg-webdev {
    background-image: url('../assets/webdev.png');
    background-size: cover;
    background-position: center center;
}
.bg-light-yellow {
    background-color: #f5f5dc;
}
.bg-2a2a2a {
    background-color: #2a2a2a;
    color: #dddddd;
}
.bg-def0e4 {
    background-color: #def0e4;
    background-color: #d9f1e3;
}
.bg-cea7a2 {
    background-color: #cea7a2;
    background-color: #d6a5a1;
}
.bg-efca7b {
    background-color: #efca7b;
    background-color: #f6c96e;
}
.bg-c4e4d3 {
    background-color: #c4e4d3;
    background-color: #bce5d2;
}
.bg-a6ccc7 {
    background-color: #a6ccc7;
    background-color: #9ccec7;
}
.bg-b5d6b7 {
    background-color: #b5d6b7;
    background-color: #add7b4;
}
.bg-f5df9d {
    background-color: #f5df9d;
    background-color: #fade93;
}
.bg-c5e2ea {
    background-color: #c5e2ea;
    background-color: #bee3eb;
}

/* small desktop */
@media screen and (max-width: 1400px) {
    .wehelp-container {
    grid-template-columns: 3fr 7fr;
    column-gap: 3rem;
    width: 90%;
    padding: 6rem 1rem;
}
    .wehelp-title {
    text-align: right;
    font-size: 1.8rem;
    font-weight: 300;
}
}

/* tablet */
@media screen and (max-width: 1100px) {
    .services-container-list {
        display: grid;
        column-gap: 0;
        row-gap: 0;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: min-content;
    }
    .wehelp-container {
    grid-template-columns: 3fr 7fr;
    column-gap: 3rem;
    width: 100%;
    padding: 6rem 2rem;
}
    .wehelp-title {
    text-align: right;
    font-size: 1.6rem;
    font-weight: 300;
}
}


/* mobile */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    nav {
        /* padding: 1rem; */
    }
    .boldly {
        font-size: 2.5rem;
        text-decoration: none;
    }
    .contact-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        padding: 4rem 2rem;
    }
    .container {
        width: 100%;
    }
    .cta-small-primary {
        padding: .5rem 1rem;
        font-size: .7rem;
    }
    .cta-primary-fade{
        font-size: .8rem;
        padding: .5rem .8rem;
    }
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1rem 0rem 1rem;
        box-sizing: border-box;
        width: 100%;
    }
    .hero-container {
        align-items: flex-start;
        width: 100%;
        padding: 4rem 2rem;
        box-sizing: border-box;
    }
    .hero-ctas{
        flex-direction: column;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: left;
        width: 100%;
    }
    .hero-title {
        font-size: 1.6rem;
        text-align: left;
        width: 100%;
    }
    .logo {
        width: 120px;
        padding: 0;
        /* padding: .5rem 1rem; */
    }
    .nav-container {
        padding: 1rem 1rem;
        /* margin: 0; */
        width: 100%;
        box-sizing: border-box;
    }
    .services-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: min-content;
        /* margin-top: 3rem; */
        /* margin-bottom: 4rem; */
        width: 100%;
        /* background-color: orange; */
    }
    .services-container-list {
        display: grid;
        column-gap: 0rem;
        row-gap: 0rem;
        grid-template-columns: 1fr;
        grid-template-rows: min-content;
        padding: 0rem ;
    }
    .services-header {
        padding: 2rem 1rem;
    }
    .services-title {
        /* border-left: .3rem solid #000000; */
        /* padding-left: 1rem; */
        font-size: 1.4rem;
    }
    .value-container {
        display: grid;
        column-gap: 0rem;
        row-gap: 0;
        grid-template-columns: 1fr;
        grid-template-rows: min-content min-content min-content;
        /* padding: 3rem 3rem; */
        padding: 2rem 0rem;
        width: 60%;
    }
    .value-title {
        font-size: 1.2rem;
        text-align: center;
        margin: .7rem 0rem 0rem 0rem;
    }
    .value-desc {
        margin-top: .7rem;
    }
    .wehelp-container {
        grid-template-columns: 1fr;
        column-gap: 4rem;
        grid-template-rows: min-content() min-content();
        width: 100%;
        box-sizing: border-box;
        padding: 4rem 2rem;
    }
    .wehelp-title {
        text-align: left;
        font-size: 2rem;
        font-weight: 300;
        padding-bottom: 2rem;
    }
    .wehelp-title-business-type {
        font-size: 1.1rem;
    }
}