h2,
h1 {
    font-size: 4.5rem;
}

h3 {
    font-size: 1.75rem;
}

#commitment h3,
#workflow h3 {
    font-size: 1.25rem;
}


hr {
    width: 90%;
}

header {
    width: 100%;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 1;
    background-color: transparent;
    transition: transform 0.5s ease, opacity 0.5s ease, background-color 0.3s ease;
    /* overflow: hidden; */
}

header.scrolled {
    background-color: var(--muted-navy);

}



header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 70px;
    grid-row: 1;
    justify-self: left;
    margin: 10px 0;
}

header .logo img {
    width: 140px;
    height: 70px;
}

header .logo a {
    width: 140px;
    height: 70px;
}

.nav {
    max-height: 120px;
    
}

@keyframes slide {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes subtlePulse {
    0% {
        background-position: 20% 30%, 75% 10%, 30% 60%, 50% 50%;
        background-size: 100%, 120%, 140%, 150%;
    }

    25% {
        background-position: 22% 28%, 77% 8%, 32% 62%, 48% 48%;
        background-size: 110%, 115%, 145%, 140%;
    }

    50% {
        background-position: 18% 32%, 73% 12%, 28% 58%, 52% 52%;
        background-size: 105%, 125%, 135%, 160%;
    }

    75% {
        background-position: 21% 29%, 74% 9%, 31% 61%, 49% 49%;
        background-size: 120%, 110%, 140%, 150%;
    }

    100% {
        background-position: 20% 30%, 75% 10%, 30% 60%, 50% 50%;
        background-size: 100%, 120%, 140%, 150%;
    }
}

@keyframes subtleOpacity {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.9;
    }
}

#hero {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    align-content: center;

    background-color: var(--muted-navy);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(0.5px);
    pointer-events: none;
    /* Ensures it doesn't block interaction */
}



.hero-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 10;
    padding: 0;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    gap: 20px 40px;
    height: 90vh;
    /* z-index: 0; */
    align-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video covers the section properly */
    z-index: -1;
    /* Places the video behind the content */
}

.hero-video.recolored-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2c3e50;

    mix-blend-mode: multiply;
    /* Blends the color with the video */
    opacity: 1;
    /* Adjust transparency to achieve the effect */
    z-index: -1;
    /* Places overlay above the video */
}

.hero-section {
    position: relative;
    z-index: 0;
    height: 100vh;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    /* background-color: rgba(44, 62, 80, 0.4); */
    z-index: 1;
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}



.hero-text h1 {
    grid-row: 1;
    grid-column: 1 / -1;
    font-family: "Lato-Regular", sans-serif;
    line-height: 1.3;
    margin: 0;
    letter-spacing: 0.5px;
    color: var(--service-card-white);
}

.hero-text h2 {
    font-size: 2rem;
    grid-row: 2;
    grid-column: 1 / -1;
}



.hero-text p {
    grid-row: 2;
    grid-column: 1 / -1;
    font-size: 1.325rem;
    line-height: 1.6;
    font-weight: normal;
    color: var(--mist-blue);
}

.cta-button {
    /* grid-row: 4;
    grid-column: 1; */
    background-color: var(--amber-hover);
    color: var(--muted-navy);
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    font-size: 1.15rem;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    justify-self: right;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--amber-hover-cta);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.secondary-button {
    /* grid-row: 4;
    grid-column: 2; */
    /* background-color: var(--soft-teal); */
    background-color: transparent;
    color: var(--amber-hover);
    text-transform: uppercase;
    border: 2px solid;
    border-radius: 4px;
    font-size: 1.15rem;
    cursor: pointer;
    justify-self: left;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: transparent;
    border: 2px solid;
    color: var(--service-card-white);
    /* background-color: #ebc387; */
    /* background-color: var(--soft-teal-hover); */
    /* background-color: var(--amber-hover-cta); */
    /* color: var(--muted-navy); */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.cta-button,
.secondary-button {
    width: 283px;
    height: 62px;
    padding: 0;
    margin: 2.5% 0;
    align-content: center;
}

.cta-buttons {
    display: flex;
    gap: 0 40px;
    margin: 0 auto;
    grid-column: 1 / -1;
    grid-row: 3;
}



.services-header h3 {
    margin: 8px 0;
    font-size: 2rem;
    /* font-family: "Lato-Regular", sans-serif; */
    font-family: "Lato-Bold", sans-serif;
    font-weight: 400;
}

.testimonial {
    font-size: 0.875rem;
    background-color: var(--amber-lighter);
    border-radius: 4px;
    padding: 20px;
}

.testimonial a {
    color: var(--muted-navy);
    text-decoration: none;
}

.testimonial blockquote {
    text-align: left;
    font-style: italic;
    color: #555;
    margin: 0 0 10px;
}

.testimonial p {
    font-weight: bold;
    margin-top: 5px;
}

.services-header-wrapper {
    width: 80%;
    height: 100%;
    padding: 1% 0 3.5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2%;
}

.services-header-card {
    display: grid;
    justify-content: center;
    justify-items: center;
    padding: 20px 40px 40px;
    max-width: 480px;
    margin: 20px 0;
    grid-template-rows: auto auto auto 1fr;
    background: var(--card-yellow);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.services-header-card p {
    grid-column: 1;
}

.commitment-left-col p,
.commitment-right-col p,
.contact-header-text p,
.portfolio-right-col p,
.services-header-card p {
    margin: 0;
    text-align: left;
    width: 100%;
    padding: 20px 0 0;
    line-height: 1.55;
    font-size: 1.175rem;
    letter-spacing: 0.015rem;
}

.contact-header-text p,
.portfolio-right-col p,
.services-header-card p {
    line-height: 1.5;
    font-size: 1.125rem;
    letter-spacing: 0;
}

.services-header-card img {
    height: 225px;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    border: 2px solid var(--steel-gray);
    /* border-radius: 4px; */
}

.services-header hr,
.recent-project-card hr {
    width: 100%;
    margin: 0 0 28px;
    border-color: var(--muted-navy);
}

.site-card hr {
    width: calc(100% - 40px);
    margin: 0 auto 28px;
    border-color: var(--muted-navy);
}

#recent-project-overlay {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.overlay {
    position: fixed;
    top: 100%;
    /* Hidden by default */
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--deep-charcoal);
    z-index: 1000;
    transition: top 0.5s ease-in-out;
    /* Smooth slide effect */
}

.overlay.active {
    top: 0;
    /* Slide into view */
    margin: auto;
}

/* Overlay content styling */
.overlay-content {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    margin: auto;
    background: #fff;
    /* White background for content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overlay-title {
    background: linear-gradient(to bottom, var(--service-card-white) 0%, #A9A9A9 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 12px 0;
    margin: 0 auto;
    font-family: "Oswald-Medium", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(1.5rem, 0.5vw, 2rem);
    font-weight: 400;
}

/* Close button styling */
.close-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    color: var(--mist-blue);
    border: 1px solid;
    padding: 5px 10px;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Lato-Bold';
    font-weight: 400;
    text-transform: uppercase;
    transition: border-color 0.2s ease, color 0.2 ease;
}

.close-overlay:hover {

    color: var(--amber-hover);
    border-color: var(--amber-hover)
}

#recent-project .recent-project-full-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
    margin-bottom: 1rem;
    /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); */
    /* border: 2px solid var(--steel-gray); */
    border: 10px solid transparent;
    border-image-source: radial-gradient(circle, #ffffff, #f2f2f2, #d3d3d3, #c0c0c0, #a9a9a9);
    border-image-slice: 1;
}

#recent-project h2 {}

#recent-project .recent-project-title {
    padding: 0 20px;
    margin: 0;

}

.recent-project-card {
    padding: 20px;
    /* background-color: var(--card-yellow); */
    background: linear-gradient(to bottom, var(--service-card-white), #fcfcfc);
}

#recent-project .recent-project-card .recent-project-icon,
#portfolio .recent-project-card-row-1 img {
    width: 64px;
    height: auto;
    object-fit: cover;
    padding: 0;
    margin: 1rem 0;
}

#recent-project .recent-project-description {
    padding: 0 20px;

}

#recent-project .recent-project-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

#recent-project .cta-button {
    font-family: "OpenSans-Regular", sans-serif;
    cursor: pointer;
}

#recent-project .recent-project-cta .cta-button.secondary-button {
    color: var(--muted-navy);
    border-color: var(--muted-navy);

}

#recent-project-overlay iframe {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border: none;
    background: rgba(0, 0, 0, 0.8);
}

/* Arrow rotation for toggle button */
#toggle-overlay-button .arrow {
    display: inline-block;
    transition: transform 0.3s ease-in-out;

}

#toggle-overlay-button.open .arrow {
    transform: rotate(180deg);
    /* Rotate arrow when overlay is active */
}


#portfolio {
    background-color: var(--deepened-navy);
    color: var(--mist-blue);
}

@keyframes backgroundMotionCommitment {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 50% 75%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 50% 25%;
    }

    100% {
        background-position: 0% 50%;
    }
}

#commitment {
    background: linear-gradient(135deg, #112240, #243b55, var(--muted-navy), #1b2735, #2a3d56, #0f1726, #112240);
    background-size: 400% 400%;
    animation: backgroundMotionCommitment 10s infinite alternate ease-in-out;
    color: var(--mist-blue);
}

.commitment-wrapper,
.portfolio-wrapper {
    display: grid;
    padding: 5%;
    grid-template-columns: 1.5fr 1fr;
    gap: 0 5%;
    margin: auto;
    max-width: 90%;
    align-items: start;
    min-height: 100vh;
}

.commitment-card b {
    font-family: "OpenSans-SemiBold" sans-serif;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}

#commitment h2,
#portfolio h2 {
    font-family: "Lato-Regular", sans-serif;
    padding: 0;
    color: var(--amber-hover);
    margin: 0 0 0.725rem;
    text-align: left;
}

#commitment h2 {
    grid-column: 1;
}

.commitment-left-col {
    grid-column: 1;
    position: sticky;
    align-self: start;
    top: 15%;
}

.commitment-right-col {
    grid-column: 2;
    padding: 0 10%;
}

.commitment-left-col p {
    line-height: 1.55;
    font-size: 1.125rem;
}

.commitment-right-col p {
    font-size: 1rem;
    color: var(--service-card-white);
    padding: 12px 0;
}

.commitment-right-col h3 {
    transition: color 0.3s ease;
    color: var(--cool-light-blue);
}

.commitment-right-col h3.golden {
    color: var(--amber-hover);
}

.fade-in {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .8s ease-out, transform .8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .8s ease-out, transform .8s ease-out;
}

.commitment-card {
    position: relative;
    padding: 20px;
    background-color: #213242;
    border-radius: 4px;
    margin: 20px 0;
    border: 1px solid rgba(207, 216, 227, 0.2);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.commitment-card.golden-border {
    border-color: rgba(207, 216, 227, 0.5);
    transition: all 0.3s ease;
    /* background-color: var(--deepened-navy); */
}

#portfolio {
    /* background: repeating-linear-gradient(45deg,
            rgba(125, 125, 125, 0.05),
            rgba(125, 125, 125, 0.05) 1px,
            transparent 1px,
            transparent 20px),
        var(--deepened-navy); */
        background: linear-gradient(135deg, #1e2a38, #345472, #1e2a38);

}

.portfolio-right-col {
    grid-column: 2;
    position: sticky;
    align-self: start;
    top: 15%;
}

.portfolio-left-col {
    display: grid;
    grid-column: 1;
    gap: 40px;
}

.main-portfolio-link {
    width: 100%;
    background-color: rgba(14, 18, 26, 0.85);
    background-image: url('/img/stone-wall-bg-grey.webp');
    background-blend-mode: overlay;
    background-size: cover;
    background-repeat: no-repeat;
    /* Avoid repeating the image */
    background-position: center;
    /* Center the image */
    gap: 20px;
    padding: 5%;
    display: grid;
    position: relative;
    z-index: 1;
    margin: 3.5% auto 0;
    align-items: center;
    text-align: center;
    align-content: center;
}

.main-portfolio-link hr {
    height: 8px;
    border: none;
    background: linear-gradient(to right,
            #670000 0%,
            var(--amber) 10%,
            var(--rich-black) 50%,
            var(--amber) 90%,
            #670000 100%);
    margin: 20px auto;
    clip-path: polygon(0 50%, 5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%);
    box-shadow: 0 0 6px 2px rgba(139, 0, 0, 0.8);
}

.iandoers-button {
    width: 260px;
    height: 55px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;
    color: var(--amber) !important;
    background: linear-gradient(to bottom, #4b0e0e, #8b0000);
    border: 2px solid transparent;
    border-image: linear-gradient(to bottom, var(--golden-sand), #8b5a00);
    border-image-slice: 1;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
    align-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.iandoers-button:hover {
    background: linear-gradient(to bottom, #8b0000, #ff4500);
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.9), 0 0 8px rgba(255, 69, 0, 0.8);
    transform: scale(1.05);
}

.iandoers-button:active {
    background: linear-gradient(to bottom, #4b0e0e, #670000);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.95);
    transform: scale(0.98);
}



.section-divider {
    background: radial-gradient(circle, var(--amber) 20%, var(--rich-black) 70%);
    height: 8px;
    /* Adjust height to your preference */
    padding: 0;
    margin: 0;
}





.main-portfolio-link p {

    color: var(--service-card-white);

}

.workflow-cta-p {
    padding: 40px 0 20px;
}

.main-portfolio-link a {
    grid-column: unset;
    grid-row: unset;
    justify-self: center;
    margin: 1% 0;
}

.profile-header p {
    margin: 0;
}

/* #portfolio hr {
    border-color: var(--card-yellow);
    border-bottom: none;
    border-right: none;
    border-left: none;
    width: 100%;
    margin: 20px auto;
} */

.portfolio-header {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    overflow: hidden;
    z-index: 6;
    width: 100%;
    height: 100%;
    justify-content: center;
    padding: 40px 0;
    margin: 0;
}

.site-portfolio-cards-desktop {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    grid-auto-rows: min-content;
    align-items: start;
    place-items: center;
    padding: 0 10%;
}

.site-card {
    position: relative;
    display: grid;
    padding: 20px;
    border-radius: 4px;
    overflow: hidden;
    align-self: self-start;
}


.site-card-background {
    /* background: #756c5c; */
    /* border-radius: 4px 4px 0 0; */

    transition: max-height 0.6s ease, padding 0.6s ease;
    padding: 20px 20px 40px;
    margin: 0;
    position: relative;
    /* box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2); */
}

.site-card-image {
    grid-row: 2;
    grid-column: 1 / -1;
}

.category-value li svg,
.focus-value li svg {
    height: 14px;
    fill: var(--amber-hover);
    margin: 0 8px 1% 0;
    vertical-align: text-bottom;
    transition: all 0.3s ease;
}

.category-value li:hover svg,
.focus-value li:hover svg {
    fill: var(--card-yellow);
    transform: scale(1.2);
}

.site-card-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(0.6);
    transition: filter 0.6s ease;
    cursor: pointer;
}

.site-card-image.in-viewport {
    filter: brightness(1);
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.image-modal-content {
    max-width: 90%;
    max-height: 90%;
    display: block;
    margin: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    animation: zoomIn 0.3s ease-in-out;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ffc107;
}

@keyframes siteCardFade {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.portfolio-h2 {
    grid-row: 1;
    grid-column: 1 / -1;
    padding: 40px 0 20px;
    margin: 0 30%;
}

.portfolio-header hr {
    z-index: 5;
}




.card-description {
    font-size: 0.9375rem;
    letter-spacing: 0.02rem;
    /* line-height: 1.6; */
    margin: 8px 0 0;
    /* background-color: rgba(14, 16, 26, 0.2); */
    padding: 0 20px 40px;

    color: var(--muted-navy);
    font-family: "OpenSans-Regular", sans-serif;
}



.left-portfolio {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    font-family: "OpenSans-Light", sans-serif;
}


.wide-logo,
.wide-logo a,
.wide-logo img {
    width: 60px !important;
    height: 30px !important;
}




.subtle-link {
    display: inline-block;

    color: var(--amber-hover);
    text-decoration: none;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.site-card .card hr {
    margin: 1.5rem auto;
    width: 100%;
    height: 2px;
    background-color: var(--cool-light-blue);
    border: none
}

.site-card-background p:first-of-type {
    margin-top: .5rem;
}

.site-card-background p:last-of-type {
    margin-bottom: 1.5rem;
}

.card p {
    text-align: center;
    margin: 1.5rem 0 .5rem;
}

.card p b {
    font-family: "Lato-Bold", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.25rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.card ul li b {
    font-family: "Oswald-Medium", sans-serif;
    letter-spacing: 0.5px;
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    width: 100%;
    padding: 0 0 8px;
    margin: 0;
    font-size: 1.175rem;
    text-align: center;
    justify-content: center;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.card ul.collapsed {
    padding: 0 20px;
    background-color: var(--amber-lighter);
    border: 0 solid;
}

.card ul.expanded {
    list-style-type: none;
    padding: 20px;
    background-color: var(--amber-lighter);
    margin-bottom: 1.75rem;
    border: 1px solid var(--golden-sand);
}

.card li {
    padding: .75rem 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9325rem;
    margin-bottom: 4px;
    border-radius: 4px;
    line-height: 1.5;
}

.card li svg {
    width: 100%;
    height: 100%;
    max-height: 1.5rem;
    margin-bottom: 4px;
}

.card li:last-of-type {
    margin-bottom: 0;
}

.card .card-li-p {
    font-size: 0.9375rem;
    text-align: left;
    margin: 1rem 0;
}

.card .card-li-p:last-of-type {
    margin-bottom: 1.5rem;
}

.subtle-link:hover {
    color: var(--service-card-white);
    text-decoration: underline;
}

.collapsed {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, padding 0.6s ease, margin-bottom 0.6s ease, border 0.6s ease;
}

.expanded {
    max-height: 2000px;
    transition: max-height 0.6s ease, padding 0.6s ease, margin-bottom 0.6s ease, border 0.6s ease;
}

.expand-btn {
    display: flex;
    margin: .5rem auto;
    padding: 10px 30px;
    font-size: 0.9375rem;
    background-color: var(--mist-blue);
    color: var(--muted-navy);
    font-weight: 600;
    border: 2px solid;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: "OpenSans-Regular", sans-serif;

}

.expand-btn:hover {
    background-color: var(--amber-hover);
    color: var(--muted-navy);
}




#services {
    display: flex;
    padding: 5% 0;
    height: auto;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(to top,
            var(--cool-light-blue),
            rgba(240, 240, 240, 1));
    background: linear-gradient(to top, #0d1b2d78, rgb(255 255 255));
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    z-index: 1;
    align-items: center;
    gap: 20px;
    color: var(--muted-navy);
}

.services-header-section {
    display: grid;
    grid-template-columns: repeat(3, auto);
    width: 80%;
    gap: 20px 5%;
}

.services-header-section-h2 {
    grid-column: 1 / -1;
    grid-row: 1;
}


.services-header-card h4 {
    font-family: "Lato-Bold", sans-serif;
    font-weight: 400;
    font-size: 1.175rem;
    text-transform: uppercase;
    margin: 0;
}

.services-header-card ul {
    list-style-type: none;
    margin-top: 0;
    padding: 0;

}

.services-header-card ul li {
    margin: 4px 0;
}

.services.active {
    background-color: var(--muted-navy);
    color: var(--service-card-white);
}

.services.active:hover {
    background-color: #435f7b;
}

#contact h2,
#services h2 {
    font-family: "Lato-Regular", sans-serif;
    padding: 0;
    margin: 0 0 0.725rem;
}

.workflow-section h2 {
    padding: 0;
    margin: 0 0 0.725rem;
}

.services-paragraph {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 1.325rem;
    padding: 20px 0;
    margin: 0;
    line-height: 1.6;
}

.col-1 {
    grid-column: 1;
    grid-row: 3;
    justify-self: right;
}

.col-2 {
    grid-column: 2;
    grid-row: 3;
    justify-self: center;
}

.col-3 {
    grid-column: 3;
    grid-row: 3;
    justify-self: left;
}

.features-desktop-box {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: 331px auto;
    gap: 20px 8px;
    align-items: start;
    margin: 40px 0;
    padding: 20px;
    background-color: var(--service-card-white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    width: 75%;
    max-width: 1450px;
    min-height: 408px;
}

.features-desktop-box ul {
    list-style-type: none;
    padding: 0 20px;
    margin: 0;
    text-align: left;
    align-self: start;
    display: grid;
    grid-auto-columns: auto 1fr;
    gap: 0;
    grid-template-columns: repeat(auto-fit, minmax(200px, 300px));
}

.features-desktop-box h4 {
    font-family: "Lato-Bold", sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    grid-column: 1 / -1;
    align-self: start;
    padding: 8px 0;
    margin: 0;
}

.features-desktop-box .service-icon-title-price {
    grid-column: 1;
    width: 393px;
    height: 331px;
    justify-self: center;
    align-self: flex-start;
}

.features-desktop-box .features-box {
    grid-column: 2;
}

.features-desktop-box-col-1 {
    grid-column: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.features-desktop-box-col-2 {
    position: relative;
    grid-row: 1 / span 2;
    grid-column: 2;
}

#services hr {
    border-color: var(--deep-charcoal);
    border-bottom: none;
    border-right: none;
    border-left: none;
    width: 100%;
    margin: 20px auto;
}

.services-grid {
    grid-template-columns: repeat(auto-fit,
            minmax(350px, 1fr));
    /* grid-template-columns: repeat(4, 1fr); */
    width: 80%;
    gap: 60px;
    margin: 20px 0;
    height: auto;
}

.service-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    background: var(--card-bg, #f3f4f6);
    border: 1px solid var(--card-border, #ddd);
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Enhance hover state */
}

.card-header {
    display: grid;
    grid-template-columns: auto 2rem;
    justify-content: center;
    background: var(--card-header-bg, var(--muted-navy));
    color: var(--card-header-text, #fff);
    border-radius: 4px 4px 0 0;
    padding: 15px;
    text-align: center;
    align-items: center;
}

.card-header.premium {
    background-color: #00494d;
}

.card-header.addons {
    background-color: #252932;
}

.card-header h3 {
    margin: 0;
    font-size: 1.45rem;
    font-family: "Lato-Bold", sans-serif;
    font-weight: 400;
}

.card-header .price {
    grid-row: 2;
    font-size: 1.2rem;
    color: var(--accent-color, var(--amber));
    padding: 4px 8px;
    font-weight: 400;
    font-family: "Lato-Bold", sans-serif;
}

.price-row-2 {
    position: relative;
    grid-row: 2;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.card-header .price.premium {
    color: var(--amber-hover);
}

.card-body {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 0;
    background: var(--card-body-bg, #f3f4f6);
}

.card-body p {
    font-size: 0.95rem;
    font-family: "Lato-Bold", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.tooltip-note {
    display: block;
    font-size: small !important;
    color: var(--slate-grey);
    margin-top: 5px;
    font-style: italic;
}

.card-footer {
    justify-content: center;
    display: flex;
    padding: 20px;
    background: var(--card-footer-bg, #f5f5f5);
}


.card-footer button {
    width: 283px;
    height: 62px;
    font-family: "OpenSans-Bold", sans-serif;
    font-size: 1.05rem;
    cursor: pointer;
    font-weight: 600;
}

.card-body ul {
    list-style-type: none;
    padding: 20px 20px 0;
    margin: 0 auto;
    width: 90%;
}

.card-body li {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 15px;
    padding: 4px 0;
    align-items: center;
    font-size: 0.9rem;
    line-height: 1.6;
    border-radius: 4px;
    text-align: left;
    transition: background-color 0.2s ease;
}

.card-body ul li b {
    font-family: "Lato-Bold", sans-serif;
    margin-bottom: 4px;
    font-weight: 400;
    color: #334155;
    padding-bottom: 4px;
    transition: color 0.2s ease;
    font-size: 1.025rem;
    justify-self: left;
}

.card-body ul li:hover b {
    color: #1e293b;
}

.card-body ul li:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.service-icon-title-price {
    grid-row: 1;
    grid-column: 1;
    height: fit-content;
    align-self: center;
    padding: 20px 0 0;
    display: grid;
    grid-template-rows: auto 150px 1fr auto;
    background: linear-gradient(to bottom, #fffdf5, #fef9e5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card-header {
    grid-row: 4 !important;
    align-self: center !important;
    height: unset !important;
}

.services-header-text {
    grid-row: 1;
    grid-column: 1;
    display: grid;
    align-content: start;
}

.service-icon {
    grid-row: 1;
    grid-column: 1 / -1;
    padding: 8px 0;
}

.service-icon svg {
    text-align: center;
    height: 40px;
    padding: 0;
}

.price-range {
    grid-row: 3;
    grid-column: 1 / -1;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 12px 0 24px;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.price-cursor {
    cursor: pointer !important;
}

.tooltip-container.price-description-tooltip {
    grid-row: 2;
    grid-column: 2;
}

.price-description {
    font-size: 1rem;
    font-family: "Lato-Bold";
    font-weight: 400;
    padding: 10px 0;
    text-align: center;
    border-radius: 4px;
    margin: 0 auto;
    width: 75%;
    background-color: rgba(0, 123, 137, 0.1);
}

.price-description-2 {
    grid-column: 2;
    grid-row: 3;
    font-size: 0.825rem;
}

.tooltip-text,
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.tooltip-container {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    display: inline-block;
    /* Ensures proper positioning */
    cursor: pointer;
    width: fit-content;
}

.tooltip-text p {
    margin: 0;
    padding: 4px 0;
}

.tooltip-text li,
.tooltip-text ul {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1rem;
    list-style-type: none;
}

.price-tooltip li,
.price-tooltip ul {
    font-size: 1rem;
    list-style-type: none;
}

.tooltip-header {
    text-align: center;
    background-color: var(--amber-hover);
    color: var(--muted-navy);
    display: flex;
    width: 100%;
    text-transform: uppercase;
    justify-content: center;
    padding: 8px 12px;
    margin: 4px 0 12px;
    align-items: center;
    font-size: 1rem !important;
    line-height: 1.6;
    font-family: "Lato-Bold", sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-tooltip .tooltip-text h4 {
    text-align: center;
    background-color: var(--amber-hover);
    color: var(--muted-navy);
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 8px 12px;
    margin: 4px 0 12px;
    align-items: center;
    line-height: 1.6;
    font-family: "Lato-Bold", sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    text-transform: uppercase;
}

.tooltip-text {
    display: flex;
    flex-direction: column;
    height: auto;
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    min-width: 320px;
    max-width: 360px;
    cursor: default;
    pointer-events: none;
    background-color: #f7f9fc;
    color: #334155;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
    line-height: 1.5;
    letter-spacing: 0.02em;
    font-size: 0.825rem;
    text-align: left;
    z-index: 10;
}

.tooltip-text p {
    margin: 0;
    padding: 4px 0;
}

.tooltip-text p+p {
    margin-top: 8px;
}

.tooltip-container~.price,
.tooltip-container~h3 {
    margin-left: 0.95rem !important;
}

.tooltip-container.price-tooltip {
    height: 1rem;
    width: 1rem;
}

.tooltip-container.price-tooltip .info-icon {
    align-self: center;
    margin-left: 0;
    padding: 0;
    justify-content: left;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.tooltip-container.price-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    top: calc(100%);
    transform: translate(-50%, 1%) !important;
}

.tooltip-container:hover~.tooltip-container {
    z-index: -1;
}

.services-header-background {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(165deg,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.3),
            rgba(255, 156, 7, 0.2)),
        url("/img/services-header-bg7.webp");
    z-index: -1;
    background-size: cover;
    opacity: 1;
    border: 1px solid rgb(88, 105, 143);
    border-radius: 4px;
}

.features-desktop-box .service-icon-title-price h3 {
    grid-row: 2;
    grid-column: 1 / -1;
    padding: 20px 40px 16px;
    text-align: center;
    align-content: center;
    font-size: 1.75rem;
    font-family: "Lato-Regular", sans-serif;
    letter-spacing: 0.125rem;
    text-transform: uppercase;
    margin: 0;
    justify-content: flex-start;
}

.service-button {
    grid-row: 4;
    grid-column: 1;
    background-color: var(--amber-hover);
    color: var(--muted-navy);
    text-transform: uppercase;
    font-family: "OpenSans-Regular", sans-serif;
    font-weight: 600;
    margin: 40px auto;
    align-self: end;
    width: 75%;
    cursor: pointer;
    padding: 16px 18px;
    text-decoration: none;
    text-align: center;
    border: none;
    font-size: 1.15rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.5s ease, transform 0.3s ease,
        border-color 0.3s ease;
}

.service-button:hover {
    background-color: var(--amber-hover-cta);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.service-button.tooltip {
    grid-row: unset;
    grid-column: unset;
    background: var(--golden-sand);
    margin: 12px auto;
    align-self: center;
    width: 50%;
    color: var(--muted-navy);
    cursor: pointer;
    padding: 10px 12px;
    text-decoration: none;
    text-align: center;
    border: none;
    font-size: 0.875rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background 0.5s ease, transform 0.3s ease, border-color 0.3s ease,
        color 0.3s ease;
}

.start-your-project {
    width: 340px;
    padding: 24px 48px;
}

.info-icon img {
    height: 1rem;
    width: 1rem;
}

.info-icon {
    height: 1rem;
    width: 1rem;
    margin-left: 8px;
}

.service-card .info-icon {
    margin-left: 0;
}

.service-card .tooltip-container {
    margin-left: 8px;
}

.service-card .tooltip-container.price-tooltip {
    margin-left: 0;
}

.service-tabs-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    grid-column: 1;
    grid-row: 2;
}

.service-tabs {
    width: 100%;
    padding: 10px;
    font-family: "OpenSans-Regular", sans-serif;
    font-size: 0.925rem;
    color: var(--muted-navy);
    background-color: var(--card-yellow-2);
    border: 1px solid var(--muted-navy);
    border-radius: 4px;
    appearance: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.service-tabs:focus,
.service-tabs:hover {
    border-color: rgba(255, 193, 7, 0.9);
    box-shadow: 0 0 5px rgba(255, 193, 7, 0.6);
    background-color: var(--card-yellow);
}

.service-tabs-wrapper::after {
    content: "▼";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 1rem;
    color: var(--muted-navy);
}

.service-tabs option {
    background-color: var(--mist-blue);
    color: var(--muted-navy);
    font-family: "OpenSans-Regular", sans-serif;
    font-size: 0.925rem;
}

.tabs {
    display: flex;
    border-bottom: 2px solid var(--mist-blue);
    margin-bottom: 20px;
    position: absolute;
    width: 75%;
    top: -50px;
    overflow: visible;
    z-index: -1;
    flex-direction: row;
    justify-content: center;
    gap: 4px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: grid;
}

.service-card-column-1 {
    grid-template-columns: 1fr;
    grid-row: 2;
    grid-column: 1;
}

.service-card-column-3 {
    grid-template-columns: 1fr;
    grid-row: 2;
    grid-column: 1;
}

.service-card-column-5 {
    grid-row: 3;
    grid-column: 1;
}

.service-card ul.pc-builds {
    padding: 8px !important;
}

.service-card ul.pc-builds>li {
    display: inline-grid;
    grid-template-columns: 1fr 1.25fr;
    width: 100%;
    gap: 4px;
}

.tooltip-text hr {
    margin: 16px 0 12px !important;
    border-color: var(--cool-light-blue) !important;
    width: 100% !important;
}

.features-desktop-box ul li {
    grid-auto-columns: auto 1fr;
    gap: 0;
    padding: 0;
    position: relative;
    line-height: 1.6;
    margin: 0;
    font-size: 0.85rem;
    font-weight: 400;
    will-change: transform, color;
    justify-self: left;
    align-items: start;
    display: grid;
    width: 100%;
}

.features-desktop-box ul li {
    grid-template-columns: auto 1fr;
    padding: 8px 0;
}

.features-desktop-box ul li svg {
    grid-column: 1;
    height: 20px;
    width: 17.5px;
    fill: var(--amber);
    margin: 0 12px 0 0;
}

.features-desktop-box ul li svg {
    align-self: self-start;
}

.features-desktop-box ul li:hover svg {
    fill: #ff9d07;
    transition: all 0.3s ease;
}

.tooltip-indicator {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    line-height: 1rem;
    cursor: pointer;
}

.tooltip-text h4 {
    padding: 4px 0 0;
    margin: 0;
    font-size: 0.95rem;
}

.tooltip-text ul li {
    grid-template-columns: auto;
    padding: 4px 0 2px !important;
    font-size: 0.8125rem;
}

.features-desktop-box ul li svg.core {
    fill: #6b7b9a;
}

.features-desktop-box ul li:hover svg.core {
    fill: #90a2bf;
    transition: all 0.3s ease;
}

.price-tooltip .tooltip-text li {
    padding: 0 0 8px !important;
}

#addons-content-3 .service-card,
#premium-content-3 .service-card,
#standard-content-3 .service-card {
    grid-template-rows: 120px 1fr auto;
}

#addons-content-3 .price,
#premium-content-3 .service-card .price,
#standard-content-3 .service-card .price {
    align-self: end;
}

.tooltip-text b {
    font-size: 0.9125rem;
    font-family: "Lato-Bold", sans-serif;
    font-weight: 400;
}

.features-box li:not(.features-desktop-box li) {
    grid-template-columns: auto auto 30px 1fr !important;
}

.padding-20px {
    grid-column: 2;
    grid-row: 2;
    padding: 10px 20px;
    margin: 0;
    text-align: left;
    border-radius: 4px;
    background-color: #dae8eb;
    border: 1px solid var(--deep-charcoal);
    font-size: 0.9rem;
}

.padding-20px p {
    padding: 0;
    margin: 0;
}

#padding-20px-web {
    display: none;
}

#contact {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;

    background: linear-gradient(to bottom,
            var(--muted-navy),
            rgba(0, 51, 102, 0.2) 90%);
}

#contact h2 {
    margin: 0 0 0.725rem;
    color: var(--amber-hover);
}

#workflow {
    background-color: var(--golden-sand);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}

.workflow-section {
    width: 80%;
    text-align: center;
    padding: 0 0 5%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.workflow-timeline {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    flex-wrap: wrap;
}

.workflow-step {
    flex: 1 1 18%;
    padding: 20px;
    background: linear-gradient(to bottom,
            var(--card-yellow) 0%,
            #fdf5d5 100%);
    border-radius: 8px;
    transform: translateY(20px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.workflow-step:hover {
    transform: translateY(-20px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);

}

.workflow-step svg {
    height: 50%;
    width: 50%;
    max-height: 100px;
}

.workflow-2nd-svg {
    height: 15%;
    width: 15%;
    max-height: 25px;
}

.workflow-step h3 {
    margin-bottom: 10px;
    font-family: "Oswald-Medium", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 400;
}

.workflow-step p {
    font-size: 0.9rem;
    text-align: left;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 0fr 0fr 0fr auto;
    align-items: start;
    padding: 5%;
    width: 90%;
    margin: 0;
    column-gap: 80px;
}

.contact-header {
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
    align-items: center;
}

.contact-header-text {
    grid-column: 1;
    grid-row: 2;
    color: var(--mist-blue);
    font-size: 1.125rem;
}

.contact-description {
    padding-right: 20px;
}

.why-choose-us {
    grid-row: 4;
    grid-column: 1;
}

.why-choose-us h3 {
    font-family: "Oswald-Medium", sans-serif;
    padding: 0;
    margin: 0;
    margin-bottom: calc(0.725rem + 10px);
    font-size: 3rem;
    font-weight: 400;
}

.why-choose-us ul {
    list-style-type: disclosure-closed;
}

.why-choose-us li {
    padding: 4px 0 4px 10px;
    text-indent: 0;
    font-size: 1.1rem;
}

.why-choose-us b {
    font-family: "Lato-Bold", sans-serif;
    font-weight: 400;
    font-size: 1rem;
}

.why-choose-us li::marker {
    transition: color 0.3s ease;
}

.why-choose-us li:hover::marker {
    color: var(--amber);
}

.contact-submit {
    grid-row: 2 / span 3;
    grid-column: 2;
    width: 100%;
    justify-self: center;
    position: relative;
}

.form-title {
    grid-row: 1;
    grid-column: 2;
    font-family: "Lato-Bolds", sans-serif;
    font-size: 3rem;
    color: var(--muted-navy);
    align-self: end;
    justify-self: center;
}

.profile-image-wrapper {
    grid-row: 1 / span 6;
    grid-column: 1;
    place-self: flex-start;
    transition: all 0.5s ease;
}

.profile-image-wrapper img {
    display: block;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #ffda70, #ffe5b4);
    padding: 2px;
    box-shadow: 0 0 10px rgba(180, 154, 70, 0.4), 0 0 8px rgba(192, 192, 192, 0.4);
    background-clip: padding-box;
    transition: all 0.5s ease;
}

.profile-image-wrapper img:hover {
    transform: scale(1.2);
    padding: 4px;
}

.profile-image-wrapper:hover~.contact-grid {
    background-color: rgba(255, 251, 232, 0.5);
}

.main-portfolio-link a {
    border-color: var(--golden-sand);
    color: var(--rich-black);
    background-color: var(--amber);
}

.contact-grid {
    grid-row: 3;
    grid-column: 1;
    display: grid;
    grid-template-columns: auto 40px auto 1fr;
    gap: 0 20px;
    align-items: center;
    padding: 20px;
    border-radius: 4px;
    margin: 2rem 0;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    letter-spacing: 0.0125rem;
    background: linear-gradient(to bottom,
            rgba(207, 216, 227, 0.6),
            rgba(207, 216, 227, 0.9));
    font-weight: 400;
    font-family: "Lato-Regular", sans-serif;
    transition: background-color 0.5s ease;
}

.contact-grid:hover {
    background-color: rgba(255, 213, 107, 0.2);
}

.contact-below-grid {
    color: var(--cool-light-blue);
    grid-row: 5;
    grid-column: 1;
}

.contact-title {
    font-size: 1rem;
    font-weight: 400;
}

.contact-content {
    font-size: 1rem;
}

.contact-grid svg {
    margin: 0;
    padding: 0;
    height: 1.25rem;
    vertical-align: text-top;
    justify-self: stretch;
}

.contact-grid svg .fa-primary {
    fill: var(--amber);
}

.contact-grid svg .fa-secondary {
    fill: var(--muted-navy);
}

.contact-grid h3 {
    grid-row: 1;
    grid-column: 2/-1;
    margin: 0;
    font-weight: 400;
    font-size: 1.375rem;
    font-family: "Lato-Bold", sans-serif;
}

.contact-grid-ian-titles {
    grid-row: 2;
    grid-column: 2 / span 3;
    padding: 0;
    font-size: 0.95rem;
    justify-self: flex-start;
    font-weight: 400;
    font-family: "Lato-Regular", sans-serif;
}

.cell-phone {
    grid-row: 4;
    grid-column: 2;
}

.envelope {
    grid-row: 5;
    grid-column: 2;
}

.pindrop {
    grid-row: 6;
    grid-column: 2;
    height: 1.75rem;
}

.cell-phone,
.envelope,
.pindrop {
    transition: transform 0.3s ease;
}

.cell-phone.rotated,
.cell-phone:hover,
.envelope.rotated,
.envelope:hover,
.pindrop.rotated,
.pindrop:hover {
    transform: rotate(45deg);
}

.contact-grid-ian-titles-2 {
    grid-row: 3;
    grid-column: 2/-1;
    margin: 0;
    padding: 0.5rem 0 0.75rem;
    font-size: 1rem;
    justify-self: flex-start;
    font-weight: 400;
    font-family: "Lato-Regular", sans-serif;
    color: var(--slate-grey);
}

.call-or-text {
    grid-row: 4;
    grid-column: 3;
    font-weight: 400;
    font-family: "Lato-Bold", sans-serif;
}

.phone-number {
    grid-row: 4;
    grid-column: 4;
}

.email-title {
    grid-row: 5;
    grid-column: 3;
    font-weight: 400;
    font-family: "Lato-Bold", sans-serif;
}

.email-address {
    grid-row: 5;
    grid-column: 4;
}

.location-title {
    grid-row: 6;
    grid-column: 3;
    font-weight: 400;
    font-family: "Lato-Bold", sans-serif;
}

.location-syracuse {
    grid-row: 6;
    grid-column: 4;
}

form {
    color: var(--muted-navy);
    background: linear-gradient(to bottom,
            rgba(207, 216, 227, 1),
            rgba(207, 216, 227, 1));
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    height: 100%;
    margin: 20px auto 0;
    padding: 20px;
    gap: 1rem;
    font-size: 0.9rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

form input,
form textarea {
    font-family: "OpenSans-Regular", sans-serif;
    width: 100%;
    padding: 6px 6px 6px 0;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid;
    border-radius: 0;
    border-color: var(--muted-navy);
    color: var(--muted-navy);
    background-color: transparent;
    font-size: 0.9rem;
    transition: border 0.3s ease;
}

form textarea {
    background: #dfe5ed;
    min-height: 120px;
    height: 100%;
    border: 1px solid var(--muted-navy);
    padding-left: 6px;
    border-radius: 4px;
}

form input::placeholder,
form textarea::placeholder {
    color: var(--slate-grey);
    font-family: "OpenSans-Regular", sans-serif;
    padding-left: 0;
}

form input:not(:placeholder-shown),
form textarea:not(:placeholder-shown) {
    padding-left: 10px;
}

form input:focus,
form input:hover,
form textarea:focus,
form textarea:hover {
    font-family: "OpenSans-Regular", sans-serif;
    outline: none;
    border-bottom: 1px solid;
    border-color: var(--amber-hover-cta)
}

form button {
    font-family: "OpenSans-Regular", sans-serif;
    background-color: var(--amber-hover);
    color: var(--muted-navy);
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    justify-self: center;
    padding: 18px 24px;
    transition: all 0.3s ease;
    margin: 20px 0 0;
    grid-column: 1 / -1;
    width: 50%;
}

form button:hover {
    background-color: var(--amber-hover-cta);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

form select {
    font-family: "OpenSans-Regular", sans-serif;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--muted-navy);
    border-radius: 4px;
    background: #dfe5ed;
    color: var(--muted-navy);
    font-size: 0.9rem;
    transition: border 0.3s ease, background-color 0.3s ease;
    appearance: none;
}

form select:focus,
form select:hover {
    outline: none;
    border-color: rgba(255, 193, 7, 0.9);
    background-color: rgba(88, 105, 143, 0.1);
}

form select option {
    font-family: "OpenSans-Regular", sans-serif;
    color: var(--muted-navy);
    background-color: var(--mist-blue);
    font-size: 0.9rem;
}

.first-name-group {
    grid-row: 1;
    grid-column: 1;
}

.last-name-group {
    grid-row: 1;
    grid-column: 2;
}

.email-address-group {
    grid-row: 2;
    grid-column: 1;
}

.phone-number-group {
    grid-row: 2;
    grid-column: 2;
}

.preferred-method-group {
    grid-row: 3;
    grid-column: 1;
}

.category-group {
    grid-row: 4;
    grid-column: 1;
}

.sub-category-group {
    grid-row: 5;
    grid-column: 1;
}

.message-group {
    grid-row: 3 / span 3;
    grid-column: 2;
}

.contact-preference {
    font-family: "Open Sans", sans-serif;
    color: var(--muted-navy);
    display: flex;
}

.contact-preference p {
    padding: 0;
    margin: 0;
    font-size: 0.925rem;
    font-weight: bold;
}

.contact-preference-options {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 0;
}

label {
    font-family: "Lato-Bold";
    font-weight: 400;
    padding: 5px 0;
    font-size: 1rem;
}

.contact-preference label {
    display: grid;
    width: 100%;
    gap: 0 15px;
    grid-auto-flow: column;
    cursor: pointer;
    justify-content: flex-start;
    font-family: "OpenSans-Regular";
    font-size: 0.9rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-preference input[type="radio"] {
    margin-right: 5px;
    grid-column: 1;
    grid-row: 1;
}

.optional-text {
    color: var(--slate-grey);
    font-weight: 400;
    font-size: 0.8rem;
}

.required-text {
    color: #d9534f;
    font-size: 0.8rem;
}

fieldset {
    border: none;
    margin: 6px 0;
    padding: 0;
}

legend {
    width: 100%;
    font-family: "Lato-Bold";
    font-weight: 400;
    margin-bottom: 5px;
    font-size: 1rem;
}

#phoneNumber {
    width: 100%;
    font-size: 0.9rem;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid;
    border-color: var(--muted-navy);
    border-radius: 0;
    box-sizing: border-box;
}

#form-message {
    grid-row: 5;
    font-size: 0.9rem;
    padding: 32px 20px 20px;
    text-align: center;
    border-radius: 4px;
    color: var(--mist-blue);
}

#form-message.form-success {
    color: var(--mist-blue);
}

#form-message.form-error {
    color: #d9534f;
}


#contact .contact-grid {
    background: linear-gradient(to bottom, rgba(207, 216, 227, 1), rgba(207, 216, 227, 0.7));
}

#contact .contact-grid-ian-titles-2 {
    color: #3b5a79
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    min-height: 200px;
    width: 100%;
    gap: 16px;
    background-color: var(--rich-black);
    text-align: center;
}

footer p {
    margin: 0 4px;
    padding: 0;
}

.divider {
    flex-grow: 1;
    margin: 0 12px;
    height: 1px;
    background-color: var(--steel-gray);
}

.footer-logo {
    width: 150px;
    height: 75px;
}

.copyright {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0 20px 20px;
    margin: 0;
    justify-content: center;
    align-items: center;
}

.copyright-name {
    display: flex;
    font-size: 0.9rem;
    color: var(--cool-light-blue);
}

.footer-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    font-size: 0.85rem;
    gap: 1rem;
}

.footer-links a {
    color: var(--amber);
    text-decoration: none;
    position: relative;
}

.footer-links a:hover {
    color: var(--amber-hover);
    text-decoration: none;
}


@media screen and (min-width: 769px){
    body{
        overflow-x: scroll;
    }

    .hide-desktop {
        display: none !important;
    }

    #nav-mobile,
    .mobile-header {
        display: none;
    }

    header .logo a {
        padding: unset;
        border: none;
        grid-row: 1;
        grid-column: 1 / -1;
    }

    header {
        color: var(--service-card-white);
        transition: transform 0.5s ease, opacity 0.5s ease, background-color 0.3s ease;
    }

    .dropdown.lavender a:not(.dropdown.lavender .dropdown-content a) {
        color: var(--lavender) !important;
    }

    .dropdown.nav-teal a:not(.dropdown.nav-teal .dropdown-content a) {
        color: var(--soft-teal) !important;
    }

    .nav {
        display: flex;
        font-family: "Oswald-Regular", sans-serif;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-size: clamp(0.875rem, 0.8vw, 1rem);
        font-weight: 400;
        align-items: center;
        padding: 0 5%;
        position: relative;
        justify-content: space-between;

        opacity: 1;
    }

    #nav{
        transition: transform 0.5s ease, opacity 0.5s ease, background-color 0.3s ease;
    }

    .nav a:not(.logo a):not(.dropdown-content a) {
        position: relative;
        text-decoration: none;
        color: var(--service-card-white);
        padding: 8px 16px;
        display: inline-block;
        overflow: hidden;
        text-align: center;
        height: min-content;
    }

    .nav a:not(.logo a):not(.dropdown-content a)::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: var(--amber-hover);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav a:not(.logo a):not(.dropdown-content a):hover::before {
        width: 100%;
    }

    .nav .dropdown.lavender a::before {
        background-color: var(--lavender) !important;
    }

    .nav .dropdown.nav-teal a::before {
        background-color: var(--soft-teal) !important;
    }


    .nav1 {
        width: auto;
        display: flex;
        justify-content: start;
        gap: .5rem;
        margin-left: 2rem;
        /* flex-wrap: wrap; */
        grid-row: 2;
    }

    .nav2 {
        width: auto;
        display: flex;
        justify-content: end;
        gap: .5rem;
        /* flex-wrap: wrap; */
        grid-row: 2;
    }

    .dropdown {
        position: relative;
        display: inline-block;
        height: min-content;
        line-height: 1.5;
    }

    .dropdown a:hover,
    .nav a:hover {
        color: var(--amber-hover)
    }

    .nav a:hover .dropdown-arrow,
    .dropdown a:hover .dropdown-arrow {
        border-top: 5px solid var(--amber-hover);
    }

    .dropdown.lavender a:not(.dropdown.lavender .dropdown-content a),
    .dropdown.nav-teal a:not(.dropdown.nav-teal .dropdown-content a) {
        position: relative;
        color: var(--muted-navy);
        border: none;
        display: inline-block;
        padding: 8px 16px;
    }

    .dropdown-content {
        display: block;
        position: absolute;
        top: calc(100%);
        left: 0;
        background-color: var(--deep-charcoal);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        border-radius: 4px;
        min-width: 100%;
        z-index: 100;
        height: min-content;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in;
    }

    .dropdown-content.nav-open {
  
  
        
    }

    .dropdown a {
        text-align: center;
        text-decoration: none;
        background-color: transparent;
        padding: 8px 16px;
        line-height: 1.5;
        width: 100%;
    }

    .new {
        background-color: var(--amber-hover-cta);
        color: var(--rich-black);
        font-size: 0.6375rem;
        padding: 2px 6px;
        border-radius: 4px;
        position: relative;
        display: inline-block;
        align-self: self-start;
        font-family: "Lato-Bold", sans-serif;
        font-weight: 400;
        justify-self:flex-end
    }

    .soon{
        background-color: var(--mist-blue);
    }

    header .dropdown-arrow {
        position: relative;
        top: 15px;
        right: 0;
        width: 0;
        height: 0;
        margin-left: 8px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid currentColor;
        transition: border-top 0.2s ease;
    }

    .dropdown .dropdown-content a {
        display: flex;
        justify-content: space-between;
        font-family: "Lato-Regular";
        text-transform: capitalize;
        text-align: left;
        color: var(--service-card-white);
        font-size: 0.9375rem;
        border: none;
        column-gap: 5%;

    }

    .dropdown-content a:hover,
    .dropdown.nav-teal .dropdown-content a:hover,
    .dropdown.lavender .dropdown-content a:hover {
        background-color: var(--steel-gray);
        color: var(--amber-hover)
    }

    /* .dropdown:hover .dropdown-content {
        opacity: 1;
        max-height: 1000px;
    } */


    .intro-blip {
        text-align: left;
        background: linear-gradient(to bottom,
                var(--card-yellow) 0%,
                #fdf5d5 100%);
        padding: 20px;
        margin: 0;
        max-width: 1000px;
        border-radius: 4px;
        font-size: 1.1rem;
        font-weight: 400;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 0 0 10px var(--muted-navy);
        display: grid;
        grid-template-columns: auto;
        column-gap: 5%;
        align-items: center;
    }

    .intro-blip-p {
        grid-row: 1;
        grid-column: 2;
        margin: 1rem 0;
        padding: 0 20px;
    }

    .intro-blip p {
        margin: 20px 0 0;
    }

    .intro-blip img {
        grid-row: 1 / span 2;
        grid-column: 1;
        width: 100%;
        height: auto;
        border-radius: 4px;
        object-fit: cover;
    }

    .intro-blip a {
        grid-row: 2;
        grid-column: 2;
        margin: 20px auto;

    }

    .pronunciation {
        font-style: italic;
        font-size: 1rem;
        color: #555;
    }


    .services-header {
        display: grid;
        grid-template-columns: 1fr;
        position: relative;
        overflow: hidden;
        z-index: 1;
        width: 100%;
        background: linear-gradient(0deg, #f9f5eb 30%, var(--golden-sand) 30%);
        clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 95%);
        margin: -120px 0 0;
        padding: 120px 0;
        justify-items: center;
    }

    .transition-blip {
        position: relative;
        /* For layering */
        background: linear-gradient(135deg, #2c3e50, var(--muted-navy), #1a2a38, #2c3e50);
        background-size: 300% 300%;
        /* Adjusted for smoother transitions */
        animation: backgroundMotion 5s infinite alternate ease-in-out;
        /* Slightly faster and smoother */
        color: #f9f5eb;
        /* Light text for contrast */
        padding: 100px 20px;
        margin: 40px;
        width: 100%;
        text-align: center;
        opacity: 0;
        /* For fade-in effect */
        transform: translateY(20px);
        /* Start position for animation */
        transition: all 1.2s ease;
        /* Smooth fade-in */
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        /* Enhanced depth */
    }

    @keyframes backgroundMotion {
        0% {
            background-position: 0% 50%;
        }

        20% {
            background-position: 25% 75%;
        }

        50% {
            background-position: 75% 25%;
        }

        80% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }



    .transition-blip.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .transition-content {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .transition-content h3 {
        font-family: "Oswald-Medium";
        font-weight: 400;
        letter-spacing: 2.25px;
        line-height: 1.5;
        text-transform: uppercase;
        color: var(--mist-blue);
        width: 35%;
        margin-left: auto;
        margin-right: auto;
        font-size: 2.5rem;
    }

    .transition-content-innovation {
        font-size: 7.25rem;
        letter-spacing: 2.75px;
        color: var(--amber-hover);
        text-decoration: underline;
        text-underline-offset: 1rem;
        text-decoration-thickness: 4px;
        text-decoration-color: var(--amber);
    }

    .transition-content p {
        flex: 1;
        text-align: center;
        margin: 0;
        font-size: 1.25rem;
    }

    .service-card-header-p {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: space-between;
    }

    .services-header-card p {
        font-size: 1rem;
    }

    .testimonial {
        text-align: center;
    }

    .testimonial p {
        margin: 0;
        padding: 4px 0;
        font-size: 0.9375rem;
        text-align: center;
        font-family: "Lato-Bold", sans-serif;
        font-weight: 400;
    }

    .testimonial blockquote {
        line-height: 1.6;
    }

    .services-header-card a {
        margin: 20px auto;
    }

    #recent-project {
        text-align: center;
        padding: 0 20px 80px;
        background: linear-gradient(0deg, #f9f5eb 30%, var(--muted-navy) 30%);
    }

    .recent-project-p {
        font-size: 1.125rem;
        margin: 1.5rem auto 5rem;
        width: 50%;
        line-height: 1.6;
        text-align: left;
        padding: 20px 20px 0;
        color: var(--mist-blue);
    }

    @keyframes borderAnimation {
        0% {
            border-color: var(--golden-sand);
        }

        25% {
            border-color: var(--amber-hover);
        }

        50% {
            border-color: #f4c27f;
            /* Slightly lighter golden hue */
        }

        75% {
            border-color: var(--amber-hover);
        }

        100% {
            border-color: var(--golden-sand);
        }
    }



    .recent-project-card {
        max-width: 1800px;
        margin: 0 auto;
        padding: 20px;
        background: linear-gradient(to bottom,
                var(--card-yellow) 0%,
                #fdf5d5 100%);
        display: grid;
        column-gap: 5%;
        grid-template-columns: 1.5fr 1fr;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        border: 20px solid var(--golden-sand);
        animation: borderAnimation 5s infinite;
    }



    #recent-project hr {
        grid-row: 2;
        grid-column: 1 / span 2;
        margin-bottom: 1rem;
        height: 1px
    }

    #recent-project .recent-project-card .recent-project-icon {
        padding: 0;
        margin: auto;
        width: 50px;
        height: auto;
        grid-row: 1;
        grid-column: 1;
        object-fit: cover;
        align-self: center;
    }

    .project-highlights {
        grid-row: 3;
        grid-column: 2;
        list-style-type: none;
        padding: 0 10%;
        margin: 0;
        overflow-wrap: anywhere;
    }

    #portfolio .project-highlights {
        padding: 0 20px;
    }

    .project-highlights li {
        padding: 4px 0;
        text-align: left;
        display: grid;
        grid-template-columns: .33fr 1fr;
        gap: 0 8px;
        font-size: 0.9325rem;
    }

    .project-highlights strong {
        font-family: "Lato-Bold", sans-serif;
        font-weight: 400;
        font-size: 1rem;
    }

    .project-highlights a {
        color: inherit;
    }

    #recent-project .recent-project-cta {
        grid-row: 4;
        grid-column: 2;
        display: flex;
        flex-direction: row;
        gap: 40px;
    }

    #recent-project .recent-project-full-img {
        grid-row: 1 / span 4;
        grid-column: 1;
        margin-bottom: 0;
        height: 100%;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    #recent-project h2 {
        font-family: "Lato-Bold", sans-serif;
        color: var(--amber-hover);
        text-align: center;
        margin: 0 0 0.725rem;
        padding: 0;
    }

    .recent-project-card-row-1 {
        grid-row: 1;
        grid-column: 2;
        display: grid;
        padding: 0 20px;
        align-items: center;
    }

    #recent-project .recent-project-title {
        grid-row: 1;
        grid-column: 2;
        font-family: "Oswald-Medium", sans-serif;
        font-weight: 400;
        letter-spacing: 0.5px;
        padding: 8px 0;
        text-align: left;
        font-size: 2rem;
    }

    #recent-project .recent-project-description {
        grid-row: 2;
        grid-column: 2;
        text-align: left;
        line-height: 1.5;
        margin: 0;
        padding: 0 20px 20px;
        font-size: 1rem;

    }

    #recent-project-overlay iframe {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 100%;
        border: none;
        background: rgba(0, 0, 0, 0.8);
    }


    .pricing{
        background: 
        linear-gradient(
            to bottom, 
            rgba(249, 245, 235, 1), 
            transparent 80%
        ), 
        radial-gradient(
            circle at 25% 55%,
            rgba(240, 180, 120, 0.25),
            transparent 50%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(0, 0, 0, 0.05),
            rgba(255, 231, 207, 0.8) 40%,
            rgba(249, 245, 235, 1) 80%
        ), 
        radial-gradient(
            circle at 50% 20%, 
            rgba(255, 240, 220, 0.6),
            rgba(255, 231, 207, 0.6) 40%, 
            rgba(249, 245, 235, 0.8) 80%
        ),
        radial-gradient(
            circle at 20% 50%,
            rgba(220, 140, 90, 0.6),
            rgba(255, 200, 150, 0.3) 40%, 
            transparent 70%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(255, 180, 100, 0.5),
            transparent 50%
        );
    

        padding: 0 20px 40px;

    }

    .pricing-content, .pricing-cta{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    @keyframes gradientFlow {
        0% { background-position: 0% 50%; }
        100% { background-position: 100% 50%; }
    }
    
    .pricing-content h2 {
        background: linear-gradient(
            to right, 
            var(--muted-navy), 
            rgb(119, 98, 59),
            var(--deep-charcoal)
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* color: var(--muted-navy); */
        background-size: 200% 200%;
        animation: gradient-flow 12s ease infinite;
        margin-bottom: 2rem;
    }   
    

    

    .pricing-cta{
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin: 40px 0;
        padding: 80px;
        font-size:  1.03125rem;
        color: var(--deepened-navy);
        /* background: linear-gradient(to bottom, transparent, rgba(250, 235, 210, 0.15) 98%), 
        radial-gradient(circle at center, #FAE1B5, #E6D4B4 60%, rgba(180, 170, 140, 0.3) 100%); */
        background-color: var(--service-card-white);
        border: 20px solid var(--deepened-navy);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2), inset 0 3px 6px rgba(200, 160, 120, 0.3), inset 0 0 0 10px var(--amber-hover);
        max-width: 1600px;
    }


    .pricing-cta h3{
        font-family: "Oswald-Medium", sans-serif;
        font-weight: 400;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #1C2D40;
        font-size: 3.75rem;
        margin-bottom: 1.5rem;
        margin-top: 0;
    }

    .pricing-cta hr{
        margin-bottom: 0;
        margin-top: 20px;
        width: 95%;
        height: 1px;
        border: none;
        background-color: var(--steel-gray);
    }


    .pricing-content .subtle-link{
        color: #795015;
        margin-top: 0;
        font-size: 0.9375rem;
    }



    .pricing-cta .pricing-link{
        margin-bottom: 0;

    }


    .pricing-cta p:first-of-type{
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .pricing-cta p:nth-of-type(2){
        margin-top: 12px;
        margin-bottom: 20px;
    }

    .pricing-cta .more-solutions{
        margin: 1rem 0 0;
        /* font-size: 0.9375rem; */
        font-family: "OpenSans-SemiBold", sans-serif;
        font-weight: 400;
    }

    .pricing-cta b{
        font-family: "OpenSans-SemiBold", sans-serif;
        font-weight: 400;
    }

    .pricing-content .subtle-link:hover{
        color: var(--steel-gray)
    }

    .pricing-cta .disclosure {
        font-size: 0.84375rem;
        color: var(--steel-gray);
        margin-top: 8px;
    }

    .pricing-table table {
        width: 100%;
        border-collapse: collapse;
        margin: 40px 0;
        font-size: .9375rem;
        text-align: left;
      }
      
      .pricing-table th, .pricing-table td {
        border: 1px solid #ddd;
        padding: 12px;
      }
      
      .pricing-table th {
        background-color: var(--muted-navy);
        color: var(--service-card-white);
        font-size: 1.0625rem;
        padding-left: 20px;
        padding-right: 20px;
        font-family: "Lato-Bold", sans-serif;
      }

      .pricing-table tr:nth-child(odd) {
        background: #f1f6fa;
      }


      .popular-row:hover td {
        background-color: #fff4c4;
    }



      
      .pricing-table tr:nth-child(even) {
        background-color: #f9f9f9;
      }
      
      .pricing-table td {
        vertical-align: top;
        padding: 20px;
      }
      
      .pricing-table td strong {
        font-family: "Lato-Bold", sans-serif;
        font-size: 1rem;
        color: var(--muted-navy);
      }
      
      .pricing-table td:last-child {
        font-family: "OpenSans-SemiBold", sans-serif;
        font-weight: 400;

      }

      .popular-badge {
        display: inline-block;
        fill: var(--amber-dark);
        font-size: 0.825rem;
        width: 1.125rem;
        border-radius: 5px;
        margin-left: 10px;
      }
      .pricing-table tbody tr.lite-row ul {
        margin-top: 0;
      }
      .pricing-table tbody tr.popular-row {
        background-color: #fdf7e2;
      }

      .popular-row{
        padding: 20px;
      }
      
      .pricing-table {
        margin: 0 auto;
        max-width: 1400px;
      }

      .pricing .cta-button{
        width: unset;
        padding: 16px 28px;
      }
      

    .commitment-video-wrapper::before {
        content: '';
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        /* Slight dark overlay */
        z-index: 1;
        pointer-events: none;

    }

    .commitment-video-wrapper {
        position: relative;
        overflow: hidden;
        top: 0;
        left: 0;
        margin-top: 20px;
        background: linear-gradient(135deg, #1a2730, #22384a);
        padding: 20px;
        border-radius: 10px;
        width: 100%;
        height: 100%;
        z-index: 1;
        box-shadow: 0 0 20px rgba(32, 64, 128, 0.8);
    }

    .commitment-video {
        position: relative;
        top: 0;
        left: 0;
        filter: brightness(0.8);
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Ensures the video covers the section properly */
        z-index: -1;
        /* Places the video behind the content */
    }

    .commitment-video.recolored-video {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 1;
        z-index: -1;
    }

    .workflow-header {
        position: relative;
        background: linear-gradient(to bottom, var(--deepened-navy), #001f33);
        padding: 100px 40px;
        margin: 40px auto;
        width: 100%;
        text-align: center;
        border: 20px solid transparent;
        /* Transparent border for gradient */
        border-image-source: radial-gradient(circle, #2c3e50, #3a4d63, #47596d, #55657a, #f2f2f2);

        border-image-slice: 1;
        /* Ensures gradient applies evenly */
        transform: translateY(20px);
        transition: all 1.2s ease;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .workflow-timeline {
        position: relative;
        margin: 60px 0 20px;
        padding: 60px 0;
        gap: 28px;
    }

    .timeline {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 5;
    }

    .dot {
        width: 16px;
        height: 16px;
        background-color: var(--muted-navy);
        border: 2px solid var(--muted-navy);
        border-radius: 50%;
        position: relative;
    }

    .line {
        width: 15vw;
        height: 3px;
        background-color: var(--muted-navy);
        margin: 0 4px;
    }

    .timeline .arrow {
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 16px solid var(--muted-navy);
        position: absolute;
        top: -30px;
        /* Adjust as needed */
        left: calc(0% + 8px);
        transform: translateX(-50%);
        transition: left 0.3s ease-in-out;
    }

    #discovery-card.hovered {
        transform: translateY(-20px);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    }

    /* Move the Arrow Based on Hover */
    #discovery-card:hover~.timeline .arrow {
        left: calc(0% + 8px);
    }

    #planning-card:hover~.timeline .arrow {
        left: calc(25% + 4px);
        /* Adjust based on your layout */
    }

    #design-development-card:hover~.timeline .arrow {
        left: 50%;
        /* Adjust based on your layout */
    }

    #feedback-revisions-card:hover~.timeline .arrow {
        left: calc(75% - 4px);
        /* Adjust based on your layout */
    }

    #testing-launch-card:hover~.timeline .arrow {
        left: calc(100% - 8px);
        /* Adjust based on your layout */
    }

    .workflow-section h2 {
        font-family: "Oswald-Medium", sans-serif !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 400;
        color: var(--mist-blue);
        padding-top: 0 !important;
        margin: 0;
        font-size: 3rem;
    }

    .commitment-p {
        display: flex;
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        color: var(--amber-hover);
        font-size: 4.75rem;
        letter-spacing: 0.5px;
        font-family: "Oswald-Medium", sans-serif;
        font-weight: 400;
        margin: 2rem auto 3.5rem;
        text-transform: uppercase;
        text-decoration: underline;
        text-decoration-color: var(--amber);
        text-underline-offset: 1rem;
        text-decoration-thickness: 4px;
    }

    .workflow-cta-p {
        color: var(--service-card-white);
        font-size: 1.125rem;
        margin: 0 auto;
        text-align: center;
        padding: 10px 20px 20px;
    }

    #discovery-card:hover~.timeline #discovery,
    #planning-card:hover~.timeline #planning,
    #design-development-card:hover~.timeline #design-development,
    #feedback-revisions-card:hover~.timeline #feedback-revisions,
    #testing-launch-card:hover~.timeline #testing-launch {
        background-color: var(--amber);
    }

    .site-card {
        background: linear-gradient(to bottom, var(--service-card-white), #fcfcfc);
        border: 20px solid var(--golden-sand);
        padding: 20px;
        border-radius: 4px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        max-width: 1800px;
        column-gap: 5%;
        margin: 0 auto;
        color: var(--muted-navy);
        font-size: 0.9375rem;
        animation: borderAnimation 10s infinite;
    }

    .site-card hr {
        grid-column: 1 / span 2;
        grid-row: 2;
        margin-bottom: 1rem;
        height: 1px;
        width: 100%;
        margin: 0 0 1rem;
    }

    .site-card-background {
        grid-column: 2;
        grid-row: 2;
        line-height: 1.5;
        margin: 0;
        padding: 0 20px 20px;
        font-size: 1rem;
    }

    .portfolio-right-col-header{
        display: flex;
        flex-direction: column;
        margin: 0 auto 5rem;
        width: 50%;
        padding: 0 20px 20px;
    }

    #portfolio .portfolio-right-col h2{
        text-align: center;
    }

    .site-card-background p:first-of-type {
        margin-top: 0;
    }

    #portfolio .recent-project-card-row-1 img {
        padding: 0;
        margin: auto;
        width: 50px;
        height: auto;
        grid-row: 1;
        grid-column: 1;
        object-fit: cover;
        align-self: center;
    }
    .site-card-img-div{
        grid-row: 1 / span 2;
        grid-column: 1;
    }
    .site-card-img-div img {
        object-fit: cover;
        object-position: top;
        border: 10px solid transparent;
        border-image-source: radial-gradient(circle, #ffffff, #f2f2f2, #d3d3d3, #c0c0c0, #a9a9a9);
        border-image-slice: 1;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }


    .why-choose-us-header {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        width: 80%;
        margin: 0 auto;
        padding: 100px 40px;
        gap: 0 20px;
        text-align: center;
        background: linear-gradient(to bottom, var(--deepened-navy) 0%, var(--rich-black) 100%);
        background-size: 300% 300%;
        border: 20px solid transparent;
        border-image-source: radial-gradient(circle, #ffb300, #ffa726, #e68a00, #cc7700, #8b4f00);
        border-image-slice: 1;

    }

    .why-choose-us-header .commitment-p {
        margin: 1.25rem 0 2.25rem;
        font-size: 4.5rem;
        grid-column: 1;
        grid-row: 2;
    }

    .doers-difference-subhead {
        grid-column: 1;
        grid-row: 3;
        color: var(--service-card-white);
        padding: 0 0 20px;
        line-height: 1.7;
        font-size: 1.125rem;
    }

    .card-banner {
        grid-column: 2;
        grid-row: 1 / span 3;

        margin: 0 auto;
        display: block;
        border: 2px solid var(--rich-black);
        object-fit: cover;
        object-position: top;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .card-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


    .why-choose-us .icon {
        height: 2.5rem;
        width: auto;
        margin: 1.5rem auto .75rem;

    }

    .why-choose-us ul {
        padding: 0 10%;
        margin: 2rem auto;
        display: flex;
        width: 100%;
        gap: 2rem;
    }

    .why-choose-us li {
        display: flex;
        background: linear-gradient(to bottom,
                var(--card-yellow) 0%,
                #fdf5d5 100%);
        flex-direction: column;
        text-align: left;
        font-size: 0.9375rem;
        padding: 0 20px 2rem;
        border-radius: 8px;
        line-height: 1.7;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin: 2rem auto;
        max-width: 325px;
        border: 1px solid var(--golden-sand);
        transition: transform 0.5s ease, box-shadow 0.5s ease;
        flex: 1 1 calc(15% - 1rem);
        justify-content: space-evenly;

    }

    .why-choose-us li:hover {
        transform: translateY(-10px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .why-choose-us b {
        text-align: center;
        display: block;
        font-family: "Oswald-Medium";
        letter-spacing: 0.5px;
        text-transform: uppercase;
        width: 100%;
        padding: 0 0 1rem;
        font-size: 1.375rem;
        text-decoration: underline;
        text-underline-offset: 4px;
        justify-content: center;
    }

    .why-choose-us li::marker {
        display: none;
    }

    .why-choose-us {
        color: var(--muted-navy);
        padding: 60px 0 40px;
        margin: 2rem 0 0;
        /* background: linear-gradient(to bottom, #ffffff, #f0f4f8); */
        background-color: var(--amber-hover-cta);
        background: linear-gradient(to bottom, #f8e8b0, var(--amber-hover-cta));
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* border-bottom: 2px solid var(--rich-black); */
        grid-row: 3;
        grid-column: 1;
    }


    #portfolio .why-choose-us h2 {
        padding: 20px 20px 0;
        color: var(--mist-blue);
        font-size: 3rem;
        font-family: "Oswald-Medium", sans-serif;
        font-weight: 400;
        margin-bottom: 0;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        text-align: center;
    }

    .portfolio-wrapper {
        max-width: 100%;
        padding: 5% 2.5%;
        grid-template-columns: 1fr;
    }

    .portfolio-left-col{
        grid-column: 1;
        grid-row: 2
    }
    .portfolio-right-col{
        position: relative;
        grid-column: 1;
        grid-row: 1;
        top: unset;
    }

    .site-card h3 {

        margin: 0;

        color: var(--muted-navy);

        grid-row: 1;
        grid-column: 2;
        font-family: "Oswald-Medium", sans-serif;
        font-weight: 400;
        letter-spacing: 0.5px;
        padding: 8px 0;
        text-align: left;
        font-size: 2rem;
    }

    .subtle-link {
        font-size: 1rem;
        width: max-content
    }

    .main-portfolio-link {
        width: 100%;
        background-color: rgba(14, 18, 26, 0.85);
        background-image: url('/img/stone-wall-bg-grey.webp');
        background-blend-mode: overlay;
        gap: 20px;
        padding: 5%;
        display: grid;
        position: relative;
        z-index: 1;
        margin: 0 auto;
        align-items: center;
        text-align: center;
        align-content: center;
    }

    .section-divider {
        height: 40px;
    }

    .main-portfolio-link-p {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }


    .main-portfolio-link-p p {
        display: flex;
        flex-direction: column;
        flex: 1 1 calc(15% - 1rem);
        text-align: center;
        line-height: 1.5;
        border-radius: 8px;
        align-items: center;
        font-size: 1rem;
        gap: 1.5rem;
        padding: 20px;
        transition: all 0.3s ease;
        border: 2px solid var(--amber-dark);
        background: linear-gradient(
            135deg,
            rgba(14, 18, 26, 0.95) 0%,
            rgba(28, 36, 48, 0.95) 100%
          );
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4); 
    }

    .main-portfolio-link-p p b {
        display: contents;
        font-family: "OpenSans-SemiBold", sans-serif;
        font-weight: 400;
    }

    .main-portfolio-link-p img {
        width: 64px;
        padding: 8px;
        height: auto;
        /* background: var(--deep-charcoal); */
        border-radius: 4px;
        /* border: 2px solid var(--steel-gray); */
        transition: filter 0.3s ease;
    }

    .main-portfolio-link-p p:hover {
        background: linear-gradient(
          135deg,
          rgba(28, 36, 48, 0.95),
          rgba(14, 18, 26, 0.95)
        );
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
        transform: translateY(-10px); 
      }

    .main-portfolio-link-p p:hover img {
        filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.6)) drop-shadow(0 0 20px rgba(255, 165, 0, 0.4));
    }

    .main-portfolio-link-subtext {
        display: flex;
    }

    .main-portfolio-link-subtext p {
        color: var(--cool-light-blue);
        font-size: 0.9375rem;
        text-align: left;
        line-height: 1.5;
        padding: 12px 0 20px;
        margin: 0 auto;
    }
    @keyframes gradient-flow {
        0% {
          background-position: 0% 50%;
        }
        25% {
            background-position: 100% 50%;
          }
          50% {
            background-position: 100% 50%;
          }
        100% {
          background-position: 0% 50%;
        }
      }
    .main-portfolio-link h2 {
        background: linear-gradient(
            90deg,
            rgba(255, 100, 0, 1),
            rgba(255, 215, 0, 1),
            rgba(255, 100, 0, 1)
          );
          background-size: 200% 200%; /* Makes the gradient appear to move */
          animation: gradient-flow 12s ease infinite; /* Adjust speed as needed */
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-logo,
    .footer-logo img {
        width: 120px;
        height: 60px;
    }

    .copyright-name-div{
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .copyright-name {
        justify-content: center;
    }


}


@media screen and (max-width: 768px), 
       screen and (max-width: 1024px) and (orientation: landscape) {

    .commitment-video-wrapper::before {
        content: '';
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        /* Slight dark overlay */
        z-index: 1;
        pointer-events: none;

    }

    .commitment-video-wrapper {
        position: relative;
        overflow: hidden;
        top: 0;
        left: 0;
        margin-top: 20px;
        background: linear-gradient(135deg, #1a2730, #22384a);
        padding: 20px;
        border-radius: 10px;
        width: 100%;
        height: 100%;
        z-index: 1;
        box-shadow: 0 0 20px rgba(32, 64, 128, 0.8);
    }

    .commitment-video {
        position: relative;
        top: 0;
        left: 0;
        filter: brightness(0.8);
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Ensures the video covers the section properly */
        z-index: -1;
        /* Places the video behind the content */
    }

    .commitment-video.recolored-video {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 1;
        z-index: -1;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        overflow-x: hidden;
    }

    a[href^="tel"] {
        color: var(--muted-navy);
        text-decoration: none;
        -webkit-appearance: none;
    }

    .hide-mobile {
        display: none !important;
    }

    h1 {
        font-size: 3rem;
        font-weight: 400;
        font-family: "Lato-Bold", sans-serif;
    }

    h2 {
        font-size: 2.625rem;
        font-weight: 400;
        font-family: "Lato-Bold", sans-serif;
    }


    header {
        min-height: 65px;
        height: 65px;
        width: 100%;
        padding: 0;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        background-color: transparent;
            transition: transform 0.5s ease, opacity 0.5s ease, background-color 0.3s ease;

    }

    header.scrolled {
        background-color: var(--muted-navy);

    }


    header .nav1,
    header .nav2,
    header .logo {
        display: none;
    }

    header .logo-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90px;
        height: 45px;
        grid-row: 1;
        justify-self: left;
        margin: 10px 0;
    }

    header .logo-mobile img {
        width: 90px;
        height: 45px;
    }

    header .logo-mobile a {
        width: 90px;
        height: 45px;
    }

    nav a {
        display: none;
    }

    header .mobile-header,
    header .nav {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: 1fr auto;
        gap: 0;
        margin: 0;
        width: 100%;
        align-items: center;
    }

    header .mobile-header {
        padding: 0 20px;
    }

    #nav{
        transition: transform 0.5s ease, opacity 0.5s ease, background-color 0.3s ease;
    }
    #nav-mobile {
        display: block;
        grid-column: 1 / -1;
        position: fixed;
        top: 65px;
        right: -100%;
        width: 100vw;
        height: calc(100vh - 65px);
        background: radial-gradient(circle, #cfd8e3, #aeb8c7);
        padding: 8px 20px 0;
        font-size: 1rem;
        gap: 12px;
        overflow-y: auto;
        transition: transform 0.5s ease-in-out;
        transform: translateX(0);
    }

    #nav-mobile hr {
        border-color: var(--steel-gray);
        border-bottom: none;
        border-right: none;
        border-left: none;
        width: 100%;
        margin: 20px auto;
    }

    #nav-mobile.nav-open {
        transform: translateX(-100%);
    }

    #nav-mobile a {
        display: block;
        margin: 8px 0;
        padding: 8px 10px;
        text-decoration: none;
        font-family: "Oswald-Medium", sans-serif;
        letter-spacing: 0.5px;
        font-weight: 400;
        text-transform: uppercase;
        color: var(--muted-navy);
        background-color: var(--mist-blue);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        border: none;
        width: 100%;
    }

    #nav-mobile a:hover,
    #nav-mobile a:active {
        background-color: var(--amber-hover);
    }

    #nav-mobile a.inactive {
        background-color: #8c98a1;
        color: var(--slate-grey);

    }

    .hamburger {
        grid-row: 1;
        grid-column: 3;


    }


    #mobileHamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 12px;
        width: 24px;
        transform: scale(1);
        transform-origin: center;
        margin: 8px 0;
        cursor: pointer;
        transition: transform 0.3s ease;
        align-self: center;
        justify-self: end;
    }

    #mobileHamburger span {
        display: block;
        height: 2px;
        width: 100%;
        margin: 0;
        background-color: var(--cool-light-blue);
        transition: transform 0.3s ease, background-color 0.3s ease;
        transform-origin: center;
        justify-content: center;
    }

    #mobileHamburger span:nth-child(1) {
        background-color: var(--service-card-white);
    }

    #mobileHamburger span:nth-child(2) {
        opacity: 1;
        transition: opacity .1s ease;
    }

    #mobileHamburger span:nth-child(3) {
        background-color: var(--amber-hover);
    }

    #mobileHamburger.open span:nth-child(1) {
        transform: rotate(45deg) translateY(3px) translateX(5px);
        background-color: var(--mist-blue);

    }

    #mobileHamburger.open span:nth-child(2) {
        opacity: 0;
    }

    #mobileHamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translateY(-2px) translateX(4px);
        background-color: var(--mist-blue);
    }

    #mobileHamburger.open span {
        background-color: var(--cool-light-blue);
    }

    .accordion-wrapper {
        margin: 20px auto 0;
        margin-inline: auto;
    }

    #nav-mobile .accordion-trigger:hover,
    #nav-mobile .accordion-trigger :active {
        background-color: var(--amber-hover);
    }

    #nav-mobile .accordion-trigger.nav-teal {
        background-color: var(--soft-teal);
    }

    #nav-mobile .accordion-trigger.nav-teal.active {
        background-color: var(--soft-teal-hover);
    }

    #nav-mobile .accordion-trigger.lavender {
        background-color: var(--lavender);
    }

    #nav-mobile .accordion-trigger.lavender.active {
        background-color: var(--lavender-hover);
    }

    #nav-mobile .accordion-content {
        padding: 0 0 0 1rem;
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.5s ease;
    }

    #nav-mobile .accordion-content[aria-hidden="false"] {
        grid-template-rows: 1fr;
    }

    #nav-mobile .accordion-content[aria-hidden="true"]>div {
        margin: 0;
    }

    #nav-mobile .accordion-content>div {
        overflow: hidden;
        margin: 8px 0;
        transition: margin 0.5s ease;
    }


    .accordion-content ul li,
    #community ul li {
        color: var(--dun);
        display: grid;
        grid-template-columns: 95px auto;
        align-items: top;
    }

    .accordion-content ul li b {
        color: var(--isabelline);
    }

    #nav-mobile .accordion button {
        font-family: "Oswald-Medium", sans-serif;
        font-weight: 400;
        letter-spacing: 0.5px;
        font-size: 1rem;
    }

    #nav-mobile .accordion {
        padding: 0;
        margin: 8px 0;

    }

    #faq .accordion {
        /* background: #2E3237; */
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    #nav-mobile .accordion-panel {
        padding: 0;
        margin: 0;
    }

    .accordion h3 {
        position: relative;
        font-size: 1.125rem;
        margin: 0;

    }

    #nav-mobile .accordion-trigger {
        margin: 0;
        padding: 8px 10px;
        position: relative;
        display: block;
        font-family: "Lato-Bold", sans-serif;
        font-size: 1rem;
        background: var(--mist-blue);
        font: inherit;
        text-transform: uppercase;
        color: var(--muted-navy);
        border: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease;
    }



    .accordion-trigger::after {
        font-family: "Lato-Regular";
        font-weight: 200;
        content: "+";
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%) rotate(0deg) scale(1);
        font-size: 1.25rem;
        color: currentColor;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .accordion-trigger[aria-expanded="true"]::after {

        transform: translateY(-50%) rotate(45deg) scale(1.2);
        color: var(--dun)
    }

    #nav-mobile .accordion-content a {
        font-family: "Lato-Regular";
        letter-spacing: unset;
        font-weight: 400;
        text-transform: capitalize;
    }

    #nav-mobile .accordion-content a:last-of-type {
        margin: 0 0 4px;

    }

    .new {
        background-color: var(--amber-hover-cta);
        color: var(--rich-black);
        font-size: 0.8rem;
        padding: 2px 6px;
        border-radius: 4px;
        margin-left: 6px;
        font-family: "Lato-Bold", sans-serif;
        font-weight: 400;
        text-transform: uppercase;
    }

    #nav-mobile p,
    .footer-copyright {
        text-align: center;
    }

    #nav-mobile p {
        font-family: "Oswald-Medium", sans-serif;
        font-size: 1.25rem;
    }

    .footer-copyright {
        padding: 12px 0;
        margin-bottom: 20vh;
        font-family: "Lato-Bold", sans-serif;
        font-weight: 400;
        line-height: 1.8;
    }



    .lazyload {
        opacity: 0;
        transition: opacity 0.5s;
    }

    .lazyload.lazyloaded {
        opacity: 1;
    }

    #hero {

        grid-template-columns: 1fr;
        width: 100%;
        position: unset;
    }

    .hero-text {
        padding: 0 40px 20px;
        gap: 12px;
        grid-template-columns: 1fr;
        align-items: flex-start;
        height: unset;
        min-height: 90vh;
        margin: 0;
    }

    .hero-section {
        height: 100vh;
        background-color: var(--muted-navy);

    }

    .hero-video.recolored-video {
        object-position: 60% 100%;
        opacity: 0.7;
    }

    .hero-text p {
        font-size: 1.175rem;
        margin: 1rem 0;
        line-height: 1.7;
    }

    .main-portfolio-link-p {
        display: flex;
        flex-direction: column;
        padding: 0 0 20px;
        gap: 20px;
    }

    .main-portfolio-link {
        margin: 0;
        padding: 20;

    }

    .main-portfolio-link-p p {


        border: 1px solid var(--amber-dark);
        background: linear-gradient(
            135deg,
            rgba(14, 18, 26, 0.95) 0%,
            rgba(28, 36, 48, 0.95) 100%
          );
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4); 
        gap: .5rem;
        border-radius: 8px;
        font-size: 1rem;
        margin: 0 auto;
        padding: 20px;
        max-width: 90%;
        text-align: left;
        transition: all 0.5s ease;

    }

    .main-portfolio-link-p p:hover{
        transform: translateY(-10px);
    }

    
    @keyframes gradient-flow {
        0% {
          background-position: 0% 50%;
        }
        25% {
            background-position: 100% 50%;
          }
          50% {
            background-position: 100% 50%;
          }
        100% {
          background-position: 0% 50%;
        }
      }
    .main-portfolio-link h2 {
        background: linear-gradient(
            90deg,
            rgba(255, 100, 0, 1),
            rgba(255, 215, 0, 1),
            rgba(255, 100, 0, 1)
          );
          background-size: 200% 200%; /* Makes the gradient appear to move */
          animation: gradient-flow 12s ease infinite; /* Adjust speed as needed */
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
        text-align: center
    
    }

    .main-portfolio-link-p p b {
        font-family: "OpenSans-SemiBold", sans-serif;
        font-weight: 400;
        display: contents;
    }

    .main-portfolio-link-subtext p {
        color: var(--cool-light-blue);
        font-size: 0.9375rem;
        text-align: left;
        line-height: 1.5;
        padding: 12px 0 20px;
    }

    .main-portfolio-link-p img {
        float: left;
        margin-right: 1rem;
        width: 64px;
        padding: 8px;
        height: 64px;



        transition: filter 0.5s ease;
    }

    .main-portfolio-link-p p:hover img {
        filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.6)) drop-shadow(0 0 20px rgba(255, 165, 0, 0.4));
    }

    .hero-text h1 {
        font-family: "Lato-Bold", sans-serif;
    }

    .hero-text h2 {
        font-size: 1.5rem;
        text-align: left;
    }

    #recent-project {
        text-align: center;
        padding: 0 20px 40px;
        /* background: linear-gradient(0deg, #f9f5eb 45%, var(--muted-navy) 45%); */
        background: linear-gradient(0deg, var(--service-card-white) 45%, var(--muted-navy) 45%);
    }

    #portfolio .recent-project-card-row-1 img {
        padding: 0;
        margin: auto;
        width: 32px;
        height: auto;
        grid-row: 1;
        grid-column: 2;
        object-fit: cover;
        align-self: center;
    }

    #portfolio .recent-project-card-row-1 {
        display: grid;
        grid-template-columns: 1fr auto;

        padding: 0 20px;
        margin: 0;
        align-content: center;
        align-items: center;
        justify-items: center;
    }

    .site-card hr:first-of-type {
        grid-column: 1 / span 2;
        margin-bottom: 1rem;
        width: 100%;
    }

    .recent-project-card {
        padding: 12px 8px 20px;
        display: grid;
        grid-template-columns: 1fr auto;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    #recent-project hr {
        grid-row: 2;
        grid-column: 1 / span 2;
        margin-bottom: 1rem;
    }

    #recent-project .recent-project-card .recent-project-icon {
        padding: 0;
        margin: auto;
        width: 40px;
        height: auto;
        grid-row: 1;
        grid-column: 2;
        object-fit: cover;
        align-self: center;
    }

    .project-highlights {
        grid-row: 5;
        grid-column: 1 / -1;
        list-style-type: none;
        padding: 0 32px;
        margin: 0;
        overflow-wrap: anywhere;
    }

    #portfolio .project-highlights {
        padding: 0 20px;
    }

    .project-highlights li {
        padding: 4px 0;
        text-align: left;
        display: grid;
        grid-template-columns: .33fr 1fr;
        gap: 0 8px;
        font-size: 0.9325rem;
    }

    .project-highlights strong {
        font-family: "Lato-Bold", sans-serif;
        font-weight: 400;
        font-size: 1rem;
    }

    .project-highlights a {
        color: inherit;
    }

    .recent-project-cta {
        grid-row: 6;
        grid-column: 1 / -1;
    }

    #recent-project .recent-project-full-img {
        grid-row: 3;
        grid-column: 1 / -1;
        margin-top: .5rem;
        border-width: 4px;
        margin-bottom: .5rem;
    }

    #recent-project h2 {
        font-family: "Lato-Bold", sans-serif;
        color: var(--amber-hover);
        text-align: center;
        margin: 0 0 0.725rem;
        padding: .83em 0 0;
    }

    #recent-project .recent-project-card-row-1{
        display: grid;
        grid-template-columns: 1fr auto;

        padding: 0 12px;
        margin: 0;
        align-content: center;
        align-items: center;

    }

    #recent-project .recent-project-title {
        grid-row: 1;
        grid-column: 1;
        font-family: "Oswald-Medium", sans-serif;
        font-weight: 400;
        letter-spacing: 0.5px;
        padding: 8px 0;
        text-align: left;
    }

    #recent-project .recent-project-description {
        grid-row: 4;
        grid-column: 1 / -1;
        text-align: left;
        margin: 0;
        padding: 8px 20px 20px;
        font-size: 0.9375rem;

    }

    #recent-project-overlay iframe {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 100%;
        border: none;
        background: rgba(0, 0, 0, 0.8);
    }

    #recent-project-overlay {
        width: 100vw;
    }

    .overlay {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--deep-charcoal);
        z-index: 1000;
        transition: top 0.5s ease-in-out;
    }

    .overlay.active {
        top: 0;
        margin: auto;
    }

    /* Overlay content styling */
    .overlay-content {
        position: relative;
        width: 100%;
        height: calc(100% - 50px);
        top: 0;
        margin: 0;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .close-overlay {
        position: absolute;
        top: 15px;
        right: 15px;
        background: transparent;
        color: var(--mist-blue);
        border: 1px solid;
        padding: 5px 10px;
        font-size: 1rem;
        cursor: pointer;
        font-family: 'Lato-Bold', sans-serif;
        text-transform: uppercase;
        transition: border-color 0.2s ease, color 0.2 ease;
    }

    .close-overlay:hover {
        color: var(--amber-hover);
        border-color: var(--amber-hover)
    }



    input,
    select,
    textarea {
        font-size: 1rem;
        /* Prevents mobile zoom */
    }

    input,
    textarea {
        padding: 10px;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        margin-top: 25px;
        position: relative;
        grid-row: 3;
        grid-column: 1;
        margin: 4px auto auto;
        gap: 12px;
    }

    .cta-button,
    .secondary-button {
        width: 260px;
        height: 55px;
        padding: 0;
        margin: 7.5px 0;
        align-content: center;
        font-size: 1rem;
        justify-self: center;
    }

    .secondary-button {
        border-width: 1px !important;
    }

    #hero .cta-button {
        grid-row: 3;
    }

    #hero .secondary-button {
        grid-row: 4;
        grid-column: 1;
    }


    #hero .services-header-card .cta-button {
        grid-row: 8;
        margin: 20px 0
    }

    .services-header {
        padding: 40px 20px 20px;
        margin: -60px 0 -40px;
        background: linear-gradient(0deg, #f9f5eb 35%, var(--golden-sand) 35%);
        clip-path: polygon(0 0, 135% 2%, 100% 98%, 0 98%);
    }

    .services-header-wrapper {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 0 0 20px;
        gap: 40px 0;
    }



    .services-header h2 {
        text-align: center;
        padding-bottom: 0.5rem;
        margin: 2rem 0;
        font-size: 2.25rem;
    }

    .services-header h3 {
        font-size: 1.75rem;
    }

    .services-header-card h3 {
        text-align: center;
    }

    .services-header-card p {
        font-size: 1rem;
        text-align: left;
        padding: 16px 4px;
    }

    .services-header-card {
        padding: 20px;
        margin: 0 auto;
    }

    .services-header-card:last-of-type {
        margin-bottom: 80px;
    }

    .testimonial {
        text-align: center;
    }

    .testimonial p {
        margin: 0;
        padding: 4px 0;
        font-size: 0.9375rem;
        text-align: center;
        font-family: "Lato-Bold", sans-serif;
        font-weight: 400;
    }

    .testimonial blockquote {
        line-height: 1.5;
    }

    .card-header {
        display: grid;
        grid-auto-columns: auto 1fr;
        justify-content: center;
    }

    .card-header .price {
        grid-row: 2;
        grid-column: 1;
    }

    .card-header h3 {
        grid-column: 1;
        grid-row: 1;
    }

    .intro-blip {
        text-align: left;
        background-color: #fff6e5;
        /* A soft background color */
        padding: 20px;
        margin: 60px 0 0;
        border-radius: 4px;
        font-size: 1.1rem;
        font-weight: 400;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .intro-blip-p {
        margin: 1rem 0
    }

    .intro-blip p {
        margin: 1rem 0;
    }

    .intro-blip img {
        width: 100%;
        height: auto;
        border-radius: 4px;
    }

    .pronunciation {
        font-style: italic;
        font-size: 1rem;
        color: #555;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .transition-blip {
        position: relative;
        /* For layering */
        background: linear-gradient(135deg, #2c3e50, var(--muted-navy), #1a2a38, #2c3e50);
        background-size: 300% 300%;
        /* Adjusted for smoother transitions */
        animation: backgroundMotion 5s infinite alternate ease-in-out;
        /* Slightly faster and smoother */
        color: #f9f5eb;
        /* Light text for contrast */
        padding: 60px 20px;
        margin: 40px -20px;
        text-align: center;
        opacity: 0;
        /* For fade-in effect */
        transform: translateY(20px);
        /* Start position for animation */
        transition: all 1.2s ease;
        /* Smooth fade-in */
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        /* Enhanced depth */
    }

    @keyframes backgroundMotion {
        0% {
            background-position: 0% 50%;
        }

        20% {
            background-position: 25% 75%;
        }

        50% {
            background-position: 75% 25%;
        }

        80% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }



    .transition-blip.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .transition-content {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .transition-content h3 {
        font-family: "Oswald-Medium";
        font-weight: 400;
        letter-spacing: 0.5px;
        line-height: 1.8;
        text-transform: uppercase;
        color: var(--mist-blue);
        /* margin-bottom: 0; */
    }

    .transition-content-innovation {
        font-size: 2.75rem;
        color: var(--amber-hover);
        text-decoration: underline;
        text-underline-offset: .5rem;
        text-decoration-thickness: 2px;
        text-decoration-color: var(--amber);
    }

    .transition-content p {
        flex: 1;
        text-align: center;
        margin: 0;
    }

    .scroll-divider {
        width: 80%;
        height: 4px;
        margin: 20px auto;
        background: linear-gradient(90deg, var(--amber-hover), var(--muted-navy), var(--amber-hover));
        background-size: 300% 100%;
        /* Expands for smoother sliding */
        animation: slide 3s infinite ease-in-out;
        /* Adds smoother animation */
        border-radius: 4px;
        /* Slight rounding for a modern look */
    }

    .pricing{
        /* background: 
        linear-gradient(            to bottom,             rgba(249, 245, 235, 1) 20%,             var(--service-card-white)80%        );
     */
        background-color: var(--service-card-white);
        padding: 0 20px;

    }

    .pricing-content, .pricing-cta{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    @keyframes gradientFlow {
        0% { background-position: 0% 50%; }
        100% { background-position: 100% 50%; }
    }
    
    .pricing-content h2 {

        color: var(--muted-navy);

    }
    
    

    .pricing-cta{
        margin: 0 -20px;
        padding: 40px 40px 80px;
        background-color: var(--service-card-white);
        border-radius: 4px;
        border: 0;
    }

    .pricing-cta h3{
        font-family: "Oswald-Medium", sans-serif;
        font-weight: 400;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: clamp(2rem, 2rem + .25vw, 2.5rem);
        margin: 40px -20px 20px;
        color: #1C2D40;
        background-size: 200% 200%;
        animation: gradient-flow 12s ease infinite;

    }

    .pricing-content .subtle-link{
        color: #795015;
        margin-top: 0;
        margin-bottom: 0;
        font-size: 0.9375rem;
    }

    .pricing-cta hr{
        background-color: var(--steel-gray);
        margin-bottom: 12px;
        width: 100%;
        height: 1px;
        border: none
    }

    .pricing-cta b{
        font-family: "OpenSans-SemiBold", sans-serif;
        font-weight: 400;
    }

    .pricing-content .subtle-link:hover{
        color: var(--steel-gray)
    }

    .pricing-cta .pricing-link{
        margin-bottom: 12px;
    }



    .pricing-cta p{
        text-align: left;
        line-height: 1.7;
        margin-top: 12px;
        margin-bottom: 20px;
    }
    .pricing-cta p:first-of-type{
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .pricing-cta .disclosure {
        font-size: 0.825rem;
        color: var(--steel-gray);
        margin-top: 0;
    }

    .pricing-table table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0 0;
        font-size: .9375rem;
        text-align: left;
      }
      
      .pricing-table th, .pricing-table td {
        border: 1px solid #ddd;
        padding: 12px;
      }
      
      .pricing-table th {
        background-color: var(--muted-navy);
        color: var(--service-card-white);
        font-size: 1.0625rem;
        font-family: "Lato-Bold", sans-serif;

      }

      .pricing-table ul{
        margin-left: 0;
        padding-left: 20px;
      }

      .pricing-table tr:nth-child(odd) {
        background: #f1f6fa;
      }
      
      .pricing-table tr:nth-child(even) {
        background-color: #f9f9f9;
      }
      .popular-row:hover td {
        background-color: #fff4c4;
    }
      .pricing-table td {
        vertical-align: top;
 
      }
      
      .pricing-table td strong {
        font-size: 1rem;
        font-family: "Lato-Bold", sans-serif;
        color: var(--muted-navy);
        font-weight: 400;
      }
      
      .pricing-table td:last-child {
        font-family: "OpenSans-SemiBold", sans-serif;
        font-weight: 400;
        font-size: 1rem;

      }

      .popular-badge {
        display: inline-block;
        fill: var(--amber-dark);
        font-size: 0.825rem;
        width: 1.125rem;
        border-radius: 5px;
        margin-left: 10px;
      }

      .pricing-table tbody tr.lite-row ul {
        margin-top: 0;
      }
      
      .pricing-table tbody tr.popular-row {
        background-color: #fdf7e2;
      }
      .pricing-table {
        margin: 14px 0 0;
        max-width: 800px;
      }
      .pricing-cta .pricing-table {
        margin: 14px -20px 34px;
        max-width: 800px;
      }

      .pricing .cta-button{
        width: unset;
        padding: 16px 28px;
      }

    #commitment{
        background: linear-gradient(180deg, #1e2a38, #345472, var(--deepened-navy));
        animation: none;
        background-size: unset;
    }

    #portfolio{
        background: linear-gradient(180deg, #1e2a38, #345472 30%, #1e2a38, var(--deepened-navy) 45%);
        animation: none;
        background-size: unset;
    }


    .commitment-card {
        position: relative;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.00125);
        backdrop-filter: saturate(150%);
        -webkit-backdrop-filter: saturate(150%);
        border-radius: 4px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        color: #cfd8e3;
        margin: 20px 0;
        transition: all 0.3s ease;
        text-align: center;
        transform: translateX(-20px);
    }

    #commitment .commitment-right-col h2 {
        padding: 2.5rem 0 1.25rem;
        color: var(--service-card-white);
    }

    .commitment-p {
        display: flex;
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        color: var(--amber-hover);
        font-size: 2.75rem;
        letter-spacing: 0.5px;
        font-family: "Oswald-Medium", sans-serif;
        font-weight: 400;
        text-transform: uppercase;
        text-decoration: underline;
        text-decoration-color: var(--amber);
        text-underline-offset: .5rem;
        text-decoration-thickness: 2px;
    }

    /* .commitment-card:hover {
        background-color: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        transform: scale(1.02);
    } */

    .price-range {
        font-size: 1.4rem;
    }

    .portfolio-header-wrapper {
        border-top: 2px solid rgba(252, 193, 7, 0.6);
    }

    .commitment-wrapper,
    .contact-wrapper,
    .portfolio-wrapper {
        grid-template-columns: 1fr;
    }

    .portfolio-left-col,
    .portfolio-right-col {
        grid-column: unset;
    }

    .portfolio-right-col-header {
        padding: 20px;
    }

    .portfolio-left-col {
        grid-row: 2;
        gap: 40px 0;
        margin-bottom: -7.5px;
    }

    .portfolio-right-col {
        grid-row: 1;
        position: relative;
        top: unset;
    }

    .content-additional {
        transition: opacity 0.3s ease;
        margin: 0;
        padding: 0;
        overflow-y: auto;
    }


    .recent-project-p {
        font-size: 1.025rem;
        margin: 0 0 2.5rem;
        line-height: 1.6;
        text-align: left;
        padding: 20px 20px 0;
        color: var(--mist-blue);
    }

    .left-portfolio {
        display: flex;
        align-items: center;
        gap: 0 12px;
        margin: 0;
        padding: 0;
    }


    .site-card-header a,
    .site-card-header img {
        height: 40px;
        width: 40px;
        object-fit: cover;
    }

    .workflow-section {
        width: 100%;
        margin: auto;
        padding: 0;
    }

    .workflow-timeline {
        flex-direction: column;
        gap: 28px;
        width: 100%;
        margin: auto;
        padding: 60px 0 0;
    }

    .timeline {
        top: 65px;
        margin: -60px -20px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: sticky;
        /* background-color: #f5deb3; */
        background: linear-gradient(to top, var(--amber-lighter), #fef5e7);
        /* background: linear-gradient(to bottom, var(--amber-lighter), transparent); */
        padding: .5rem 4rem;
        z-index: 5;
        border-bottom: 2px solid var(--muted-navy);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .dot {
        width: 16px;
        height: 16px;
        background-color: var(--muted-navy);
        border: 2px solid var(--muted-navy);
        border-radius: 50%;
        position: relative;
        transition: background-color 0.3s;
    }

    .line {
        width: 20%;
        height: 2px;
        background-color: var(--muted-navy);
    }



    .workflow-step {
        flex-direction: column;
        align-items: center;
        display: flex;
        text-align: center;
        padding: 0 20px 20px;
        max-width: 325px;
        margin: auto;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    #workflow .workflow-step h3 {
        font-size: 1.375rem;
        margin: 0;
    }

    .workflow-section h2 {
        font-family: "Oswald-Medium", sans-serif !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 400;
        color: var(--mist-blue);
        padding-top: 0 !important;
        margin: 0;
        font-size: 1.85rem;
    }

    .workflow-header {
        background: linear-gradient(to bottom, var(--deepened-navy), #001f33);
        display: flex;
        flex-direction: column;
        padding: 40px 20px 60px;
        /* border-bottom: 10px solid transparent;
        border-image-source: radial-gradient(circle, #ffffff, #f2f2f2, #d3d3d3, #c0c0c0, #a9a9a9);

        border-image-slice: 1; */
        margin: -22px -20px 0;
    }

    .workflow-step p {
        font-size: 0.9375rem;
        text-align: left;
        line-height: 1.7;
    }

    #workflow .commitment-p {
        font-size: 2rem;
        margin: 1.25rem 0 1rem;
    }


    .workflow-cta-p {
        color: var(--service-card-white);
        font-size: 1rem;
        margin: 0;
        text-align: left;
        padding: 10px 20px 0;
    }

    .workflow-step svg {
        max-height: unset;
        height: 2.5rem;
        width: auto;
        margin: 1.5rem auto .75rem;
    }

    .workflow-step.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .workflow-step.touched,
    .workflow-step:hover {
        transform: translateY(-10px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .p-title svg {
        margin: 0 6px 0;
        padding: 0;
        height: 28px;
        vertical-align: text-top;
    }

    .contact-grid svg {
        margin: 0;
        padding: 0;
        height: 18px;
        width: 18px;
        vertical-align: text-top;
        justify-self: stretch;
    }

    .service-icon {
        padding: 24px 0 0;
    }


    .service-icon svg {
        height: 36px;
        padding: 0;
        margin-bottom: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 0;
        gap: 40px;
        margin: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .features-desktop-box .features-box {
        grid-template-columns: auto;
    }

    .service-icon-title-price {
        touch-action: manipulation;
    }

    .service-icon-title-price:active,
    .service-icon-title-price:focus-within,
    .service-icon-title-price:hover {
        background: #ffe8a1;
    }

    .service-button {
        padding: 18px 36px;
        grid-column: unset;
        grid-row: 7;
        width: unset;
        margin: 14px auto 32px;
    }

    .start-your-project {
        margin: 40px auto;
    }

    .service-icon-title-price {
        padding: unset;
        display: grid;
        grid-column: 1;
        grid-row: 1;
        height: unset;
        width: 100%;
    }

    .tooltip-container.price-tooltip {
        grid-column: 4;
    }

    .tooltip-container.price-tooltip .tooltip-text {
        transform: translateX(-44%);
    }

    .tooltip-container.price-tooltip.advanced-site .tooltip-text {
        transform: translateX(-44%);
        bottom: 62px !important;
    }

    .tooltip-container.advanced-site .tooltip-text {
        bottom: 90px !important;
    }

    .tooltip-text b {
        font-size: 0.95rem;
        font-family: "Lato-Bold", sans-serif;
        font-weight: 400;
        letter-spacing: 0.001rem;
        word-spacing: 0cap;
    }

    .standard-service-title {
        grid-row: 1;
        grid-column: 1;
        word-wrap: break-word;
        font-size: 0.85rem;
        min-height: 0.85rem;
    }

    .standard-service-title:not(.tooltip-container .standard-service-title) {
        /* Your styles here */
        grid-column: 2;
    }

    .features-desktop-box h4 {
        font-size: 1.1rem;
        font-weight: 400;
        font-family: "Lato-Bold", sans-serif;
    }

    .tooltip-text ul li:last-child {
        padding: 0 0 6px !important;
    }

    .tooltip-text ul li {
        grid-template-columns: auto;
    }

    .service-card-column-1,
    .service-card-column-3,
    .service-card-column-5 {
        grid-column: 1;
        width: 100%;
        border-radius: 4px;
        background: unset;
        outline: unset;
        padding: 0;
    }

    .service-card-column-1 {
        grid-row: 2;
    }

    .service-card-column-3 {
        grid-row: 3;
    }

    .service-card-column-5 {
        grid-row: 4;
    }

    .tooltip-container {
        grid-auto-columns: 1fr auto;
        position: relative;
        display: grid;
        grid-row: 1;
        grid-column: 2;
        gap: 8px;
        max-width: 100%;
        align-content: center;
        min-height: 23px;
        justify-content: start;
    }

    .card-header .tooltip-container {
        grid-column: 2;
        grid-row: 1;
        height: 1rem;
        width: 1rem;
        justify-self: center;
    }

    .tooltip-text .tooltip-padding {
        padding: 6px 0 0 !important;
    }

    #back-to-top {
        position: fixed;
        bottom: 40px;
        right: 40px;
        z-index: 20;
        background-color: var(--muted-navy);
        /* Matches footer */
        color: var(--service-card-white);
        border: 1px solid var(--amber-hover);
        border-radius: 5px;
        padding: 8px;
        font-size: .875rem;
        font-family: "Lato-Bold", sans-serif;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        transition: opacity 0.5s ease;
        opacity: 0;
        /* Hidden by default */

    }

    #back-to-top.show {
        opacity: 1;

    }

    .card-body ul {
        width: 100%;
    }

    .card-footer button {
        margin: auto;
        width: 280px;
        height: 55px;
    }

    .padding-20px {
        grid-column: 1;
        grid-row: 4;
    }

    .tooltip-text hr {
        margin: 6px 0 !important;
        width: 100% !important;
    }

    .tooltip-container .tooltip-text {
        display: none;
        position: fixed;
        top: unset !important;
        left: 50%;
        bottom: calc(100% + -8px);
        height: unset;
        z-index: 10;
        font-size: 0.85rem;
        width: 100%;
        max-width: 90%;
        min-width: unset;
        opacity: unset;
        visibility: unset;
        line-height: 1.4;
        letter-spacing: 0.02rem;
    }

    .tooltip-container:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
    }

    .tooltip-container:hover~.tooltip-container {
        z-index: -1;
    }

    .info-icon {
        grid-column: 1;
        grid-row: 1;
        align-self: center;
        display: flex;
        margin: 0;
    }

    .info-icon,
    .info-icon img {
        height: 1.25rem;
        width: 1.25rem;
    }

    .service-card:hover {
        transform: translateY(0);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .card-body ul li:hover {
        background-color: unset;
    }

    .info-icon.hide-desktop {
        grid-column: 2;
    }

    .service-card .tooltip-container {
        margin-left: 0;
    }

    .tooltip-container.active .tooltip-text {
        display: block;
    }

    .price-description {
        font-size: 1.063rem;
    }

    .site-card {
        padding: 12px 0 0;
        background: linear-gradient(to bottom, var(--service-card-white), #fcfcfc);
        border-radius: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        width: 100%;
        color: var(--muted-navy);
        font-size: 0.9375rem;


    }

    .wide-logo,
    .wide-logo a,
    .wide-logo img {
        width: 44px !important;
        height: 22px !important;
    }

    .site-card-header {
        display: grid;
        grid-template-columns: auto 1fr;
        align-content: center;
        align-items: center;
        padding: 0 20px;

    }

    .site-card-background {
        padding: 0 20px 40px;
    }

    .site-card-header a {
        grid-column: 1;
        grid-row: 1;
    }

    .site-card-img-div {
        
        padding: 0 8px 0;
        margin-bottom: .5rem;
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        position: relative;
        
    }

    .site-card-img-div img {


        object-fit: cover;
        object-position: top;
        border: 4px solid transparent;
        border-image-source: radial-gradient(circle, #ffffff, #f2f2f2, #d3d3d3, #c0c0c0, #a9a9a9);
        border-image-slice: 1;
        /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); */

    }

    .subtle-link {

        font-size: 0.9375rem;

    }


    .expand-btn {
        border-width: 1px;
    }

    .category,
    .site-focus {
        text-transform: unset;
        letter-spacing: unset;
    }

    .category-value {
        grid-column: 1;
        grid-row: 2;
        justify-self: unset;
    }

    .site-focus {
        grid-row: 1;
        grid-column: 2;
    }

    .focus-value {
        grid-column: 2;
        grid-row: 2;
        justify-self: unset;
        letter-spacing: unset;
    }

    #portfolio .cta-button {
        width: unset;
        padding: 0 24px;
    }

    .main-portfolio-link {
        min-height: unset;
        padding: 20px 20px 40px;
        margin: 0;
        gap: 6px;
    }

    .main-portfolio-link a {
        margin: 14px 0;
        letter-spacing: .5px;
    }


    .profile-image-wrapper img {
        display: flex;
        height: 95px;
        width: 95px;
        padding: 2px;
    }

    .profile-image-wrapper img:hover {
        transform: scale(1.2);
        padding: 3px;
    }

    .contact-mobile-wrapper-1 {
        position: relative;
        grid-column: 1;
        grid-row: 2;
    }

    .contact-mobile-wrapper-2 {
        position: relative;
        grid-column: 1;
        grid-row: 3;
    }

    .contact-mobile-wrapper-3 {
        position: relative;
        grid-column: 1;
        grid-row: 4;
    }

    .contact-mobile-wrapper-1,
    .contact-mobile-wrapper-2,
    .contact-mobile-wrapper-3 {
        display: flex;
        flex-direction: row;
    }

    #workflow {
        padding: 20px 20px 60px;
    }

    #portfolio {
        padding: 20px 20px 0;
    }



    #contact {
        padding: 20px 20px;
    }


    #contact hr {
        margin: 2rem auto 2rem;
        background-color: var(--amber-lighter);
        border-radius: 2px;
        height: 1px;
        border: none;
    }


    .contact-wrapper {
        padding: 0;
        width: 100%;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .contact-header-text {
        grid-row: 2;
    }

    .contact-header-text p {
        padding: 12px 0;
        color: var(--mist-blue)
    }

    .contact-header-text p:first-of-type {
        padding-top: 20px;
    }

    .portfolio-left-col h3 {
        grid-row: 1;
        grid-column: 1;
        font-size: 1.7rem;
        margin: 0;
        text-decoration: none;
        padding: 8px 0;
        justify-self: left;
        text-align: left;
        font-family: "Oswald-Medium", sans-serif;
        font-weight: 400;
        letter-spacing: 0.5px;
    }

    #phone-input-container {
        margin-top: 10px;
    }

    .contact-grid-ian-titles-2 {
        font-size: 0.875rem;
        padding: 4px 0 12px;
        text-align: center;

    }

    .commitment-wrapper,
    .portfolio-wrapper {
        gap: 20px 0;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .commitment-wrapper {
        gap: 0;
    }

    .commitment-wrapper hr {
        grid-row: 2;
        margin: 2rem auto 2rem;
        background-color: var(--amber-lighter);
        border-radius: 2px;
        height: 1px;
        border: none;
    }

    #commitment {
        padding: 20px 20px 60px;
    }

    #commitment h2,
    #portfolio h2,
    .commitment-wrapper h3 {
        text-align: center;
    }

    .commitment-wrapper h3 {
        margin-top: .5rem;
        padding: 0 10px;
        font-family: "Lato-Bold", sans-serif;
        font-weight: 400;
    }

    #commitment h2,
    #portfolio h2 {
        margin: 0 0 20px;
    }

    .commitment-left-col {
        position: relative;
        top: unset;
        grid-row: 1;
        padding: 0;
    }

    .commitment-left-col p,
    .contact-header-text p,
    .portfolio-right-col-header p,
    .services-paragraph {
        font-size: 1.025rem;
    }

    .commitment-left-col p,
    .commitment-wrapper p,
    .contact-header-text p,
    .portfolio-right-col-header p {
        text-align: left !important;
    }

    .commitment-right-col p {
        padding: 0 .25rem .5rem;
        font-size: 0.9375rem;
        color: var(--service-card-white);
    }

    .commitment-left-col p:nth-child(2) {
        padding-top: 0;
    }


    .services-paragraph {
        margin: 0 0 1rem;
        text-align: left;
    }

    .commitment-right-col {
        grid-row: 2;
        padding: 0;
    }


    .commitment-left-col,
    .commitment-right-col,
    .contact-below-grid,
    .contact-grid,
    .contact-header,
    .contact-header-text,
    .contact-submit,
    .form-title,
    .profile-image-wrapper {
        grid-column: unset;
    }

    .services-header-section {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0 8px;
        width: 90%;
    }

    .col-1,
    .col-2,
    .col-3 {
        grid-column: unset;
    }

    .cta-button.services {
        width: 100%;
        padding: 6px;
    }

    .contact-grid {
        grid-row: 5;
        grid-template-columns: auto;
        max-height: unset;
        width: 100%;
        height: 100%;
        gap: 4px 0;
        margin: auto;
    }

    .form-title {
        grid-row: 4;
        font-size: 2rem;
    }

    .contact-submit {
        grid-row: 6;
        width: 100%;
    }

    .contact-below-grid {
        grid-row: 8;
        font-size: 0.8rem;
        padding: 20px;
        text-align: center;
        color: var(--cool-light-blue)
    }

    #portfolio .why-choose-us h2 {
        color: var(--mist-blue);
        font-size: 1.825rem;
        padding: .5rem 0 0;
        margin-bottom: 0;
        font-family: "Oswald-Medium";
        letter-spacing: 0.5px;
        text-transform: uppercase;
        text-align: center;
    }

    @keyframes gradientShift {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .why-choose-us-header {
        background: linear-gradient(to bottom,
                var(--deepened-navy) 0%,
                var(--rich-black) 100%);
        margin: -22px -8px 0;
        padding: 20px 0 60px;

        text-align: center;
        background-size: 300% 300%;
        border-bottom: 10px solid transparent;
        border-image-source: radial-gradient(circle, #fff9e6, #ffe8bf, #ffd79a, #ffc875, #ffba50);

        border-image-slice: 1;
    }

    .why-choose-us-header .commitment-p {
        margin: 1.25rem 0 1rem;
        font-size: 2.5rem;
    }

    .doers-difference-subhead {
        color: var(--service-card-white);
        padding: 12px 20px 34px;
        line-height: 1.7;

    }

    .card-banner {
        width: calc(100% - 16px);
        height: 100%;
        margin: 0 auto;
        display: block;
        border: 2px solid var(--rich-black);
        object-fit: cover;

        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .card-banner img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: fill;
    }


    .why-choose-us .icon {
        height: 2.5rem;
        width: auto;
        margin: 1.5rem auto .75rem;

    }

    .why-choose-us ul {
        padding: 0 20px;
        margin: 2rem auto;
    }

    .why-choose-us li {
        display: flex;
        background: linear-gradient(to bottom,
                var(--card-yellow) 0%,
                #fdf5d5 100%
                /* Light neutral shade blending with card-yellow */
            );
        flex-direction: column;
        text-align: left;
        font-size: 0.9375rem;
        padding: 0 20px 2rem;
        border-radius: 8px;
        line-height: 1.7;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin: 2rem auto;
        max-width: 325px;
        border: 1px solid var(--golden-sand);
        transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

    .why-choose-us li:hover {
        transform: translateY(-10px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .why-choose-us b {
        text-align: center;
        display: block;
        font-family: "Oswald-Medium";
        letter-spacing: 0.5px;
        text-transform: uppercase;
        width: 100%;
        padding: 0 0 1rem;
        font-size: 1.375rem;
        text-decoration: underline;
        text-underline-offset: 4px;
        justify-content: center;
    }

    .why-choose-us li::marker {
        display: none;
    }

    .why-choose-us {
        color: var(--muted-navy);
        padding: 20px 8px 40px;
        margin: 2rem -20px 0;
        /* background: linear-gradient(to bottom, #ffffff, #f0f4f8); */
        background-color: var(--amber-hover-cta);
        background: linear-gradient(to bottom, #f8e8b0, var(--amber-hover-cta));
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* border-bottom: 2px solid var(--rich-black); */
        grid-row: 3;
        grid-column: 1;
    }

    .profile-image-wrapper {
        grid-column: 1;
        grid-row: 1;
        justify-content: right;
        display: flex;
        justify-self: center;
        padding: 0 0 1rem;

    }

    .contact-name-mobile {
        grid-row: 1;
        grid-column: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-name-mobile {
        font-size: 0.85rem;
        font-family: "Lato-Regular";
    }



    .contact-grid h3 {
        margin: 0 0 0.125rem;
        font-weight: 400;
        font-family: "Lato-Bold", sans-serif;
        font-size: 1.625rem;
        padding: 0;
        text-align: center;
    }

    .contact-content,
    .contact-title {
        font-size: 0.85rem;
        padding: 0 12px;
    }

    .cell-phone {
        grid-row: 3;
        grid-column: 1;
    }

    .call-or-text {
        grid-row: 2;
        grid-column: 2;
    }

    .phone-number {
        grid-row: 2;
        grid-column: 2;
    }

    .envelope {
        grid-row: 4;
        grid-column: 1;
    }

    .email-title {
        grid-row: 4;
        grid-column: 2;
    }

    .email-address {
        grid-row: 3;
        grid-column: 2;
    }

    .pindrop {
        grid-row: 5;
        grid-column: 1;
    }

    .location-title {
        grid-row: 5;
        grid-column: 2;
    }

    .location-syracuse {
        grid-row: 4;
        grid-column: 2;
    }

    form {
        display: flex;
        flex-direction: column;
        width: 100% !important;
        padding: 40px 20px 40px;
        background: linear-gradient(to bottom,
                rgba(207, 216, 227, 0.9),
                rgba(207, 216, 227, 0.9));
        margin: 40px auto;
        gap: 8px;
    }

    #phoneNumber,
    form input,
    form textarea {
        font-size: 1rem;
    }

    form button {
        margin: 20px 0 0;
        grid-column: unset;
        grid-row: unset;
        width: 100%;
    }

    #form-message {
        grid-row: 7;
        margin: 40px 0 0;
    }

    #services {
        position: relative;
        z-index: 1;
        padding: 20px 20px 40px;
        gap: 40px;
    }

    #commitment h2,
    #contact h2,
    #portfolio h2,
    #services h2,
    .workflow-section h2 {
        font-family: "Lato-Bold", sans-serif;
        padding-top: 0.83em;
        margin-top: 0;
        text-align: center;
        padding-bottom: 1rem;
    }

    /* #commitment h2{ 
        color: var(--service-card-white)
    } */

    #portfolio h2,
    #services h2,
    .workflow-section h2,
    #recent-project h2 {
        padding-bottom: 0;
    }

    #contact h2 {
        font-size: 2.5rem;
        color: var(--amber-hover);
    }

    #contact #contact-form-title {
        font-size: 2.625rem;
        padding: 0 0 1.25rem;
    }

    .features-desktop-box {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: unset;
        min-width: unset;
        grid-template-rows: auto;
        margin: 0;
    }

    .features-desktop-box ul {
        grid-template-columns: repeat(auto-fit, minmax(200px, 250px));
    }

    .features-desktop-box .features-box {
        grid-column: 1;
        width: 100%;
        margin: 0 auto;
        padding: 0 8px;
    }

    .features-desktop-box .service-icon-title-price {
        grid-column: 1;
        width: 100%;
        padding: 20px;
        height: unset;
        justify-self: center;
        align-self: flex-start;
        grid-template-rows: 70px 1fr auto;
    }

    .features-desktop-box-col-2 {
        grid-column: 1;
        grid-row: 3;
    }

    .service-icon-title-price h3 {
        padding: 0 !important;
        font-family: "Lato-Bold", sans-serif !important;
        font-weight: 400 !important;
    }

    .category-group,
    .email-address-group,
    .first-name-group,
    .last-name-group,
    .message-group,
    .phone-number-group,
    .preferred-method-group,
    .sub-category-group {
        grid-column: unset;
        grid-row: unset;
    }

    footer {
        padding: 20px;
    }

    .footer-logo,
    .footer-logo img {
        width: 90px;
        height: 45px;
    }

    footer .divider {
        display: none;
    }

    .copyright-name-div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .copyright-name {
        padding: 4px 0;
    }

    .copyright {
        padding: 0;
    }
}

@media screen and (min-width: 2060px) {
    /* header {
        height: 120px;
        padding: 0 10%;
    } */

    header img,
    header .logo {
        width: auto;
        height: 75px;
    }


    header h2 {
        font-size: 3.2rem;
    }

    header h3 {
        font-size: 0.95rem;
    }

    nav {
        font-size: 0.95rem;
        letter-spacing: 0.25px;
    }

    .services-header-wrapper {
        gap: 0 2%;
    }

    .commitment-left-col p,
    .commitment-right-col p,
    .contact-header-text p,
    .portfolio-right-col p {
        line-height: 1.7;
    }

    .services-header-card p {
        line-height: 1.6;
        font-size: 1rem;
    }



    .commitment-right-col p {
        padding: 12px 0 16px;
    }

    .features-desktop-box ul li {
        font-size: 0.925rem;
    }

    .tooltip-text {
        font-size: 0.8125rem;
    }

    .contact-wrapper {
        width: 80%;
    }
}

/* @media screen and (min-width: 769px) and (max-width: 1490px) {


    #mobileHamburger.hide-desktop {
        display: unset;
    }

    .mobile-overlay.hide-desktop {
        display: initial !important;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    header {
        display: flex;
        height: unset;
        max-height: unset;
        min-height: auto;
        justify-content: space-evenly;
        padding: 20px;
    }

    header .logo img,
    header .logo a {
        width: 100px;
        height: 50px;

    }

    .nav {
        padding: 0;
        gap: 8px;
    }

    .nav1 {
        width: unset;
        margin-left: 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav2 {
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-header-section {
        width: 100%;
        margin: 0 auto;
        gap: 20px;
    }

    .dropdown a {
        padding: 6px 12px;
    }

    .col-1,
    .col-2,
    .col-3 {
        width: 180px;
    }

    h2 {
        font-size: 3.25rem;
    }

    .hero-text h2 {
        font-size: 3.75rem;
    }

    .hero-text p,
    .services-paragraph,
    .main-portfolio-link p,
    .workflow-cta-p,
    .contact-header-text p {
        font-size: 1.125rem
    }

    .services-header-card p {
        font-size: 1.0125rem;
    }

    .mobile-overlay {
        display: flex;
        height: 100vh;
        margin: 0;
        width: 0;
        padding: 20px 0 0 0;
        position: fixed;
        z-index: 102;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.9);
        overflow-x: hidden;
        transition: 0.5s ease-in-out;
        will-change: width, height;
    }

    .lazyload {
        opacity: 0;
        transition: opacity 0.5s;
    }

    .lazyload.lazyloaded {
        opacity: 1;
    }

    .mobile-overlay.active {
        width: 100%;
    }

    .mobile-overlay p {
        display: flex;
        color: var(--amber-hover);
        overflow: hidden;
        font-family: "Lato-Bold", sans-serif;
        font-weight: 400;
        padding: 0;
        margin: 0 auto;
    }

    .mobile-overlay .closebtn {
        position: absolute;
        top: 1px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 3rem;
        color: var(--service-card-white);
        font-weight: 100;
        font-family: "OpenSans-Light";
        text-decoration: none;
    }

    .mobile-overlay .closebtn:focus,
    .mobile-overlay .closebtn:hover {
        color: var(--amber);
    }

    .mobile-overlay-content {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0 auto;
        width: 100%;
        text-align: center;
        margin-top: 80px;
        overflow-y: visible;
        z-index: 90;
    }

    .overlay-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
        width: 90%;
        font-family: "Lato-Bold", sans-serif;
        letter-spacing: .5px;
        font-weight: 400;
        color: var(--service-card-white);
        text-align: center;
        padding: 12px;
        margin: 4px auto;
        cursor: pointer;
    }

    .overlay-link.selected,
    .overlay-link:hover {
        color: var(--amber);
    }


    .services-header {
        clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 93%);
    }

    .services-header-wrapper {
        grid-template-columns: 1fr;
    }

    .services-header-card {
        max-width: 480px;
        margin: 20px auto;
    }

    .padding-20px {
        grid-column: 1;
        grid-row: 4;
    }

    .features-desktop-box {
        grid-template-columns: 1fr;
        width: 50%;
        max-width: 570px;
        min-width: 443px;
    }

    #addons-content-3 .service-card,
    #premium-content-3 .service-card,
    #standard-content-3 .service-card {
        grid-template-rows: 140px 1fr auto;
    }

    .features-desktop-box ul {
        grid-template-columns: repeat(auto-fit, minmax(200px, 250px));
    }

    .features-desktop-box .features-box {
        grid-column: 1;
        width: 90%;
        margin: 0 auto;
    }

    .features-desktop-box-col-2 {
        grid-row: 3;
        grid-column: 1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-submit {
        grid-column: 1;
        grid-row: 6;
    }

    .form-title {
        grid-column: 1;
        grid-row: 4;
    }

    .contact-grid {
        grid-row: 5;
        align-self: center;
        max-width: 870px;
        margin: 2rem auto;
    }

    #form-message {
        grid-row: 7;
        grid-column: 1;
    }

    .why-choose-us {
        grid-row: 3;
        grid-column: 1;
    }


    #portfolio .why-choose-us h2 {
        padding: 40px 20px 20px;
        text-align: center;
    }

    .contact-header {
        text-align: center;
    }

    .contact-below-grid {
        grid-row: 8;
    }

    .portfolio-wrapper {
        grid-template-columns: 1fr;
    }

    .portfolio-left-col,
    .portfolio-right-col {
        grid-column: unset;
    }

    .portfolio-right-col-header {
        padding: 0 20px 40px;

    }

    .portfolio-left-col {
        grid-row: 2;
        gap: 0;
    }

    .portfolio-right-col {
        grid-row: 1;
        position: relative;
        top: unset;
    }

    #portfolio h2 {
        text-align: center;
    }
} */

@media screen and (max-width: 393px) {

    /* Styling for iPhone 12/13/14 */
    h1 {
        font-size: 2.75rem;
    }

    .hero-text p,
    .main-portfolio-link p {
        font-size: 1.075rem;
    }

    .hero-text {
        min-height: 95vh;
        gap: 4px;
    }

    .cta-buttons {
        gap: 4px;
    }

    .cta-button,
    .secondary-button {
        width: 245px;
        height: 45px;
    }

    .services-header {
        margin: -55px 0 0;
    }
    #portfolio .why-choose-us h2 {

        font-size: 1.725rem;
    }
    .why-choose-us-header .commitment-p {
        margin: 1.25rem 0 1rem;
        font-size: 2.25rem;
}
}

@media screen and (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .nav{
        flex-wrap: wrap;
        justify-content: center;
        /* gap: 4px; */
        padding: 4px;

    }
    header .logo img, header .logo a, header .logo{
        width: 100px !important;
        height: 50px !important;
    }
    .services-header-wrapper{
        overflow-x: scroll;
        width: 90%;
    }
    .services-header-card{
        max-width: 600px;
        width: 600px;
    }
    .transition-content h3{
        width: 100%;
    }
    .transition-blip{
        padding: 100px 2%;
    }
    .recent-project-card {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
    .recent-project-card-row-1 {
        grid-row: 1;
        grid-column: 1;
    }
    #recent-project .recent-project-full-img {
        grid-row: 2;
        grid-column: 1;
    }
    #recent-project .recent-project-description {
        grid-row: 3;
        grid-column: 1;
        padding-top: 40px;
    }
    .project-highlights {
        grid-row: 4;
        grid-column: 1;
    }
    #recent-project .recent-project-cta {
        grid-row: 5;
        grid-column: 1;
    }

    .commitment-wrapper{
        max-width: 100%;
    }
    .commitment-right-col {
        padding: 0;
    }
    .workflow-section {
        width: 100%;
        padding: 0 2% 5%;
    }
    .site-card {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
    .site-card-img-div {
        grid-row: 2;
        grid-column: 1;
    }
    .site-card-background {
        grid-column: 1;
        grid-row: 3;
        padding-top: 40px;
    }
    .why-choose-us-header {
        grid-template-columns: 1fr;
        width: 90%;
    }
    .card-banner {
        grid-column: 1;
        grid-row: 4;
    }
    .why-choose-us ul {
        padding: 0 10%;
        margin: 2rem auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-template-rows: auto;
        gap: 2rem;

    }
    .main-portfolio-link-p {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-template-rows: auto;
        max-width: unset;
        width: 85%
    }
    .main-portfolio-link-subtext p {
        padding: 12px 20px 20px;
        width: 80%;
    }
    #contact h2{
        text-align: center;
    }
    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr;
    }
    .contact-wrapper hr{
        grid-row: 3;
        grid-column: 1;
        margin: 40px auto 0;
    }
    .contact-grid{
        grid-row: 5;
        grid-column: 1;
        width: 75%;
        margin: 1rem auto;
    }

    #contact .form-title {
        grid-row: 4;
        grid-column: 1;
        text-align: center;
        margin: 2rem 0 .5rem;
    }
    .contact-submit {
        grid-row: 6;
        grid-column: 1;
}
    #form-message {
        grid-row: 7;
        grid-column: 1;
    }

.contact-below-grid {
    text-align: center;
    grid-row: 8;
    grid-column: 1;
}
}
