@import url('https://fonts.googleapis.com/css?family=Fanwood+Text:400,400i');

/* ============================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================================ */
:root {
    /* Brand Colors */
    --color-dark: #303030;
    --color-dark-alt: #212122;
    --color-medium: #565656;
    --color-medium-alt: #3c3c3c;
    --color-light: #f1f1f1;
    --color-lighter: #ebebeb;
    --color-white: #fff;
    --color-black: #000;
    --color-text-body: #303030;
    --color-text-muted: #4a4a4a;
    --color-accent: #4e6f88;

    /* Component Colors */
    --color-border-light: #cbd5e1;
    --color-form-bg: #f8fafc;
    --color-plan-bg: #fefff4;
    --color-testimonial-bg: #f3f3f3;
    --color-tech-bg: #efefef;

    /* Typography */
    --font-primary: 'Fanwood Text', serif;
    --font-size-base: 16px;

    /* Transitions */
    --transition-base: all 0.35s ease;
    --transition-fast: all 0.3s;
}

/* ============================================================
   RESET & BASE STYLES
   ============================================================ */
html {
    box-sizing: border-box;
    font-size: var(--font-size-base);
}
*, *:before, *:after {
    box-sizing: inherit;
}
html, body {
    height: 100%;
}
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}
ol, ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    width: auto;
}
body {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-text-body);
}
body ::selection,
html ::selection {
    background: var(--color-accent);
    color: var(--color-white);
}
body, h1, h2, h3, h4, h5, h6, p {
    color: var(--color-text-body);
}
p {
    margin: 0 0 10px;
    font-size: 24px;
}
.white-text {
    color: var(--color-white);
    text-decoration: none;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
#wrapper {
    width: 100%;
    min-height: 100%;
    position: relative;
}
.container {
    width: 100%;
    margin: 0 auto;
    max-width: 1920px;
}
.content-wrap {
    width: 100%;
    float: left;
}

/* ============================================================
   HEADER — Shared across all pages
   ============================================================ */
.header-wrap {
    width: 100%;
    float: left;
}
.header {
    float: left;
    width: 100%;
}

/* Top bar: phone + email */
.header-top {
    float: left;
    width: 100%;
    padding: 5px 10px;
    background: var(--color-dark);
}
.header-top address {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    font-style: normal;
}
.header-top address p {
    font-size: var(--font-size-base);
    margin-bottom: 0;
    color: var(--color-white);
    font-weight: bold;
}
.header-top address p i {
    font-size: var(--font-size-base);
    color: var(--color-medium);
    width: 28px;
    height: 28px;
    line-height: 28px;
    background: var(--color-white);
    text-align: center;
    border-radius: 100px;
    margin-right: 5px;
}

/* Bottom bar: logo + nav + CTA */
.header-bottom {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 10px;
    background: var(--color-light);
    align-items: center;
    position: relative;
}
.logo-wrap {
    float: left;
}
.logo-wrap img {
    width: 100%;
    height: auto;
    display: block;
}
.nav-wrap {
    float: right;
}
.nav-wrap ul li {
    display: inline-block;
    list-style-type: none;
    padding: 8px 14px;
    margin: 3px 0;
}
.nav-wrap ul li a {
    font-size: 15.5px;
    color: var(--color-black);
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    padding: 7px 0;
    transition: var(--transition-base);
    font-weight: bold;
    letter-spacing: 1px;
}
.nav-wrap ul li a:hover {
    color: var(--color-black);
}
.nav-wrap ul li a:before,
.nav-wrap ul li a:after {
    height: 2px;
    position: absolute;
    content: '';
    transition: var(--transition-base);
    background-color: var(--color-dark-alt);
    width: 0;
}
.nav-wrap ul li a:before {
    top: 0;
    left: 0;
}
.nav-wrap ul li a:after {
    bottom: 0;
    right: 0;
}
.nav-wrap ul li a:hover:before,
.nav-wrap ul li a:hover:after {
    width: 100%;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Burger / hamburger menu — hidden on desktop, shown via media query on mobile */
.burger {
    width: 30px;
    height: 24px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 9999;
}
.burger span {
    display: block;
    height: 4px;
    width: 100%;
    background-color: var(--color-black);
    border-radius: 2px;
    transition: var(--transition-fast) ease-in-out;
}
.burger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Start A Project CTA button in header */
.header-bottom a.start-project-btn {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 6px 12px;
    font-size: var(--font-size-base);
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-base);
    font-weight: bold;
    letter-spacing: 1px;
}
.header-bottom a.start-project-btn:hover {
    background-color: var(--color-medium);
}

/* ============================================================
   FOOTER — Shared across all pages
   ============================================================ */
.footer-wrap {
    float: left;
    width: 100%;
}
.footer {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: var(--color-dark);
}
.footer-left {
    display: flex;
    gap: 10px;
    align-items: center;
}
.footer-left p {
    margin-bottom: 0;
    color: var(--color-white);
    font-size: 20px;
}
.footer-left li {
    display: inline-block;
    list-style-type: none;
}
.footer-left ul {
    display: flex;
    gap: 5px;
}
.footer-left li a {
    display: block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background: var(--color-white);
    color: var(--color-dark);
}
.footer-middle p {
    font-size: var(--font-size-base);
    color: var(--color-white);
    margin-bottom: 0;
}
.footer-right ul {
    display: flex;
    gap: 10px;
}
.footer-right ul li a {
    text-decoration: none;
    padding: 0 3px;
    color: var(--color-white);
}
.footer-right ul li a:hover {
    text-decoration: underline;
}

/* ============================================================
   HOME PAGE — index.html
   Sections: hero, services strip, stats, portfolio, CTA
   ============================================================ */

/* ---- Page Load Animation Keyframes ---- */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeRight {
    from { opacity: 0; transform: translateX(-24px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroImgReveal {
    from { opacity: 0; transform: translateX(24px) scale(1.03); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Hero / Intro Section ---- */
.intro-wrap {
    width: 100%;
    padding: 50px 40px 40px 40px;
    display: flex;
    gap: 4%;
    align-items: center;
    min-height: 82vh;
    border-bottom: 1px solid var(--color-light);
}
.intro-desc {
    width: 50%;
}

/* Pre-heading label */
.hero-label {
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--color-medium);
    border-bottom: 2px solid var(--color-dark);
    padding-bottom: 6px;
    margin-bottom: 22px;
    animation: heroFadeRight 0.7s ease both;
}

.intro-wrap h1 {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: 1px;
    animation: heroFadeUp 0.7s 0.15s ease both;
}
.intro-desc > p {
    font-size: 22px;
    line-height: 1.7;
    color: var(--color-medium-alt);
    animation: heroFadeUp 0.7s 0.3s ease both;
}

/* Hero CTA buttons */
.hero-cta-wrap {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
    margin-bottom: 32px;
    animation: heroFadeUp 0.7s 0.45s ease both;
}
.hero-cta-primary {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 14px 32px;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    transition: var(--transition-base);
    border: 2px solid var(--color-dark);
}
.hero-cta-primary:hover {
    background: transparent;
    color: var(--color-dark);
}
.hero-cta-secondary {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
    padding: 14px 32px;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    transition: var(--transition-base);
}
.hero-cta-secondary:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

/* Trust badges row */
.hero-trust {
    display: flex;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
    animation: heroFadeUp 0.7s 0.6s ease both;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-medium);
}
.hero-trust-item i {
    color: var(--color-dark);
    font-size: 16px;
}

/* Hero image */
.intro-wrap .hero-img {
    width: 46%;
    animation: heroImgReveal 0.9s 0.2s ease both;
}
.intro-wrap .hero-img img {
    width: 100%;
    display: block;
    filter: grayscale(0.15);
    transition: filter 0.4s;
}
.intro-wrap .hero-img img:hover {
    filter: none;
}

/* ---- Services Strip (dark bar under hero) ---- */
.services-strip-wrap {
    float: left;
    width: 100%;
    background: var(--color-dark);
    padding: 0 10px;
}
.services-strip {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.services-strip-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    border-right: 1px solid var(--color-medium-alt);
    text-decoration: none;
    transition: background 0.3s;
    cursor: pointer;
}
.services-strip-item:last-child {
    border-right: none;
}
.services-strip-item:hover {
    background: rgba(255, 255, 255, 0.06);
}
.services-strip-item i {
    font-size: 26px;
    color: var(--color-white);
    opacity: 0.85;
    flex-shrink: 0;
}
.services-strip-item h3 {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
    margin: 0;
}
.services-strip-item p {
    font-size: 12px;
    color: #999;
    margin: 2px 0 0;
}

/* ---- Stats / Numbers Section ---- */
.stats-wrap {
    float: left;
    width: 100%;
    padding: 55px 40px;
    border-bottom: 1px solid var(--color-light);
}
.stats-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.stat-item {
    text-align: center;
    padding: 10px 30px;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--color-light);
}
.stat-number {
    font-size: 60px;
    font-weight: bold;
    color: var(--color-dark);
    line-height: 1;
    display: block;
    letter-spacing: -1px;
}
.stat-suffix {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-dark);
}
.stat-item p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-medium);
    margin: 10px 0 0;
    font-weight: bold;
}

/* ---- Portfolio Section Header ---- */
.work-section-header {
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-dark);
}
.work-section-header h2 {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 1.5px;
    margin: 0;
}
.work-section-header a {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--color-dark);
    padding-bottom: 2px;
    transition: letter-spacing 0.3s;
}
.work-section-header a:hover {
    letter-spacing: 3px;
}

/* ---- Portfolio Hover Overlay ---- */
.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.78);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
    text-align: center;
    padding: 20px;
}
.work-img:hover .work-overlay {
    opacity: 1;
}
.work-overlay-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-white);
    margin-bottom: 5px;
    transform: translateY(10px);
    transition: transform 0.35s ease;
}
.work-overlay-cat {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
    margin: 0;
    transform: translateY(10px);
    transition: transform 0.35s 0.05s ease;
}
.work-overlay-btn {
    margin-top: 18px;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    padding: 7px 20px;
    font-size: 11px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.25s;
    transform: translateY(10px);
    transition: background 0.25s, color 0.25s, transform 0.35s 0.1s ease;
}
.work-img:hover .work-overlay-title,
.work-img:hover .work-overlay-cat,
.work-img:hover .work-overlay-btn {
    transform: translateY(0);
}
.work-overlay-btn:hover {
    background: var(--color-white);
    color: var(--color-black);
}

/* ---- Bottom CTA Banner ---- */
.cta-banner-wrap {
    float: left;
    width: 100%;
    background: var(--color-dark);
    padding: 70px 40px;
    text-align: center;
}
.cta-banner-wrap h2 {
    font-size: 44px;
    font-weight: bold;
    color: var(--color-white);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}
.cta-banner-wrap p {
    font-size: 20px;
    color: #aaa;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-banner-wrap a {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-dark);
    padding: 16px 44px;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: var(--transition-base);
    border: 2px solid var(--color-white);
}
.cta-banner-wrap a:hover {
    background: transparent;
    color: var(--color-white);
}

/* Portfolio grid */
.work-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 10px 10px 50px 10px;
}
.work-wrap h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
}
.work-wrap ul {
    display: grid;
    grid-template-columns: repeat(4, calc(25% - 0.75%));
    column-gap: 1%;
    row-gap: 20px;
    padding: 0;
    margin: 0;
}
/* Items 5 and 6 span two columns for visual variety */
.work-wrap li:nth-child(5) {
    grid-column: span 2;
    width: 100%;
}
.work-wrap li:nth-child(6) {
    grid-column: span 2;
    width: 100%;
}
.work-box {
    float: left;
    width: 100%;
}
.work-img {
    float: left;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: inline-block;
    vertical-align: bottom;
}
.work-img a {
    width: 100%;
    float: left;
    display: table;
}
.work-img img {
    width: 100%;
    transition: var(--transition-base);
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    vertical-align: bottom;
    font-size: 0;
}
.work-img:hover img {
    -webkit-transition: all 0.5s linear;
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2, 1.2, 1);
}
.work-tagline {
    float: left;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-dark);
    margin-bottom: 15px;
}
.work-tagline h4 {
    font-size: 20px;
}
.work-title {
    float: left;
    width: 100%;
    background: var(--color-dark);
}
.work-title a {
    font-size: 18px;
    text-transform: capitalize;
    text-decoration: none;
    color: var(--color-white);
    display: block;
    padding: 6px 10px;
}
.work-title a:hover {
    text-decoration: line-through;
}

/* ============================================================
   ABOUT US PAGE — about-us.html
   Sections: description + images, team grid, services grid,
             clients grid, bottom CTA
   ============================================================ */
.about-wrap {
    float: left;
    width: 100%;
    padding: 10px 10px 50px 10px;
}

/* Shared two-column layout: left title + right content */
.about-description-wrap,
.team-wrap,
.plan-wrap,
.clients-wrap {
    display: flex;
    width: 100%;
    gap: 2%;
    padding-top: 30px;
    padding-bottom: 30px;
}
.left-title-box {
    width: 30%;
}
.left-title-box h1 {
    font-size: 60px;
    font-weight: bold;
    color: var(--color-dark);
    text-transform: uppercase;
}
.left-title-box h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-dark);
    text-transform: uppercase;
}
.right-detail-box,
.right-team-detail,
.plan-detail,
.clients-detail {
    width: 68%;
}

/* Office image mosaic grid */
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    padding-top: 30px;
}
.about-images .img1 {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}
.about-images .img2 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}
.about-images .img3 {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}
.about-images .img4 {
    grid-row: 3 / 4;
    grid-column: 1 / 3;
}
.about-images .img-box {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(.3);
    transition: var(--transition-fast);
}
.about-images .img-box:hover {
    filter: none;
}

/* Team member grid */
.right-team-detail ul {
    display: grid;
    grid-template-columns: repeat(5, calc(20% - 0.75%));
    column-gap: 1%;
    row-gap: 10px;
    padding: 0;
    margin: 0;
}
.right-team-detail ul li {
    width: 100%;
}
.right-team-detail ul li a {
    display: block;
    text-decoration: none;
}
.right-team-detail ul li a h4 {
    font-size: 22px;
}
.right-team-detail ul li a p {
    font-size: var(--font-size-base);
    color: var(--color-medium-alt);
}

/* Plan / services highlight boxes */
.plan-text {
    display: flex;
    gap: 20px;
    align-items: center;
}
.plan-text p {
    width: 50%;
    padding: 25px 10px;
    border: 1px dotted var(--color-medium);
    border-radius: 25px;
    background: var(--color-plan-bg);
}
.plan-detail ul {
    display: grid;
    grid-template-columns: repeat(5, calc(20% - 0.75%));
    column-gap: 1%;
    row-gap: 10px;
    padding-top: 50px;
    margin: 0;
}
.plan-detail ul li {
    width: 100%;
    text-align: center;
}
.plan-detail ul li a {
    display: inline-block;
    width: 100%;
    transition: all 0.5s;
    opacity: .8;
}
.plan-detail ul li a:hover {
    transform: translateY(-10px);
}
.plan-detail ul li a img {
    float: left;
    width: 100%;
    border: 2px solid var(--color-dark-alt);
    border-radius: 200px;
    filter: contrast(100);
}
.plan-detail ul li a h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-top: 20px;
    float: left;
    width: 100%;
    color: var(--color-dark);
}

/* Clients logo grid */
.clients-detail ul {
    display: grid;
    grid-template-columns: repeat(5, calc(20% - 0.75%));
    column-gap: 1%;
    row-gap: 10px;
    padding: 0;
    margin: 0;
}
.clients-detail ul li {
    text-align: center;
    border: 1px solid var(--color-medium);
}
.clients-detail ul li img {
    filter: grayscale(.3);
    transition: var(--transition-fast);
    max-width: 85%;
}
.clients-detail ul li:hover img {
    transform: scale(.8);
    filter: none;
}

/* Bottom hiring CTA */
.about-bottom {
    text-align: center;
}
.about-bottom h5 {
    font-size: 36px;
    font-weight: bold;
    max-width: 600px;
    margin: 50px auto 25px;
    text-align: center;
}
.about-bottom a {
    color: var(--color-dark);
    font-size: 36px;
    text-decoration: underline;
    margin-bottom: 0;
}

/* ============================================================
   CONTACT US PAGE — contact-us.html
   Sections: left (heading + image + social), right (contact blocks)
   ============================================================ */
.contact-main-wrap {
    display: flex;
    width: 100%;
    gap: 5%;
    padding-top: 30px;
    padding-bottom: 30px;
}
.contact-wrap {
    float: left;
    width: 100%;
    padding: 10px;
}
.left-title-box-contact {
    width: 45%;
}
.left-title-box-contact p {
    margin-bottom: 20px;
    font-size: 26px;
}
.left-title-box-contact img {
    width: 100%;
    max-width: 700px;
}
.left-title-box-contact h1 {
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
}
.left-title-box-contact h2 {
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 20px;
}
.contact-detail-right {
    width: 60%;
}
.contact-detail-right h3 {
    font-size: 28px;
    font-weight: bold;
}
.contact-block > p {
    font-size: 22px;
    margin: 10px 0;
}
.contact-detail-right article {
    padding-bottom: 10px;
    border-bottom: 2px dotted var(--color-black);
    margin-bottom: 15px;
}
.contact-block h4 {
    font-size: 20px;
    margin-top: 5px;
}
.contact-block h5 {
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 15px;
    color: var(--color-text-muted);
}
.contact-block ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: .5px;
    margin-bottom: 10px;
    font-style: normal;
}
.contact-block ul li i {
    width: 32px;
    height: 32px;
    line-height: 32px;
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: 100px;
    text-align: center;
    font-size: 14px;
}
.contact-block ul li a {
    color: var(--color-dark);
    text-decoration: underline;
    transition: var(--transition-fast);
    display: inline-block;
}
.contact-block ul li a:hover {
    letter-spacing: 1.5px;
}

/* Animated highlight on row headings hover */
.contact-wrap .row-left h2 {
    font-size: 48px;
    font-weight: bold;
    color: var(--color-dark-alt);
    text-transform: uppercase;
    letter-spacing: 1px;
    background-image: linear-gradient(180deg, transparent 65%, var(--color-accent) 0);
    background-size: 0 100%;
    background-repeat: no-repeat;
    text-decoration: none;
    transition: background-size .4s ease;
}
.row:hover .row-left h2 {
    background-size: 100% 100%;
}

/* Social links on contact left panel */
.left-title-box-contact .social-icons {
    float: left;
    width: 100%;
}
.left-title-box-contact .social-icons ul {
    display: flex;
    gap: 0 15px;
    flex-wrap: wrap;
}
.left-title-box-contact .social-icons ul li {
    margin-bottom: 15px;
}
.left-title-box-contact .social-icons li a {
    font-weight: bold;
    font-size: 28px;
    color: var(--color-dark);
    text-decoration: none;
    position: relative;
}
.left-title-box-contact .social-icons li a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    background-color: var(--color-black);
    width: 0;
    transition: width .4s;
}
.social-icons li a:hover:after,
.social-icons li a:focus:after,
.social-icons li a:active:after {
    width: 100%;
}

/* ============================================================
   OUR SERVICES PAGE — our-services.html
   Sections: services list, process steps timeline, technologies grid
   ============================================================ */
.services-wrap {
    float: left;
    width: 100%;
    padding: 10px 10px 50px 10px;
}
.services-description-wrap {
    display: flex;
    width: 100%;
    gap: 2%;
    padding-top: 40px;
}
.services-detail {
    width: 60%;
}
.services-box {
    display: flex;
    width: 100%;
    gap: 3%;
    margin-bottom: 40px;
}
.services-box-left {
    float: left;
    width: 22%;
    text-align: center;
}
.services-box-left img {
    float: left;
    width: 100%;
    border: 2px solid var(--color-dark);
    border-radius: 200px;
}
.services-box-left h3 {
    float: left;
    width: 100%;
    margin-top: 20px;
    font-size: 28px;
    font-weight: bold;
}
.services-box-right {
    float: left;
    width: 75%;
}
.services-box-right p {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.services-box-right ul li {
    float: left;
    width: 100%;
    list-style-type: none;
    font-size: 20px;
    margin-bottom: 13px;
}
.services-box-right li i {
    margin-right: 10px;
}

/* Process steps timeline */
.process-wrap {
    display: flex;
    width: 100%;
    gap: 2%;
    padding-top: 30px;
    padding-bottom: 30px;
}
.process-detail {
    width: 68%;
}
.process-detail ul {
    display: flex;
    justify-content: space-between;
    position: relative;
}
/* Horizontal connecting line between process step circles */
.process-detail ul::before {
    content: '';
    position: absolute;
    width: 94%;
    height: 3px;
    background: var(--color-dark);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}
.process-detail ul li {
    text-align: center;
    list-style-type: none;
    background: var(--color-white);
    position: relative;
    padding: 0 15px;
}
.process-detail ul li img {
    display: block;
    width: 100px;
    margin: 26px auto 10px;
}
.process-detail ul li span.number {
    width: 70px;
    height: 70px;
    border: 4px solid var(--color-dark);
    margin: 0 auto;
    display: block;
    padding-top: 5px;
    font-size: 32px;
    color: var(--color-dark);
    border-radius: 100px;
    font-weight: bold;
}
.process-detail ul li h1 {
    font-size: 22px;
    margin-top: 20px;
    font-weight: bold;
}

/* Technologies icon grid */
.technologies-wrap {
    display: flex;
    width: 100%;
    gap: 2%;
    padding-top: 60px;
    padding-bottom: 30px;
}
.technologies-detail {
    width: 70%;
}
.technologies-detail ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 43px;
}
.technologies-detail ul li {
    width: 90px;
    padding: 15px;
    background: var(--color-tech-bg);
    border: 1px solid var(--color-dark);
}
.technologies-detail ul li img {
    max-width: 100%;
    vertical-align: bottom;
}

/* ============================================================
   OUR WORK PAGE — our-work.html
   Sections: page title, portfolio grid (reuses .work-wrap)
   ============================================================ */
.work-wrap-main {
    float: left;
    width: 100%;
    padding: 30px 10px;
}
.top-title-box {
    float: left;
    width: 100%;
    padding: 15px 0;
}
.top-title-box h1 {
    font-size: 60px;
    font-weight: bold;
    color: var(--color-dark);
    text-transform: uppercase;
}

/* ============================================================
   OUR CLIENTS PAGE — our-clients.html
   Sections: clients logo grid, testimonials, bottom CTA
   ============================================================ */
.client-main-page {
    width: 100%;
}
.testimonials-wrap {
    display: flex;
    width: 100%;
    gap: 2%;
    padding-top: 30px;
    padding-bottom: 30px;
}
.testimonials {
    width: 68%;
    display: grid;
    grid-template-columns: repeat(3, calc(33% - 0.3%));
    column-gap: 1%;
    row-gap: 10px;
    padding: 0;
    margin: 0;
}
.testimonial-item {
    background: var(--color-testimonial-bg);
    border-radius: 12px;
    padding: 20px;
    border: 1px dashed var(--color-black);
}
.testimonial-item .quote {
    font-size: 18px;
    color: var(--color-dark);
    margin-bottom: 20px;
}
.testimonial-item .author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--color-dark);
}
.testimonial-item img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* ============================================================
   START A PROJECT PAGE — start-a-project.html
   Sections: page title + intro, project request form, aside panel
   ============================================================ */
.quote-wrap-main {
    float: left;
    width: 100%;
    padding: 30px 60px;
}
.quote-wrap-main .top-title-box {
    text-align: center;
    margin-bottom: 30px;
}
.quote-wrap-main .top-title-box p {
    font-size: 22px;
    max-width: 680px;
    margin: 0 auto;
}
.quote-wrap {
    display: flex;
    width: 100%;
    gap: 5%;
    align-items: flex-start;
    justify-content: center;
}

/* Main form container */
.quote-wrap form {
    padding: 35px 40px;
    border: 1px solid var(--color-dark);
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 57%;
    background: var(--color-white);
}
.quote-wrap form h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-light);
}

/* Step grouping — each section of the form */
.form-step {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px 0;
    border-bottom: 1px dotted var(--color-border-light);
    margin-bottom: 0;
}
.form-step:last-of-type {
    border-bottom: none;
}
.form-step-label {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-medium);
    margin-bottom: 4px;
}

/* Two-column field grid inside form steps */
.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Wrapper for label + input */
.form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.quote-wrap form label {
    font-weight: bold;
    color: var(--color-dark);
    font-size: 15px;
    display: block;
}
.quote-wrap form input,
.quote-wrap form select,
.quote-wrap form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--color-border-light);
    border-radius: 0;
    font-size: 16px;
    background-color: var(--color-form-bg);
    transition: border-color 0.25s ease, background-color 0.25s ease;
    color: var(--color-dark);
    font-family: Arial, Helvetica, sans-serif;
}
.quote-wrap form input:focus,
.quote-wrap form select:focus,
.quote-wrap form textarea:focus {
    border-color: var(--color-dark);
    background-color: var(--color-white);
    outline: none;
}
.quote-wrap form input::placeholder,
.quote-wrap form textarea::placeholder {
    color: #aaa;
    font-size: 15px;
}

/* Submit row */
.form-submit-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 22px;
}
.quote-wrap form button {
    cursor: pointer;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 14px 32px;
    font-size: 15px;
    text-transform: uppercase;
    transition: var(--transition-base);
    font-weight: bold;
    letter-spacing: 2px;
    border: 2px solid var(--color-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.quote-wrap form button:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}
.form-note {
    font-size: 13px;
    color: var(--color-medium);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.form-note i {
    font-size: 13px;
    color: var(--color-medium-alt);
}

/* Right-side panel: "What Happens Next" + image */
.start-project-aside {
    width: 38%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* What Happens Next panel */
.project-benefits {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 30px;
}
.project-benefits h3 {
    font-size: 22px;
    font-weight: bold;
    color: var(--color-white);
    margin-bottom: 22px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.project-benefits ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
}
.project-benefits ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-medium-alt);
    font-size: 16px;
    line-height: 1.6;
    color: #d0d0d0;
}
.project-benefits ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.project-benefits ul li .step-num {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: 2px solid var(--color-white);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    color: var(--color-white);
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 2px;
}
.project-benefits ul li span strong {
    color: var(--color-white);
    display: block;
    margin-bottom: 2px;
}

/* Stat badges below the panel */
.project-stats {
    background: var(--color-light);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.project-stat {
    text-align: center;
}
.project-stat strong {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: var(--color-dark);
    line-height: 1;
}
.project-stat span {
    font-size: 13px;
    color: var(--color-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SVG illustration below stats */
.start-project-aside .image-start-a-project {
    width: 100%;
    padding: 20px 30px;
    background: var(--color-white);
    border: 1px solid var(--color-light);
    border-top: none;
}
.start-project-aside .image-start-a-project img {
    filter: grayscale();
    width: 100%;
    max-height: 200px;
    object-fit: contain;
}

/* ============================================================
   PROJECT DETAIL PAGE — Professional Case Study (Pentagram-style)
   Sections: hero, meta bar, overview, logo showcase, colors,
             gallery, results, next project
   ============================================================ */

/* ---- Case Study Hero ---- */
.cs-hero {
    float: left;
    width: 100%;
    min-height: 78vh;
    background: var(--color-dark);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 60px 60px;
    position: relative;
    overflow: hidden;
}
.cs-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    transition: opacity 0.6s;
}
.cs-hero:hover .cs-hero-bg {
    opacity: 0.3;
}
.cs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.cs-client-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: #888;
    margin-bottom: 18px;
}
.cs-hero h1 {
    font-size: 78px;
    font-weight: bold;
    color: var(--color-white);
    line-height: 1.02;
    margin: 0 0 18px;
    letter-spacing: -1px;
}
.cs-hero-tagline {
    font-size: 22px;
    color: #aaa;
    margin: 0;
    max-width: 620px;
    line-height: 1.6;
}

/* ---- Meta Information Bar ---- */
.cs-meta-bar {
    float: left;
    width: 100%;
    background: var(--color-white);
    border-bottom: 2px solid var(--color-dark);
}
.cs-meta-inner {
    display: flex;
    align-items: stretch;
}
.cs-meta-item {
    flex: 1;
    padding: 24px 30px;
    border-right: 1px solid var(--color-light);
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.cs-meta-item:last-child {
    border-right: none;
}
.cs-meta-label {
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-medium);
    display: block;
}
.cs-meta-value {
    font-size: 17px;
    font-weight: bold;
    color: var(--color-dark);
    display: block;
    line-height: 1.3;
}
.cs-meta-link {
    color: var(--color-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--color-dark);
    display: inline;
    transition: opacity 0.3s;
}
.cs-meta-link:hover {
    opacity: 0.55;
}

/* ---- Section Base ---- */
.cs-section {
    float: left;
    width: 100%;
    padding: 70px 60px;
}
.cs-section-white  { background: var(--color-white); }
.cs-section-gray   { background: #f5f5f5; }
.cs-section-dark   { background: var(--color-dark); }
.cs-section-black  { background: var(--color-black); }

.cs-section-label {
    display: block;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-medium);
    margin-bottom: 12px;
}
.cs-section-dark .cs-section-label,
.cs-section-black .cs-section-label {
    color: #666;
}
.cs-section h2 {
    font-size: 44px;
    font-weight: bold;
    color: var(--color-dark);
    margin: 0 0 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-dark);
}
.cs-section-dark h2,
.cs-section-black h2 {
    color: var(--color-white);
    border-bottom-color: var(--color-medium-alt);
}

/* ---- Project Overview (2-col text) ---- */
.cs-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 10px;
}
.cs-overview-block h3 {
    font-size: 22px;
    font-weight: bold;
    color: var(--color-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cs-overview-block p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--color-medium-alt);
    margin-bottom: 14px;
}

/* ---- Full-bleed Image ---- */
.cs-full-image {
    float: left;
    width: 100%;
    overflow: hidden;
    max-height: 680px;
}
.cs-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}
.cs-full-image:hover img {
    transform: scale(1.025);
}

/* ---- Logo Variations Grid ---- */
.cs-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}
.cs-logo-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px 35px;
    min-height: 200px;
}
.cs-logo-cell img {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
}
/* Background variants for logo cells */
.cs-bg-white   { background: #ffffff; }
.cs-bg-light   { background: #f2f2f2; }
.cs-bg-dark    { background: var(--color-dark); }
.cs-bg-black   { background: #000000; }
.cs-bg-brand   { background: var(--color-accent); } /* swap with actual brand color inline */

/* ---- Color Palette ---- */
.cs-color-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.cs-swatch {
    flex: 1;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cs-swatch-block {
    height: 110px;
    width: 100%;
    display: block;
}
.cs-swatch-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cs-swatch-name {
    font-size: 13px;
    font-weight: bold;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cs-swatch-hex {
    font-size: 12px;
    color: var(--color-medium);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

/* ---- Screenshots / Gallery ---- */
.cs-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}
.cs-gallery-item {
    overflow: hidden;
    background: var(--color-light);
    position: relative;
}
.cs-gallery-item.cs-gallery-wide {
    grid-column: 1 / -1;
}
.cs-gallery-item.cs-gallery-tall {
    grid-row: span 2;
}
.cs-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.cs-gallery-item:hover img {
    transform: scale(1.04);
}
/* Screenshot caption overlay */
.cs-gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 18px;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: var(--color-white);
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0;
    transition: opacity 0.3s;
}
.cs-gallery-item:hover figcaption {
    opacity: 1;
}

/* ---- Results / Impact Stats ---- */
.cs-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.cs-result-item {
    padding: 40px 30px;
    border-right: 1px solid var(--color-medium-alt);
    text-align: center;
}
.cs-result-item:last-child {
    border-right: none;
}
.cs-result-number {
    display: block;
    font-size: 64px;
    font-weight: bold;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 10px;
}
.cs-result-desc {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* ---- Services Tags ---- */
.cs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}
.cs-tag {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--color-medium-alt);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aaa;
}

/* ---- Quote / Testimonial Block ---- */
.cs-quote {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.cs-quote blockquote {
    font-size: 28px;
    line-height: 1.65;
    color: var(--color-white);
    margin: 0 0 25px;
    font-style: italic;
}
.cs-quote cite {
    font-size: 14px;
    color: #888;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ---- Next / Previous Project Navigation ---- */
.cs-project-nav {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 2px solid var(--color-dark);
}
.cs-project-nav a {
    padding: 40px 50px;
    text-decoration: none;
    border-right: 1px solid var(--color-light);
    transition: background 0.3s;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cs-project-nav a:last-child {
    border-right: none;
    text-align: right;
}
.cs-project-nav a:hover {
    background: var(--color-dark);
}
.cs-nav-direction {
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-medium);
    transition: color 0.3s;
}
.cs-nav-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-dark);
    transition: color 0.3s;
}
.cs-project-nav a:hover .cs-nav-direction,
.cs-project-nav a:hover .cs-nav-title {
    color: var(--color-white);
}

/* ---- Case Study Responsive ---- */
@media (max-width: 1280px) {
    .cs-hero { padding: 0 40px 50px; }
    .cs-hero h1 { font-size: 62px; }
    .cs-section { padding: 55px 40px; }
}
@media (max-width: 1024px) {
    .cs-hero { min-height: 60vh; padding: 0 30px 40px; }
    .cs-hero h1 { font-size: 48px; }
    .cs-hero-tagline { font-size: 19px; }
    .cs-meta-inner { flex-wrap: wrap; }
    .cs-meta-item { width: 50%; flex: none; border-bottom: 1px solid var(--color-light); }
    .cs-section { padding: 45px 30px; }
    .cs-logos-grid { grid-template-columns: repeat(2, 1fr); }
    .cs-results-grid { grid-template-columns: repeat(2, 1fr); }
    .cs-result-item { border-bottom: 1px solid var(--color-medium-alt); }
    .cs-project-nav a { padding: 30px 25px; }
    .cs-nav-title { font-size: 22px; }
}
@media (max-width: 768px) {
    .cs-hero { padding: 0 20px 35px; min-height: 50vh; }
    .cs-hero h1 { font-size: 38px; letter-spacing: 0; }
    .cs-hero-tagline { font-size: 17px; }
    .cs-meta-item { width: 100%; }
    .cs-section { padding: 40px 20px; }
    .cs-section h2 { font-size: 32px; }
    .cs-overview { grid-template-columns: 1fr; gap: 30px; }
    .cs-logos-grid { grid-template-columns: 1fr 1fr; }
    .cs-gallery { grid-template-columns: 1fr; }
    .cs-gallery-item.cs-gallery-wide,
    .cs-gallery-item.cs-gallery-tall { grid-column: auto; grid-row: auto; }
    .cs-results-grid { grid-template-columns: 1fr 1fr; }
    .cs-project-nav { grid-template-columns: 1fr; }
    .cs-project-nav a:last-child { text-align: left; border-right: none; border-top: 1px solid var(--color-light); }
    .cs-result-number { font-size: 48px; }
    .cs-quote blockquote { font-size: 22px; }
    .cs-color-grid { gap: 10px; }
    .cs-swatch { min-width: 80px; }
}
@media (max-width: 480px) {
    .cs-hero h1 { font-size: 30px; }
    .cs-logos-grid { grid-template-columns: 1fr; }
    .cs-results-grid { grid-template-columns: 1fr; }
    .cs-result-item { border-right: none; }
    .cs-logo-cell { padding: 40px 25px; min-height: 150px; }
}

/* ============================================================
   TEAM MEMBER DETAIL PAGE — ayub-alishah.html
   Sections: person photo + social links, bio text
   ============================================================ */
.single-person-wrap {
    float: left;
    width: 100%;
    padding: 50px 10px;
}
.person-wrap {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.person-wrap .row-left {
    width: 40%;
    margin-right: 30px;
}
.person-wrap .row-right {
    width: 60%;
}
.person-wrap .row-right h1 {
    font-size: 36px;
    font-weight: bold;
}
.person-wrap .row-right h3 {
    font-size: 28px;
    margin-top: 5px;
    margin-bottom: 20px;
}
.person-wrap .row-right p {
    font-size: 20px;
}
.person-wrap .row-right p a {
    text-decoration: none;
    color: var(--color-dark-alt);
}
.person-wrap p a:hover {
    text-decoration: underline;
}
.person-social {
    float: left;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 8px;
}
.person-social ul {
    display: flex;
    gap: 5px;
}
.person-social ul li a {
    width: 32px;
    height: 32px;
    background-color: var(--color-dark);
    line-height: 32px;
    color: var(--color-white);
    text-decoration: none;
    text-align: center;
    border-radius: 100px;
}
.person-social ul li a:hover {
    background-color: var(--color-medium-alt);
}

/* ============================================================
   TERMS PAGE — terms.html
   Sections: terms heading and content body
   ============================================================ */
.terms-wrap {
    float: left;
    width: 100%;
    padding: 1%;
}
.terms-wrap h1 {
    font-size: 60px;
    font-weight: bold;
}
.terms-wrap h4 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 20px;
}

/* ============================================================
   RESPONSIVE — 1280px (Large tablets / small laptops)
   ============================================================ */
@media (max-width: 1280px) {
    .about-wrap {
        padding: 10px 20px;
    }
    .about-description-wrap,
    .team-wrap,
    .plan-wrap,
    .clients-wrap {
        flex-wrap: wrap;
        padding-bottom: 0;
    }
    .left-title-box {
        width: 100%;
    }
    .right-detail-box,
    .right-team-detail,
    .plan-detail,
    .clients-detail {
        width: 100%;
    }
    .left-title-box h1 {
        font-size: 48px;
        margin-bottom: 10px;
    }
    .left-title-box h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .plan-detail ul li a h3 {
        font-size: 20px;
    }
    .testimonials-wrap {
        flex-wrap: wrap;
    }
    .testimonials {
        width: 100%;
    }
    .services-description-wrap {
        flex-wrap: wrap;
    }
    .services-description-wrap .left-title-box {
        text-align: center;
    }
    .services-description-wrap .left-title-box h1 {
        margin-bottom: 20px;
    }
    .services-detail {
        width: 100%;
    }
    .process-wrap {
        flex-wrap: wrap;
    }
    .process-wrap .left-title-box {
        text-align: center;
        margin-bottom: 20px;
    }
    .process-detail {
        width: 100%;
    }
    .quote-wrap-main .top-title-box h1 {
        margin-bottom: 15px;
    }
    .quote-wrap {
        align-items: start;
    }
    .quote-wrap form h2 {
        font-size: 36px;
    }
}

/* ============================================================
   RESPONSIVE — 1024px (Tablets / smaller laptops)
   Burger menu becomes active at this breakpoint
   ============================================================ */
@media (max-width: 1024px) {
    .burger {
        display: flex;
    }
    .nav-wrap {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--color-lighter);
        padding: 5px 0;
        width: 230px;
    }
    .nav-wrap ul li {
        width: 100%;
    }
    .nav-wrap.visible {
        display: block;
    }
    .intro-wrap {
        flex-direction: column;
        gap: 20px;
    }
    .intro-desc {
        width: 100%;
        order: 2;
    }
    .intro-wrap h1 {
        font-size: 36px;
    }
    .intro-wrap img {
        width: 100%;
        order: 1;
        max-height: 350px;
        object-fit: cover;
    }
    .right-team-detail ul {
        grid-template-columns: repeat(4, calc(24% - 0.75%));
        column-gap: 2%;
    }
    .right-team-detail ul li {
        margin-bottom: 20px;
    }
    .plan-detail ul {
        grid-template-columns: repeat(4, calc(24% - 0.75%));
        column-gap: 2%;
    }
    .plan-detail ul li {
        margin-bottom: 20px;
    }
    .plan-detail ul li a h3 {
        font-size: 22px;
    }
    .top-title-box h1 {
        font-size: 42px;
    }
    .contact-main-wrap {
        flex-wrap: wrap;
        padding: 10px 20px;
    }
    .left-title-box-contact {
        width: 100%;
        margin-bottom: 20px;
    }
    .left-title-box-contact h1 {
        font-size: 42px;
    }
    .left-title-box-contact p {
        font-size: 24px;
    }
    .left-title-box-contact img {
        max-width: 100%;
        max-height: 300px;
        object-fit: cover;
        object-position: center;
    }
    .contact-detail-right {
        width: 100%;
    }
    .quote-wrap {
        flex-wrap: wrap;
    }
    .quote-wrap form h2 {
        font-size: 26px;
        text-align: center;
    }
    .quote-wrap form {
        width: 100%;
        padding: 25px 20px;
    }
    .start-project-aside {
        width: 100%;
        margin-top: 10px;
    }
    .image-start-a-project {
        width: 100%;
        text-align: center;
        margin-top: 0;
    }
    .image-start-a-project img {
        max-width: 100%;
    }
    .project-stats {
        padding: 15px 20px;
    }
}

/* ============================================================
   RESPONSIVE — 768px (Tablets portrait)
   ============================================================ */
@media (max-width: 768px) {
    .header-top address p:nth-child(1) {
        display: none;
    }
    .intro-wrap img {
        max-height: 250px;
    }
    .work-wrap ul {
        grid-template-columns: repeat(2, calc(50% - 0.5%));
    }
    .left-title-box h1 {
        font-size: 42px;
    }
    .left-title-box h2 {
        font-size: 32px;
    }
    .about-images {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .about-images .img1,
    .about-images .img2,
    .about-images .img3,
    .about-images .img4 {
        grid-column: auto;
        grid-row: auto;
    }
    .about-images .img-box {
        height: auto;
    }
    .plan-detail ul {
        grid-template-columns: repeat(3, calc(32.6% - 0.75%));
    }
    .right-team-detail ul {
        grid-template-columns: repeat(3, calc(32.6% - 0.75%));
    }
    .clients-detail ul {
        grid-template-columns: repeat(4, calc(25% - 0.75%));
    }
    .right-team-detail ul li {
        margin-bottom: 0;
    }
    .process-detail ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .process-detail ul li {
        width: 50%;
        margin-bottom: 25px;
    }
    .plan-text {
        gap: 10px;
        flex-wrap: wrap;
    }
    .plan-text p {
        width: 100%;
        padding: 25px;
    }
    .footer {
        flex-direction: column;
        gap: 15px;
        padding: 30px 10px;
    }
    .footer-middle {
        order: 3;
    }
    .top-title-box h1 {
        font-size: 36px;
    }
    .testimonials {
        grid-template-columns: repeat(2, calc(49.6% - 0.3%));
    }
    .services-box {
        gap: 5%;
    }
    .services-box-left {
        width: 25%;
    }
    .services-box-right {
        width: 70%;
    }
    .services-box-right p {
        font-size: 22px;
    }
}

/* ============================================================
   RESPONSIVE — 660px
   ============================================================ */
@media (max-width: 660px) {
    .right-team-detail ul {
        grid-template-columns: repeat(2, calc(49.7% - 0.75%));
    }
    .services-box-left h3 {
        font-size: 22px;
    }
    .services-box-right p {
        font-size: 20px;
    }
    .services-box-right ul li {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .plan-detail ul {
        grid-template-columns: repeat(2, calc(49.7% - 0.75%));
        padding-top: 20px;
    }
    .plan-detail ul li {
        margin-bottom: 20px;
        padding: 0 25px;
    }
    .quote-wrap-main {
        padding: 25px;
    }
}

/* ============================================================
   RESPONSIVE — 480px (Mobile phones)
   ============================================================ */
@media (max-width: 480px) {
    p {
        font-size: 22px;
    }
    .intro-wrap h1 {
        font-size: 28px;
    }
    .intro-desc p {
        font-size: 22px;
    }
    .work-wrap ul {
        grid-template-columns: repeat(2, calc(50% - 0.5%));
    }
    .work-title a {
        font-size: var(--font-size-base);
    }
    .right-team-detail ul li a h4 {
        font-size: 18px;
        font-weight: 600;
    }
    .about-wrap {
        padding: 20px 20px 40px 20px;
    }
    .left-title-box h1 {
        font-size: 36px;
    }
    .left-title-box h2 {
        font-size: 28px;
    }
    .process-detail ul li {
        margin-bottom: 40px;
    }
    .process-detail ul li span.number {
        width: 50px;
        height: 50px;
        border: 2px solid var(--color-dark);
        font-size: 24px;
    }
    .process-detail ul li img {
        width: 70px;
    }
    .plan-detail ul li {
        margin-bottom: 10px;
        padding: 0 10px;
    }
    .clients-detail ul {
        grid-template-columns: repeat(3, calc(33.3% - 0.75%));
    }
    .about-bottom h5 {
        font-size: 28px;
        margin-top: 30px;
        margin-bottom: 18px;
    }
    .about-bottom a {
        font-size: 26px;
    }
    .services-box {
        flex-wrap: wrap;
        gap: 0;
        padding: 0 5px;
    }
    .services-box-left {
        width: 100%;
        margin-bottom: 20px;
    }
    .services-box-left img {
        max-width: 200px;
        float: none;
    }
    .services-box-left h3 {
        font-size: 24px;
    }
    .services-box-right {
        width: 100%;
    }
    .services-box-right p {
        font-size: 22px;
        font-weight: 400;
    }
    .services-box-right ul li {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .footer-left p {
        font-size: var(--font-size-base);
    }
    .top-title-box h1 {
        font-size: 32px;
    }
    .testimonials {
        grid-template-columns: 100%;
    }
    .quote-wrap form {
        padding: 15px;
    }
    .quote-wrap form h2 {
        font-size: 24px;
    }
    .form-row-2col {
        grid-template-columns: 1fr;
    }
    .project-benefits {
        padding: 20px 15px;
    }
    .project-stats {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
}

/* ============================================================
   RESPONSIVE — 360px (Small mobile phones)
   ============================================================ */
@media (max-width: 360px) {
    p {
        font-size: 20px;
    }
    .logo-wrap {
        width: 50px;
    }
    .burger {
        width: 26px;
        height: 24px;
    }
    .header-bottom a.start-project-btn {
        padding: 8px 14px;
        font-size: 14px;
    }
    .intro-wrap h1 {
        font-size: 24px;
    }
    .intro-desc p {
        font-size: 20px;
    }
    .work-wrap h2 {
        font-size: 26px;
    }
    .left-title-box h1 {
        font-size: 28px;
    }
    .services-box-left img {
        max-width: 150px;
        float: none;
    }
    .services-box-right p {
        font-size: 20px;
    }
    .services-box-right ul li {
        font-size: 18px;
    }
}

/* ============================================================
   HOME PAGE ENHANCEMENTS — Responsive
   ============================================================ */
@media (max-width: 1280px) {
    .intro-wrap {
        min-height: 75vh;
        padding: 40px 30px;
    }
    .intro-wrap h1 {
        font-size: 44px;
    }
    .services-strip-item p {
        display: none;
    }
    .stat-number {
        font-size: 50px;
    }
    .cta-banner-wrap h2 {
        font-size: 38px;
    }
}

@media (max-width: 1024px) {
    .intro-wrap {
        flex-direction: column;
        min-height: auto;
        padding: 35px 20px 25px;
        gap: 20px;
    }
    .intro-desc {
        width: 100%;
        order: 2;
    }
    .intro-wrap .hero-img {
        width: 100%;
        order: 1;
        max-height: 360px;
        overflow: hidden;
    }
    .intro-wrap .hero-img img {
        width: 100%;
        max-height: 360px;
        object-fit: cover;
        object-position: center top;
    }
    .intro-wrap h1 {
        font-size: 36px;
    }
    .hero-trust {
        gap: 18px;
    }
    .services-strip {
        flex-wrap: wrap;
    }
    .services-strip-item {
        width: 48%;
        min-width: 48%;
        flex: none;
        border-right: none;
        border-bottom: 1px solid var(--color-medium-alt);
    }
    .services-strip-item:nth-child(odd) {
        border-right: 1px solid var(--color-medium-alt);
    }
    .stats-wrap {
        padding: 40px 20px;
    }
    .stat-number {
        font-size: 44px;
    }
    .cta-banner-wrap {
        padding: 55px 25px;
    }
    .cta-banner-wrap h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .intro-wrap h1 {
        font-size: 30px;
    }
    .hero-label {
        font-size: 10px;
        letter-spacing: 2.5px;
    }
    .intro-desc > p {
        font-size: 20px;
    }
    .services-strip-item {
        width: 100%;
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--color-medium-alt);
    }
    .services-strip-item:last-child {
        border-bottom: none;
    }
    .services-strip-item:nth-child(odd) {
        border-right: none;
    }
    .stats-inner {
        gap: 5px;
    }
    .stat-number {
        font-size: 40px;
    }
    .stat-suffix {
        font-size: 28px;
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
    .stat-item {
        padding: 10px 20px;
        width: 48%;
    }
    .work-section-header h2 {
        font-size: 26px;
    }
    .cta-banner-wrap {
        padding: 45px 15px;
    }
    .cta-banner-wrap h2 {
        font-size: 26px;
    }
    .cta-banner-wrap p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .intro-wrap h1 {
        font-size: 26px;
    }
    .hero-cta-wrap {
        flex-direction: column;
        gap: 10px;
    }
    .hero-cta-primary,
    .hero-cta-secondary {
        text-align: center;
        padding: 13px 24px;
        font-size: 12px;
    }
    .hero-trust {
        gap: 14px;
    }
    .hero-trust-item {
        font-size: 11px;
    }
    .stats-wrap {
        padding: 30px 10px;
    }
    .stat-number {
        font-size: 36px;
    }
    .stat-suffix {
        font-size: 22px;
    }
    .cta-banner-wrap h2 {
        font-size: 22px;
    }
    .cta-banner-wrap a {
        padding: 13px 28px;
        font-size: 12px;
    }
    .services-strip-wrap {
        display: none;
    }
}

/* ============================================================
   INNER PAGES — Full-Width Layout + Design Upgrades
   Overrides the 30%/68% two-column layout to full-width stacked
   ============================================================ */

/* ---- Dark Page Banner (replaces left-title H1 on inner pages) ---- */
.page-banner {
    float: left;
    width: 100%;
    padding: 55px 40px 50px;
    background: var(--color-dark);
}
.page-banner .breadcrumb {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #666;
    margin-bottom: 16px;
    display: block;
}
.page-banner .breadcrumb a {
    color: #777;
    text-decoration: none;
}
.page-banner .breadcrumb a:hover {
    color: #aaa;
}
.page-banner h1 {
    font-size: 62px;
    font-weight: bold;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.1;
    margin: 0 0 14px;
}
.page-banner p {
    font-size: 19px;
    color: #aaa;
    margin: 0;
    max-width: 640px;
    line-height: 1.7;
}

/* ---- Convert all two-column section wrappers to full-width stacked ---- */
.about-description-wrap,
.team-wrap,
.plan-wrap,
.clients-wrap,
.services-description-wrap,
.process-wrap,
.technologies-wrap,
.testimonials-wrap {
    flex-direction: column;
    gap: 0;
    padding-top: 0;
    padding-bottom: 50px;
}

/* ---- Left title box → full-width section heading ---- */
.left-title-box {
    width: 100%;
    padding-bottom: 16px;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--color-dark);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
}
.left-title-box h1 {
    font-size: 38px;
    margin: 0;
}
.left-title-box h2 {
    font-size: 32px;
    margin: 0;
}

/* ---- Right content → full-width ---- */
.right-detail-box,
.right-team-detail,
.plan-detail,
.clients-detail,
.services-detail,
.process-detail,
.technologies-detail {
    width: 100%;
}

/* ---- About page — richer text layout ---- */
.about-intro-text {
    max-width: 860px;
    margin-bottom: 35px;
}
.about-intro-text p {
    font-size: 22px;
    line-height: 1.75;
    color: var(--color-medium-alt);
}

/* ---- Team grid — full-width, better images ---- */
.right-team-detail ul {
    grid-template-columns: repeat(5, calc(20% - 0.8%));
}
.right-team-detail ul li a img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
    filter: grayscale(0.2);
    transition: filter 0.3s;
}
.right-team-detail ul li a:hover img {
    filter: none;
}
.right-team-detail ul li a h4 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}
.right-team-detail ul li a p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-medium);
}

/* ---- Clients logo grid — full-width ---- */
.clients-detail ul {
    grid-template-columns: repeat(6, calc(16.66% - 0.84%));
}

/* ---- Testimonials — full-width 3-col grid ---- */
.testimonials {
    width: 100%;
    grid-template-columns: repeat(3, calc(33.3% - 0.7%));
}

/* ---- Services page — better service boxes ---- */
.about-wrap .services-wrap {
    padding: 0;
}
.services-box {
    padding: 30px;
    border: 1px solid var(--color-light);
    background: var(--color-white);
    transition: border-color 0.3s, transform 0.3s;
    margin-bottom: 20px;
}
.services-box:hover {
    border-color: var(--color-dark);
    transform: translateY(-3px);
}

/* ---- Contact page — card grid layout ---- */
.contact-page-inner {
    float: left;
    width: 100%;
    padding: 50px 0;
}
.contact-blocks-grid {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 10px));
    gap: 20px;
    margin-bottom: 30px;
}
.contact-card {
    padding: 32px;
    border: 1px solid var(--color-light);
    transition: border-color 0.3s;
}
.contact-card:hover {
    border-color: var(--color-dark);
}
.contact-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
    padding-bottom: 14px;
    border-bottom: 1px dotted var(--color-border-light);
}
.contact-card .contact-card-desc {
    font-size: 16px;
    color: var(--color-medium);
    margin-bottom: 16px;
}
.contact-card h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 2px;
    color: var(--color-dark);
}
.contact-card h5 {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.contact-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 10px;
    font-style: normal;
    letter-spacing: normal;
}
.contact-card ul li i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: 100px;
    text-align: center;
    font-size: 13px;
    flex-shrink: 0;
}
.contact-card ul li a {
    color: var(--color-dark);
    text-decoration: underline;
    transition: letter-spacing 0.2s;
}
.contact-card ul li a:hover {
    letter-spacing: 0.5px;
}
.contact-social-bar {
    float: left;
    width: 100%;
    padding: 28px 32px;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}
.contact-social-bar h3 {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    flex-shrink: 0;
    margin: 0;
}
.contact-social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}
.contact-social-links a {
    font-size: 15px;
    font-weight: bold;
    color: var(--color-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
    transition: border-color 0.3s, opacity 0.3s;
    letter-spacing: 0.5px;
}
.contact-social-links a:hover {
    opacity: 0.65;
    border-color: transparent;
}

/* ---- Work page — full-width grid ---- */
.work-wrap-main {
    padding: 40px 10px 50px;
}

/* ---- Terms page ---- */
.terms-content {
    max-width: 860px;
    padding: 50px 0;
    float: left;
    width: 100%;
}
.terms-content h4 {
    font-size: 22px;
    font-weight: bold;
    margin-top: 35px;
    margin-bottom: 10px;
    padding-top: 25px;
    border-top: 1px dotted var(--color-border-light);
}
.terms-content h4:first-of-type {
    border-top: none;
    padding-top: 0;
}
.terms-content p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--color-medium-alt);
}

/* ---- Page Banner Responsive ---- */
@media (max-width: 1024px) {
    .page-banner {
        padding: 45px 30px 40px;
    }
    .page-banner h1 {
        font-size: 48px;
    }
    .contact-blocks-grid {
        grid-template-columns: 1fr 1fr;
    }
    .clients-detail ul {
        grid-template-columns: repeat(5, calc(20% - 0.75%));
    }
}
@media (max-width: 768px) {
    .page-banner {
        padding: 35px 20px 30px;
    }
    .page-banner h1 {
        font-size: 38px;
    }
    .page-banner p {
        font-size: 17px;
    }
    .left-title-box h1,
    .left-title-box h2 {
        font-size: 26px;
    }
    .contact-blocks-grid {
        grid-template-columns: 1fr;
    }
    .testimonials {
        grid-template-columns: repeat(2, calc(50% - 0.5%));
    }
    .clients-detail ul {
        grid-template-columns: repeat(4, calc(25% - 0.75%));
    }
    .right-team-detail ul {
        grid-template-columns: repeat(3, calc(33.3% - 0.67%));
    }
}
@media (max-width: 480px) {
    .page-banner h1 {
        font-size: 30px;
    }
    .page-banner {
        padding: 30px 15px 25px;
    }
    .clients-detail ul {
        grid-template-columns: repeat(3, calc(33.3% - 0.5%));
    }
    .right-team-detail ul {
        grid-template-columns: repeat(2, calc(50% - 0.5%));
    }
    .testimonials {
        grid-template-columns: 1fr;
    }
    .contact-social-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .about-intro-text p {
        font-size: 20px;
    }
} 

