/* Basic reset & variables */
:root {
    --bg: #ffffff;
    --text: #0b0b0b;
    --muted: #666;
    --accent: #111827;
    --frosty-bg: rgba(255, 255, 255, 0.55);
    --max-width: 1200px;
    --container-padding: 24px;
    --radius: 12px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    font-family: "Syne", "Ovo", sans-serif;
    color: #333;
    line-height: 2;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    font-size: 16px;
}




/* layout helpers */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.mw-650 {
    max-width: 650px;
}

.pt-120 {
    padding-top: 120px
}

.pb-0 {
    padding-bottom: 0
}



.breadcrumb-wrapper {
    padding: 16px 0 12px 0;
    margin-top: 20px;
    padding: 20px;

}



.breadcrumb-nav {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 40px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 18px;
    margin: 0;
    padding: 0;
    font-size: 17px;
    color: #919191;
}

.breadcrumb-list li a {
    color: #212121;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-list li a:hover {
    color: #FF7448;
    /* iTNT orange accent or your brand color */
}

.breadcrumb-list .current-page {
    color: #919191;
    font-weight: 500;
}



.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #FF7448;
    /* iTNT orange accent */
    color: white;
    font-size: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}




/* NAV */
/* .navbar {
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(12px) saturate(140%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.35));
    border-bottom: 1px solid rgba(12, 12, 12, 0.04);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px var(--container-padding);
} */



/* TOP NAVBAR */

/* .top-navbar {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1.25rem;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.052);
    height: 10vh;
}

.nav-back {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    padding: 0.45rem 0.95rem;
    border-radius: 4px;

    transition: background 0.2s ease;
}

.nav-back:hover {
    background-color: #fff;
    color: #000;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);

}

.nav-logo {
    height: 40px;
    width: auto;
    border-radius: 4px;
    object-fit: contain;
    cursor: pointer;
}

.nav-logo:hover {
    background-color: white;

} */





/* ---------- 5. Navbar ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    width: 78%;
    max-width: 1400px;
    margin: 1rem auto;
    border-radius: 1rem;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.252);
    backdrop-filter: blur(28px) saturate(180%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    transition: background .3s, box-shadow .3s, transform .3s;
}

.navbar.transparent {
    background: transparent;
    box-shadow: none;
}

.container-full-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.brand img {
    height: 56px;
}

/* Hamburger */
#menu-button {
    display: none;
    position: relative;
    width: 32px;
    height: 32px;
    border: 0;
    background: none;
    cursor: pointer;

}

#menu-button span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: #333;
    transition: 0.3s;
    transform: translateY(-50%);
}

#menu-button span::before,
#menu-button span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

#menu-button span::before {
    top: -10px;
}

#menu-button span::after {
    top: 10px;
}

/* Open state transformation */
#menu-button.open span {
    background: transparent;
}

#menu-button.open span::before {
    top: 0;
    transform: rotate(45deg);
}

#menu-button.open span::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Nav links */
.nav-menu {
    display: flex;
    gap: 1.75rem;
    align-items: center;
    font-weight: 500;
}

.nav-link {
    position: relative;
    padding: .25rem 0;
    transition: color .3s;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #FF7448 0%, #FF31D9 50%, #9845FF 100%);
    transition: width .3s;
}

.nav-link:hover {
    color: #000;
    font-weight: 600;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile nav */
@media(max-width:768px) {
    .navbar {
        padding: .75rem 1rem;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + .75rem);
        right: 0;
        background: rgba(255, 255, 255, .95);
        border-radius: .75rem;
        box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
        display: none;
    }

    #nav-menu.open {
        display: flex;
    }

    #menu-button {
        display: block;
    }
}




/* brand */
.brand {
    display: flex;
    align-items: center;
    text-decoration: none
}

.brand-logo {
    display: block;
    border-radius: 8px
}

/* nav menu (desktop) */
.navmenu {
    display: flex;
    align-items: center;
    gap: 12px
}

.nav-left {
    display: flex;
    gap: 12px;
    align-items: center
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 6px;
    font-weight: 500
}

.nav-link:hover {
    background: rgba(0, 0, 0, 0.03)
}

/* dropdowns */
.dropdown {
    position: relative
}

.dropdown-toggle {
    background: transparent;
    border: 0;
    font: inherit;
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 6px
}

.dropdown-list {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    min-width: 180px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(28, 30, 35, 0.08);
    list-style: none;
    padding: 8px 0;
    display: none;
    margin: 0;
    transform-origin: top center;
    opacity: 0;
    transition: all .18s ease;
}

.dropdown.open .dropdown-list {
    display: block;
    opacity: 1;
    transform: translateY(0)
}

.dropdown-list li {
    padding: 0
}

.dropdown-link {
    display: block;
    padding: 8px 14px;
    color: var(--text);
    text-decoration: none
}

.dropdown-link:hover {
    background: rgba(0, 0, 0, 0.04)
}

/* menu button (mobile) */
.menu-button {
    display: none;
    border: 0;
    background: transparent;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer
}

.menu-icon {
    display: inline-block;
    width: 26px;
    height: 2px;
    background: #111;
    position: relative
}

.menu-icon::after,
.menu-icon::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 2px;
    background: #111;
    left: 0
}

.menu-icon::before {
    top: -8px
}

.menu-icon::after {
    top: 8px
}

/* mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    background: white;
    z-index: 50;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06)
}

.mobile-link {
    display: block;
    padding: 10px 0;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.03)
}

.mobile-link:last-child {
    border-bottom: 0
}

/* HERO */
.hero {
    padding-bottom: 48px
}

.cs-cover-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin-bottom: 24px
}

/* title */
.cs-title {
    font-size: 44px;
    line-height: 1.5;
    margin: 0 0 20px;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #222;
    animation: shimmer-text 2s infinite linear;
    background: linear-gradient(58deg, #FF7448 0%, #FF31D9 50%, #9845FF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* overview grid */
.cs-overview.grid {
    display: grid;
    gap: 12px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 36px;
    padding-top: 24px;
    padding-bottom: 24px
}

.caption.all-caps {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted)
}

/* layout with sticky sidebar */
.container-with-sidebar .two-column {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 0px 48px;
}

.cs-sticky-sidebar {
    position: sticky;
    top: 96px;
    align-self: start;
    flex: 0 0 220px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
}

.cs-side-nav {
    display: block;
    padding: 8px 10px;
    color: var(--muted);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600
}

.cs-side-nav.active {
    background: rgba(0, 0, 0, 0.04);
    color: var(--accent)
}





/* content column */
.content-column {
    flex: 1;
    max-width: 760px
}

.cs-offset-section {
    /* margin-bottom: 36px;
    padding-top: 20px; */

}

.mw-760 h2 {
    margin-top: 0
}


/* a tag link  */

.body-text,
p,
a {
    text-decoration: none;
}

.highlight a {
    /* color: #111111ae; */

}

.highlight a:hover {
    text-decoration: none;
    cursor: pointer;
    color: #FF31D9;
}



.five-why-box h4 span {
    font-family: 'Poppins';
    font-weight: 600;

}



.mw-760 h3 span {
    font-family: 'Poppins';
    font-weight: 600;

}





/* grids used for images + text */
.user-impact-grid {
    /* display: grid; */
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
    margin-bottom: 20px
}

.user-impact-grid figure {
    margin: 0
}

.user-impact-grid img {
    width: 80%;
    height: auto;
    display: block;
    border-radius: 8px
}

.problem-text {
    padding: 6px 0
}

/* images */
.cs-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    /* margin: 18px 0 */
}



/* divider */
.divider {
    height: 1px;
    border-radius: 2px;
    border-bottom: 1px solid #e0e0e0;
    margin-top: 30px;
    margin-bottom: 30px
}

/* more to explore */
.grid-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}

.card-expertise-light {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(12, 12, 12, 0.04);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(250, 250, 250, 1))
}

.card-expertise-light img {
    max-width: 160px;
    border-radius: 8px
}


/* carousels */

.persona-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /* space between arrows and carousel */
    max-width: 750px;
    margin: auto;
}

.persona-carousel {
    overflow: hidden;
    flex: 1;
    max-width: 650px;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;

}

.persona-card {
    min-width: 100%;
    display: flex;
    justify-content: center;
}

.persona-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.carousel-btn {
    background: none;
    color: #121212;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
    padding: 10px;
    transition: background 0.2s;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}



@media (max-width: 767px) {

    .persona-carousel-wrapper {

        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
    }

    .persona-carousel img,
    .persona-carousel img {
        width: 80% !important;
        height: auto !important;
        display: block !important;
    }




    .persona-carousel-wrapper {
        position: relative !important;
        gap: 0 !important;
        padding: 0 !important;
    }

    .carousel-btn {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 5 !important;
        background: rgba(0, 0, 0, 0.4) !important;
        color: #fff !important;
        width: 36px !important;
        height: 36px !important;
        line-height: 36px !important;
        border-radius: 9999px !important;
        padding: 0 !important;
    }

    .carousel-btn.prev {
        left: 12px !important;
    }

    .carousel-btn.next {
        right: 12px !important;
    }





    .small-caption {
        font-size: 12px;
    }
}


/* stakeholder mapping */


.matrix {
    position: relative;
    width: 90%;
    max-width: 880px;
    aspect-ratio: 16/9;
    background: #fff;
    border: 1px solid #e6e8ec;
    border-radius: 8px;
    margin: 24px auto;
}

.matrix::before,
.matrix::after {
    content: "";
    position: absolute;
    background: #e9ebf0;
}

.matrix::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-1px);
}

.matrix::after {
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    transform: translateY(-1px);
    background: repeating-linear-gradient(90deg, #e9ebf0 0 8px, transparent 8px 14px);
}

.axis {
    position: absolute;
    color: #6b7280;
    font-size: 12px;
    user-select: none;
}

.axis-y {
    left: -20px;
    top: 10px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.axis-x {
    right: 10px;
    bottom: -22px;
}

.card {
    position: absolute;
    left: calc(var(--x, 50) * 1%);
    top: calc(var(--y, 50) * 1%);
    transform: translate(-50%, -50%) rotate(-2deg);
    min-width: 120px;
    max-width: 170px;
    padding: 14px 12px;
    background: #fff59e;
    color: #2d2a2a;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    text-align: center;
    line-height: 1.25;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, .08);
}

.card:nth-of-type(odd) {
    transform: translate(-50%, -50%) rotate(1.5deg);
}

.card.internal {
    background: #e3f2ff;
    border: 1px solid #b7dafc;
}

@media (max-width: 560px) {
    .card {
        min-width: 104px;
        padding: 10px 8px;
        font-size: 13px;
    }
}














/* Before vs After */

.ia-slider {
    position: relative;
    max-width: 960px;
    margin: 24px auto;
    user-select: none;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.ia-image {
    display: block;
    width: 100%;
    pointer-events: none;
}

.ia-image.after {
    position: absolute;
    inset: 0;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.08s linear;
}

.compare-handle {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.compare-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(-1px);
}

.compare-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: grid;
    place-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25), inset 0 0 0 6px rgba(255, 255, 255, 0.06);
}

.compare-knob svg {
    width: 18px;
    height: 18px;
}

.slider-input {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    cursor: ew-resize;
    outline: none;
}

.slider-input::-webkit-slider-thumb,
.slider-input::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1px;
    height: 100%;
    background: transparent;
    border: none;
}


.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    width: 1px;
    height: 100%;
}

.slider-input::-moz-range-thumb {
    background: transparent;
    border: none;
    width: 1px;
    height: 100%;
}

.slider-input::-ms-thumb {
    background: transparent;
    border: none;
    width: 1px;
    height: 100%;
}








/* sitemap, tree diagram */
/* 
.ia-tree ul {
  position: relative;
  list-style: none;
  padding-left: 1.25rem;
  margin-left: .25rem;
}
.ia-tree ul ul {
  margin-left: .75rem;
}
.ia-tree li {
  position: relative;
  margin: 0;
  padding: .20rem 0 .20rem 0.9rem;
}
.ia-tree li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.4rem;
  width: 1px;
  height: 100%;
  background: #e2e2e2;
}
.ia-tree li::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0.4rem;
  width: .8rem;
  height: 1px;
  background: #e2e2e2;
}
.ia-tree li:last-child::before {
  height: 1rem; 
}
.ia-tree span {
  font-weight: 600;
}
.small-caption {
  font-size: 12px;
  opacity: .75;
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.flow-block {
  margin: 12px 0 16px;
}
.flow-block ol {
  margin: 6px 0 0 1.25rem;
} */


.ia-tree {
    background-color: #fbfbfb;
    padding: 40px 20px;
    border-radius: 10px;
    margin: 0;
}

.ia-tree ul {
    position: relative;
    list-style: none;
    padding-left: 0.8rem;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.25;
}

.ia-tree ul ul {
    margin-left: 0.5rem;
}

.ia-tree li {
    position: relative;
    margin: 0;
    padding: 0.15rem 0 0.15rem 0.7rem;
}

.ia-tree li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0.3rem;
    width: 1.2px;
    height: 100%;
    background: #e2e2e2;
}

.ia-tree li::after {
    content: "";
    position: absolute;
    top: 0.65rem;
    left: 0.3rem;
    width: 0.6rem;
    height: 1px;
    background: #e2e2e2;
}

.ia-tree li:last-child::before {
    height: 0.65rem;
}

.ia-tree span {
    font-weight: 600;
    font-size: 0.9rem;
}

.ia-tree>ul:last-child,
.ia-tree ul:last-child li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}





/* user flow */
/* ==================== Global Styles ==================== */
.flow-block {
    margin-bottom: 30px;
}

.small-caption {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.flow-text {
    font: 14px "Inter", sans-serif;
    fill: #2b2b2b;
    text-anchor: middle;
    dominant-baseline: middle;
}

.start {
    fill: #c8e6c9;
    stroke: #2e7d32;
    stroke-width: 2;
    rx: 20;
    ry: 20;
}

.action {
    fill: #bbdefb;
    stroke: #1565c0;
    stroke-width: 2;
    rx: 8;
    ry: 8;
}

.decision {
    fill: #ffe0b2;
    stroke: #ef6c00;
    stroke-width: 2;
}

.end {
    fill: #d1c4e9;
    stroke: #4527a0;
    stroke-width: 2;
    rx: 20;
    ry: 20;
}

.arrow {
    stroke: #424242;
    stroke-width: 2;
    fill: none;
    marker-end: url(#arrowhead);
}

/* Make all SVG flows responsive */
.flow-block+svg {
    width: 100%;
    /* full width of container */
    max-width: 800px;
    /* optional max width */
    height: auto;
    /* maintain aspect ratio */
    display: block;
    margin: 0 auto 30px;
    /* center & spacing */
}

/* Optional: reduce text slightly on small screens */
@media (max-width: 600px) {
    .flow-text {
        font-size: 12px;
    }

    .start,
    .action,
    .end {
        rx: 15px;
        /* slightly smaller rounded corners */
        ry: 15px;
    }
}






/* carousel */

.carousel {
    max-width: 760px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.slides img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slides img.active {
    opacity: 1;
    position: relative;
}

.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #333;
}







/* footer */
.footer {
    background: #fafafa;
    padding: 28px 0;
    margin-top: 40px
}

.footer-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start
}

.footer-content {
    display: flex;
    gap: 40px;
    flex: 1;
    flex-wrap: wrap
}

.footer-block {
    min-width: 160px
}

.footer-title-small {
    font-weight: 700;
    margin-bottom: 8px
}

.footer-link {
    display: block;
    color: var(--text);
    text-decoration: none;
    padding: 6px 0
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px
}

.social-icons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px
}

.social-icon {
    height: 18px
}

/* responsiveness */
@media (max-width: 980px) {
    .nav-left {
        display: none
    }

    .menu-button {
        display: block
    }

    .mobile-menu {
        display: none
    }

    .container-with-sidebar .two-column {
        flex-direction: column
    }

    .cs-sticky-sidebar {
        position: relative;
        top: 0;
        order: -1;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px
    }

    .cs-side-nav {
        padding: 8px
    }

    .user-impact-grid {
        grid-template-columns: 1fr
    }

    .grid-services {
        grid-template-columns: 1fr
    }
}

/* small screens */
@media (max-width: 560px) {
    .cs-title {
        font-size: 28px
    }

    .menu-icon,
    .menu-icon::before,
    .menu-icon::after {
        background: #111
    }
}



/* ---------- 12. Footer ---------- */
.footer-holder {
    background: #f9f9f9;
    border-radius: 1rem;
    padding: 2rem 1rem;
}

.footer-div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.social-wrapper {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 32px;
    height: 32px;
}

.reserved-rights {
    font-size: .875rem;
    color: #666;
}