:root {
  --color-primary-bg: #444444;
  --color-text-light: #ffffff;
  --color-text-light-alt: #d2d2d2;
  --color-text-dark: #163e3e;
  --color-accent-light-green: #e1e9c9;
  --color-accent-green-wash: #dde7c5;
  --color-accent-teal-dark: #163e3e;
  --color-accent-teal-grad-start: #417c7c;
  --color-accent-teal-grad-end: #4fb7b3;
  --font-lato: 'Lato', sans-serif;
  --font-libre: 'Libre Baskerville', serif;
  --font-poppins: 'Poppins', sans-serif;
  --font-lateef: 'Lateef', serif;
}

body {
  margin: 0;
  font-family: var(--font-lato);
  background-color: var(--color-primary-bg);
  color: var(--color-text-light);
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.page-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

.container {
  width: 100%;
  padding: 0 80px;
  margin: 0 auto;
  overflow: hidden;
}

section {
  position: relative;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}


.site-header {
    position: absolute;
    top: 34px;
    left: 0;
    width: 100%;
    z-index: 100;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-header .logo img {
    width: 250px;
    height: auto;
}
.site-nav {
    display: flex;
    gap: 30px;
}
.site-nav a {
    color: var(--color-text-light);
    font-weight: 700;
    font-size: 16px;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.site-nav a:hover {
    opacity: 1;
}
@media (max-width: 768px) {
    .site-nav {
        display: none;
    }
    .site-header .container {
        justify-content: center;
    }
}



.hero-section {
  position: relative;
  height: 1134px;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2; /* keeps your text above the video */
  color: white; /* optional, if you want to make text visible */
}


.features-section {
    background-color: var(--color-accent-light-green);
    padding: 232px 0;
    min-height: 793px;
    position: relative;
    overflow: hidden;
}
.background-line-art {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 3208px;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.features-grid {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 4;
}
.feature-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 371px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    color: var(--color-accent-green-wash);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.vision-card { width: 752px; z-index: 3; }
.about-card, .build-card { width: 272px; z-index: 3; }

.card-bg-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.card-bg-wrapper img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
}
.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.vision-card .card-content {
    text-align: left;
}
.feature-title-large {
    font-family: var(--font-libre);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 28px;
}
.feature-description {
    font-family: var(--font-lato);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    max-width: 514px;
    margin-bottom: 30px;
}
.btn.btn-primary {
    display: inline-block;
    background-color: var(--color-accent-green-wash);
    color: var(--color-accent-teal-grad-start);
    font-family: var(--font-lato);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 40px;
}
.feature-title-medium {
    font-family: var(--font-libre);
    font-weight: 400;
    line-height: 40px;
    font-size: 36px;
}
.build-card .feature-title-medium {
    font-size: 40px;
}
.arrow-link {
    position: absolute;
    bottom: 30px;
    left: 50%;
}
.arrow-icon-wrapper {
    position: relative;
    width: 30px;
    height: 31px;
}
.arrow-icon-wrapper img {
    position: absolute;
    top: 400%;
    left: 300%;
}
@media(max-width: 1900px){ 
    .background-line-art {left: 1500px; overflow: hidden;}
}


@media (max-width: 1400px) {
    .features-grid { flex-wrap: wrap; }
    .vision-card { width: 100%; order: 1; }
    .about-card { width: calc(50% - 12.5px); order: 2; }
    .build-card { width: calc(50% - 12.5px); order: 3; }
    .background-line-art {left: 1500px;}
}
@media (max-width: 768px) {
    .features-section { padding: 100px 0; }
    .about-card, .build-card { width: 100%; }
    .background-line-art {left: 1500px;}
}



.ux-design-section {
    background: linear-gradient(180deg, #417c7c 0%, #4fb7b3 100%);
    color: var(--color-text-light);
}
.ux-header {
    text-align: center;
    max-width: 1045px;
    margin: 0 auto 100px;
    position: relative;
    z-index: 36;
}
.ux-title {
    font-family: var(--font-libre);
    font-size: 58px;
    font-weight: 400;
    line-height: 250px;
    margin-bottom: -75px;
}
.ux-subtitle {
    font-family: var(--font-libre);
    font-size: 58px;
    font-weight: 400;
    line-height: 55px;
    background: linear-gradient(90deg, #cadcae 0%, #e1e9c9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 30px;
}
.ux-description {
    font-family: var(--font-libre);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #b6b6b6;
    max-width: 961px;
    margin: 0 auto;
}
.ux-content-block {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: 25%;
    width: 25%;
}
.ux-text-content {
	z-index: 10;
	width: 585px;
	top: 2398px;
	left: 398px;
}
.ux-content-title {
    font-family: var(--font-libre);
    font-size: 48px;
    font-weight: 400;
    line-height: 51px;
    margin-bottom: 37px;
    margin-left: 15px;
}
.ux-content-body {
    font-family: var(--font-lato);
    font-size: 22px;
    font-weight: 400;
    line-height: 25px;
    color: #d0d0d0;
    margin-bottom: 25px;
    margin-left: 15px;
}
.discover-link {
    font-family: var(--font-poppins);
    font-size: 19px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 48px;
    margin-left: 15px;
}
.discover-link img {
    width: 24px;
    height: 24px;
    transform: rotate(180deg);
}
.ux-image-stack {
    flex-basis: 55%;
    position: relative;
    min-height: 759px;
}
.image-stack-inner {
    position: absolute;
    width: 1324px;
    height: 759px;
    top: 0;
    left: -625px;
}
.img-layer {
    position: absolute;
    border-radius: 20px;
}
.layer-bg-1 {
    width: 100%; height: 100%; top: 0; left: 0;
    background: linear-gradient(90deg, #cadcae 0%, #e1e9c9 100%);
}
.layer-bg-2 {
    width: 100%; height: 100%; top: 0; left: 0;
    background: linear-gradient(90deg, #6c8876, #3eb5c7);
}
.layer-img-1 { top: 40.5px; left: 725px; width: 738px; height: 423px;  z-index: 7; }
.layer-img-2 { top: 40px; left: 725px; width: 738px; height: 423px; }
.layer-img-3 { top: 153px; left: 1077px; width: 369px; height: 293px; z-index: 10; }
.hummingbird-svg {
    position: absolute;
    bottom: -135px;
    left: 170px;
    width: 235px;
    height: 269px;
    z-index: 10;
}
@media (max-width: 1200px) {
    .ux-content-block { flex-direction: column; text-align: center; }
    .ux-text-content { flex-basis: auto; }
    .ux-image-stack { flex-basis: auto; width: 100%; transform: scale(0.8); min-height: 600px; }
    .image-stack-inner { left: 50%; transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .ux-title, .ux-subtitle { font-size: 36px; line-height: 1.2; }
    .ux-image-stack { transform: scale(0.6); min-height: 450px; margin-top: -100px; }
    .hummingbird-svg { left: 20px; bottom: -100px; transform: scale(0.8); }
}



.services-section {
    background-image: linear-gradient(180deg, #4fb7b3 0%, rgba(0, 0, 0, 0.22) 100%), url('images/DALL·E\ 2024-07-31\ 03.26.43\ -\ A\ digital\ artwork\ featuring\ five\ distinct\ flowing\ wires\,\ starting\ separately\ from\ the\ left\ side\,\ intertwining\ in\ the\ center\,\ and\ then\ separating\ again\ 14.png');
    background-size: cover;
    background-position: center;
    padding: 45px 0;
    text-align: center;
}
.services-header {
    margin-bottom: 196px;
}
.services-title {
    font-family: var(--font-libre);
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 37px;
}
.services-subtitle {
    font-family: var(--font-libre);
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    background: linear-gradient(90deg, #cadcae 0%, #1ed5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}
.services-grid {
    display: grid;
    grid-template-rows: 400px 419px;
    gap: 26px 41px;
    grid-template-areas:
        "large center design"
        "large center marketing";
    justify-content: center;
    text-align: left;
    padding: 0 50px; /* adds side spacing inside grid */
}
.service-card-large { grid-area: large; background-color: var(--color-accent-teal-dark); }
.service-image-center {  
  width: 280px;      /* or whatever fits visually */
  height: auto;
  border-radius: 12px;
  position: relative;
  top: -45%; 
  left: 50%;
}
.service-card-small.design-card { grid-area: design; background-color: #cdeae6; color: var(--color-accent-teal-dark); }
.service-card-small.marketing-card { grid-area: marketing; background-color: #008080; }

.service-card-large, .service-card-small {
    border-radius: 20px;
    padding: 40px;
    position: relative;
    display: grid;
    flex-direction: column;
    z-index: 15;
}
.service-image-center img {
    object-fit: cover;
    border-radius: 20px;
    
}
.deco-arrow {
    position: absolute;
    width: 101px;
    height: 101px;
    top: 0;
    left: 0;
}
.service-card-title {
    font-family: var(--font-libre);
    font-weight: 400;
    margin-bottom: 24px;
    padding-top: 120px;
}
.service-card-large .service-card-title { font-size: 30px; line-height: 40px; color: white; }
.service-card-small .service-card-title { font-size: 32px; line-height: 40px; }
.service-card-desc {
    font-family: var(--font-lato);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-accent-green-wash);
    margin-bottom: 30px;
    flex-grow: 1;
    width: 50%;
}
.design-card .service-card-desc { color: var(--color-accent-teal-dark); width: 100%;}
.btn-explore-wrapper, .btn-explore-wrapper-small {
    position: relative;
    display: inline-block;
    text-align: center;
}

.btn-explore-wrapper { width: 303px; height: 63px; }
.btn-explore-wrapper-small { width: 220px; height: 46px; }
.btn-explore-wrapper img, .btn-explore-wrapper-small img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}
.btn-explore-text, .btn-explore-text-small {
    position: relative;
    z-index: 1;
    font-family: var(--font-lato);
    font-weight: 800;
}
.btn-explore-text { font-size: 20px; line-height: 63px; color: var(--color-accent-teal-dark); }
.btn-explore-text-small { font-size: 16px; line-height: 46px; color: var(--color-accent-green-wash); }

@media (max-width: 1900px) {
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "large large"
            "center design"
            "center marketing";
        gap: 20px;
    }
    .service-image-center{
        margin-left: 15%;
    }
}
@media (max-width: 1024px) {
    .services-header { margin-bottom: 100px; }
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "large"
            "center"
            "design"
            "marketing";
    }
    .service-image-center { max-height: 500px; }
}
@media (max-width: 768px) {
    .services-title { font-size: 48px; }
    .services-subtitle { font-size: 32px; }
}



.site-footer {
    background-color: var(--color-accent-teal-dark);
    border-top: 1px solid #cadcae;
    padding: 50px 0;
}
.footer-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    grid-template-rows: auto auto;
    gap: 30px 60px;
    grid-template-areas:
        "main links"
        "bottom bottom";
}
.footer-col-main {
    grid-area: main;
    display: flex;
    flex-direction: column;
}
.footer-logo img {
    width: 215px;
    height: auto;
    margin-bottom: 100px;
}
.footer-tagline {
    font-family: var(--font-lato);
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    text-align: right;
}
.footer-links-grid {
    grid-area: links;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 30px;
}
.footer-links-col {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 30px;
}
.footer-links-col:first-child {
    border-left: none;
    padding-left: 0;
}
.footer-links-title {
    font-family: var(--font-lato);
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-links-col ul li {
    margin-bottom: 12px;
}
.footer-links-col ul li a {
    font-family: var(--font-lato);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.footer-links-col ul li a:hover {
    opacity: 1;
}
.footer-bottom {
    grid-area: bottom;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-copyright {
    font-family: var(--font-lateef);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-light-alt);
}
.footer-socials {
    display: flex;
    gap: 15px;
    align-items: center;
}
.footer-socials img {
    width: 32px;
    height: 32px;
}
.footer-legal {
    display: flex;
    gap: 20px;
    font-family: var(--font-lato);
    font-size: 20px;
    color: var(--color-text-light-alt);
}
.footer-legal a {
    opacity: 0.8;
    transition: opacity 0.3s;
}
.footer-legal a:hover {
    opacity: 1;
}
@media (max-width: 1400px) {
    .footer-container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "links"
            "bottom";
        gap: 40px;
    }
    .footer-col-main { align-items: center; }
    .footer-tagline { text-align: center; }
    .footer-logo { margin-bottom: 20px; }
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        border-left: none;
        padding-left: 0;
    }
}
@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-links-col {
        border-left: none;
        padding-left: 0;
    }
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 30px;
    }
}
