:root {
    --primary: #d0aa7c;
    --primary-dark: #b38d61;
    --text-light: #ffffff;
    --overlay: rgba(8, 23, 41, 0.58);
    --bg-dark: #081729;
    --muted: rgba(255, 255, 255, 0.76);
    --line: rgba(255, 255, 255, 0.24);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", sans-serif;
   
    color: var(--text-light);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    border: 0;
    background: none;
    color: inherit;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 23, 41, 0.82) 0%, rgba(8, 23, 41, 0.48) 35%, rgba(8, 23, 41, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.2s ease, transform 6.5s ease;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(8 23 41 / 22%);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.topbar {
    position: relative;
    z-index: 5;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.topbar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: none;
    padding: 14px max(calc((100% - 1180px) / 2), 24px);
    background: rgba(8, 23, 41, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#ongoing-projects,
#completed-projects,
#infra-work,
#other-activities,
.differentiators-section {
    scroll-margin-top: 96px;
}

:root {
    --sticky-nav-height: 0px;
    --section-offset: 18px;
}

html {
    scroll-padding-top: calc(var(--sticky-nav-height) + 6px);
}

.verticals-section,
.happiness-section,
.differentiators-section,
.counter-section,
.projects-showcase-section {
    position: relative;
    z-index: 1;
}

.verticals-section,
.happiness-section,
.differentiators-section,
.counter-section {
    padding-top: calc(14px + var(--sticky-nav-height));
}

#completed-projects,
#other-activities {
    padding-top: calc(14px + var(--sticky-nav-height)) !important;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    width: 36px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.86);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    bottom: 4px;
    width: 6px;
    border-radius: 2px 2px 0 0;
    background: rgba(255, 255, 255, 0.86);
}

.brand-mark::before {
    left: 7px;
    height: 18px;
    box-shadow: 9px -8px 0 0 rgba(255, 255, 255, 0.86), 18px -14px 0 0 rgba(255, 255, 255, 0.86);
}

.brand-mark::after {
    right: 7px;
    height: 24px;
}

.brand-text h1 {
    font-family: "Playfair Display", serif;
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 700;
}

.brand-text span {
    display: block;
    margin-top: 4px;
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle span::before {
    top: -6px;
}

.nav-toggle span::after {
    top: 6px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown > a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    order: 2;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 220px;
    padding: 12px 0;
    list-style: none;
    background: rgba(8, 23, 41, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    z-index: 10;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links a {
    position: relative;
    font-size: 0.98rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s ease;
    background: var(--primary);
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(1180px, calc(100% - 48px));
    min-height: calc(100vh - 110px);
    margin: 0 auto;
    
    align-items: center;
    padding: 100px 0 72px;
}

.hero-panel {
    max-width: 680px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 26px;
}

.hero-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding-top: 8px;
}

.hero-line {
    width: 1px;
    height: 136px;
    background: rgba(255, 255, 255, 0.7);
}

.hero-socials {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-socials a:hover {
    background: rgba(208, 170, 124, 0.2);
    border-color: rgba(208, 170, 124, 0.85);
    transform: translateY(-2px);
}

.hero-copy {
    position: relative;
    min-height: 330px;
}

.copy-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(44px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    pointer-events: none;
}

.copy-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.86);
}

.hero-copy h2 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    line-height: 0.98;
    font-weight: 700;
    max-width: 620px;
    margin-bottom: 24px;
}

.hero-copy p {
    max-width: 560px;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 164px;
    padding: 15px 26px;
    border-radius: 4px;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.84rem;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.slider-controls {
    position: absolute;
    right: clamp(24px, 5vw, 64px);
    bottom: 54px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 18px;
}

.slider-progress {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-dot {
    width: 48px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.slider-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
}

.slider-dot.active::after {
    animation: progressFill 6s linear forwards;
}

.slider-count {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.08em;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f6f3f1;
}

.about-image-wrap {
    min-height: 620px;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 48px;
    overflow: hidden;
}

.about-content-wrap::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -30px;
    width: min(420px, 70%);
    height: min(300px, 55%);
    background: url("../images/aboutsketch.png") no-repeat center bottom;
    background-size: contain;
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 1;
    width: min(100%, 430px);
}

.about-label {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c4a178;
}

.about-content h2 {
    margin-bottom: 28px;
    font-family: "Playfair Display", serif;
    font-size: 30px;
    line-height: 1.18;
    color: #1f466e;
}

.about-content p {
    margin-bottom: 34px;
    font-size: 14px;
    line-height: 2;
    color: #8a9099;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    background: #c4a178;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background 0.25s ease, transform 0.25s ease;
}

.about-btn:hover {
    background: #b38d61;
    transform: translateY(-2px);
}

.verticals-section {
    background: #f9f7f4;
    padding: 80px 0 60px;
}

.verticals-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c4a178;
}

.verticals-section h2 {
    margin-bottom: 40px;
    font-family: "Playfair Display", serif;
    font-size: 2.35rem;
    line-height: 1.1;
    color: #1f466e;
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.vertical-card {
    background: #fff;
    padding: 32px 26px;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(26, 45, 75, 0.08);
    text-align: left;
    min-height: 260px;
    display: flex;
    flex-direction: column;
}
.vertical-card:hover {
background: rgb(255, 220, 181);
}

.vertical-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: rgba(208, 170, 124, 0.12);
    margin-bottom: 22px;
}

.vertical-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #c79d6a;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vertical-card h3 {
    margin-bottom: 14px;
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    line-height: 1.25;
    color: #1c324f;
}

.vertical-card p {
    margin-bottom: auto;
    color: #556176;
    line-height: 1.8;
    font-size: 0.96rem;
}

.vertical-card a {
    margin-top: 20px;
    color: #1f466e;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.vertical-card a span {
    margin-left: 6px;
}

.happiness-section {
    position: relative;
    padding: 82px 0 88px;
    background: url("../images/banner3.png") no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.happiness-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 49, 84, 0.74);
}

.happiness-container {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.happiness-container h2 {
    margin-bottom: 30px;
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 2.7rem;
    line-height: 1.1;
    color: #fff;
}

.happiness-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.happiness-card {
    min-height: 172px;
    padding: 28px 26px 24px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    backdrop-filter: blur(1px);
}

.happiness-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
}

.happiness-icon svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.happiness-card h3 {
    margin-bottom: 12px;
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    line-height: 1.2;
    color: #fff;
}

.happiness-card p {
    max-width: 280px;
    margin: 0 auto;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.74);
}

.differentiators-section {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
}

.diff-left {
    background: #f6f3f1;
    padding: 72px 60px 64px;
}

.diff-left h2 {
    font-weight: 800;
    font-size: 45px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgb(31, 70, 110);
    font-family: "Playfair Display", serif;
}

.diff-left p {
    margin-top: 18px;
    font-size: 1rem;
    color: #2f2f2f;
}

.diff-right {
    background: #174e5f;
    padding: 72px 60px 64px;
    position: relative;
    overflow: hidden;
}

.diff-bottom-media {
    margin-top: 56px;
    width: min(520px, 100%);
}

.diff-top-media {
    width: min(560px, 100%);
    margin-left: auto;
}

.diff-frame {
    position: relative;
}

.diff-frame::before {
    content: "";
    position: absolute;
    left: -14px;
    top: -14px;
    width: 100%;
    height: 100%;
    background: #c4a178;
    z-index: 0;
}

.diff-frame img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.diff-card {
    position: relative;
    margin-top: 54px;
    width: min(560px, 100%);
    margin-left: auto;
    background: #bfa56b;
    padding: 30px 34px;
    color: #fff;
}

.diff-card::after {
    content: "/////";
    position: absolute;
    right: 18px;
    top: 16px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.9);
}

.diff-card ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 6px;
}

.diff-card li {
    font-size: 0.92rem;
    line-height: 1.55;
}

.diff-highlight {
    margin-top: 18px;
    text-align: center;
    font-size: 0.98rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
}

.site-footer {
    background: linear-gradient(90deg, #071b31 0%, #0a2441 52%, #071b31 100%);
    border-top: 1px solid rgba(196, 161, 120, 0.2);
}

.site-footer-container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    padding: 60px 0 60px;
}

.footer-brand-block {
    padding-right: 26px;
}

.footer-brand img {
    width: 70px;
    height: auto;
    display: block;
    margin-bottom: 18px;
}

.footer-brand-block p {
    margin: 0 0 18px;
    max-width: 250px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.74);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(196, 161, 120, 0.48);
    display: grid;
    place-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-socials a:hover {
    background: rgba(196, 161, 120, 0.18);
    border-color: #c4a178;
    transform: translateY(-2px);
}

.footer-links-block {
    display: grid;
    grid-template-columns: 1.05fr 1.3fr 1fr 1fr 0.2fr;
}

.footer-column {
    padding: 0 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-column h3 {
    margin-bottom: 16px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c4a178;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer-column li,
.footer-column a,
.footer-column span {
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
}

.footer-column a:hover {
    color: #fff;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-icon {
    min-width: 16px;
    color: #c4a178;
    line-height: 1.4;
}

.counter-section {
    background: linear-gradient(90deg, #081d33 0%, #0b2742 55%, #081d33 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.counter-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.counter-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 54px 18px;
    min-height: 88px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.counter-item:first-child {
    border-left: 0;
}

.counter-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.counter-icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #c4a178;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.counter-text {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.counter-number {
    font-weight: 800;
    font-size: 25px;
    line-height: 1;
    color: #c4a178;
}

.counter-label {
    font-size: 0.82rem;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.78);
}

.projects-showcase-section {
    background: #f7f4f2;
    padding: 78px 0 86px;
}

.projects-showcase-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.projects-showcase-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.projects-showcase-head h2 {
    margin-top: 14px;
    font-family: "Playfair Display", serif;
    font-size: 30px;
    line-height: 1.08;
    color: #1f466e;
}

.projects-showcase-tools {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.projects-view-all {
    color: #c4a178;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.projects-view-all span {
    margin-left: 6px;
}

.projects-nav {
    display: flex;
    gap: 10px;
}

.projects-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(31, 70, 110, 0.16);
    background: #fff;
    color: #1f466e;
    font-size: 1rem;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.projects-nav-btn:hover:not(:disabled) {
    background: #1f466e;
    color: #fff;
    border-color: #1f466e;
}

.projects-nav-btn:disabled {
    opacity: 0.45;
    cursor: default;
}

.projects-slider {
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.projects-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease;
    will-change: transform;
}

.projects-slider.is-dragging {
    cursor: grabbing;
}

.projects-slider.is-dragging .project-slide-card img {
    pointer-events: none;
}

.project-slide-card {
    position: relative;
    flex: 0 0 calc((100% - 40px) / 3);
    min-height: 350px;
    overflow: hidden;
    background: #0f243d;
}

.project-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.project-slide-card:hover img {
    transform: scale(1.05);
}

.project-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 24, 41, 0.14) 0%, rgba(10, 24, 41, 0.3) 45%, rgba(10, 24, 41, 0.84) 100%);
}

.project-slide-content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    padding: 0 22px 20px;
}

.project-slide-copy h3 {
    margin-bottom: 6px;
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    line-height: 1.08;
    color: #fff;
}

.project-slide-copy p {
    margin: 0;
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.82);
}

.project-slide-number {
    font-family: "Playfair Display", serif;
    font-size: 4.3rem;
    line-height: 0.9;
    color: rgba(255, 255, 255, 0.34);
}

@keyframes progressFill {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@media (max-width: 980px) {
    .topbar {
        position: relative;
        width: min(100% - 32px, 1180px);
        padding: 20px 0;
        z-index: 50;
    }

    .topbar.is-sticky {
        padding: 14px max(calc((100% - 1180px) / 2), 16px);
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
        order: 2;
    }

    .topbar.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        opacity: 1;
        visibility: visible;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        z-index: 55;
    }

    .topbar::before {
        opacity: 0;
        visibility: hidden;
    }

    .topbar > nav {
        order: 3;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: min(52vw, 320px);
        min-height: 100vh;
        padding: 92px 24px 28px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        background: linear-gradient(180deg, rgba(8, 23, 41, 0.98) 0%, rgba(10, 28, 49, 0.98) 100%);
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0 18px 18px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0.3s ease;
        backdrop-filter: blur(14px);
        box-shadow: 12px 0 36px rgba(0, 0, 0, 0.28);
        z-index: 60;
        overflow-y: auto;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown > a {
        justify-content: space-between;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        min-width: 0;
        margin-top: 10px;
        padding: 8px 0 0 14px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown-menu a {
        padding: 8px 0;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.72);
        background: transparent;
    }

    .dropdown-menu a:hover {
        background: transparent;
        color: #fff;
    }

    .topbar.menu-open .nav-links {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .hero-content {
        width: min(100% - 32px, 1180px);
        padding-top: 28px;
    }

    .hero-panel {
        grid-template-columns: 1fr;
    }

    .hero-side {
        flex-direction: row;
        justify-content: flex-start;
    }

    .hero-line {
        width: 92px;
        height: 1px;
    }

    .hero-socials {
        flex-direction: row;
    }

    .slider-controls {
        left: 16px;
        right: 16px;
        bottom: 24px;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-image-wrap {
        min-height: 420px;
    }

    .about-content-wrap {
        padding: 56px 32px;
    }

    .verticals-section {
        padding: 70px 0 52px;
    }

    .verticals-container {
        width: min(100% - 32px, 1180px);
    }

    .verticals-section h2 {
        text-align: center;
        font-size: 2.05rem;
    }

    .verticals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vertical-card {
        min-height: 240px;
    }

    .happiness-container {
        width: min(100% - 32px, 1180px);
    }

    .happiness-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .differentiators-section {
        grid-template-columns: 1fr;
    }

    .diff-left,
    .diff-right {
        padding: 56px 32px;
    }

    .diff-top-media {
        margin-left: 0;
    }

    .diff-card {
        margin-left: 0;
        margin-top: 40px;
    }

    .site-footer-container {
        width: min(100% - 32px, 1280px);
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 34px 0 30px;
    }

    .footer-brand-block {
        padding-right: 0;
    }

    .footer-links-block {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 0;
    }

    .counter-container {
        width: min(100% - 32px, 1180px);
    }

    .counter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .counter-item {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .counter-item:nth-child(-n + 2) {
        border-top: 0;
    }

    .projects-showcase-container {
        width: min(100% - 32px, 1180px);
    }

    .projects-showcase-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .project-slide-card {
        flex-basis: calc((100% - 20px) / 2);
        min-height: 460px;
    }
}

@media (max-width: 640px) {
    .brand-text h1 {
        font-size: 1.5rem;
    }

    .brand-text span {
        font-size: 0.63rem;
        letter-spacing: 0.18em;
    }

    .hero {
        min-height: 92vh;
    }

    .hero-content {
        min-height: calc(92vh - 90px);
        padding-bottom: 110px;
    }

    .hero-copy {
        min-height: 390px;
    }

    .hero-copy h2 {
        font-size: clamp(2.2rem, 11vw, 3.45rem);
    }

    .hero-copy p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .hero-actions {
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        min-width: 0;
    }

    .slider-dot {
        width: 34px;
    }

    .about-image-wrap {
        min-height: 300px;
    }

    .about-content-wrap {
        padding: 44px 20px;
    }

    .about-content h2 {
        font-size: 2.25rem;
    }

    .about-content p {
        line-height: 1.85;
    }

    .verticals-section {
        padding: 56px 0 44px;
    }

    .verticals-container {
        width: min(100% - 24px, 1180px);
    }

    .verticals-section h2 {
        text-align: center;
        font-size: 1.85rem;
        margin-bottom: 28px;
    }

    .verticals-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .vertical-card {
        padding: 26px 20px;
        border-radius: 20px;
        min-height: auto;
    }

    .vertical-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 18px;
    }

    .happiness-section {
        padding: 56px 0;
    }

    .happiness-container h2 {
        font-size: 2rem;
    }

    .happiness-grid {
        grid-template-columns: 1fr;
    }

    .happiness-card {
        min-height: auto;
        padding: 24px 20px;
    }

    .diff-left,
    .diff-right {
        padding: 44px 20px;
    }

    .diff-left h2 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .diff-left p {
        font-size: 0.9rem;
        margin-bottom: 32px;
    }

    .diff-bottom-media {
        margin-top: 32px;
        width: 100%;
    }

    .diff-frame img {
        height: 220px;
    }

    .diff-top-media {
        width: 100%;
        margin-left: 0;
        margin-bottom: 24px;
    }

    .diff-card {
        padding: 24px 22px;
        margin-top: 24px;
        margin-left: 0;
        width: 100%;
    }

    .diff-card ul {
        padding-left: 16px;
        gap: 8px;
    }

    .diff-card li {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .diff-highlight {
        margin-top: 16px;
        font-size: 0.9rem;
    }

    .site-footer-container {
        width: min(100% - 24px, 1280px);
    }

    .footer-links-block {
        grid-template-columns: 1fr;
    }

    .footer-column {
        padding: 0 0 18px;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-column:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .counter-grid {
        grid-template-columns: 1fr;
    }

    .counter-item {
        justify-content: flex-start;
        padding: 16px 0;
    }

    .counter-item:nth-child(-n + 2) {
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .counter-item:first-child {
        border-top: 0;
    }
    
    .projects-showcase-section {
        padding: 58px 0 64px;
    }

    .projects-showcase-tools {
        width: 100%;
        justify-content: space-between;
    }

    .projects-view-all {
        letter-spacing: 0.12em;
    }

    .project-slide-card {
        flex-basis: 100%;
        min-height: 420px;
    }

    .project-slide-content {
        padding: 0 16px 16px;
    }

    .project-slide-copy h3 {
        font-size: 1.35rem;
    }

    .project-slide-number {
        font-size: 3.4rem;
    }

    
}

.vision{
    color: rgb(31, 70, 110);
    font-family: "Playfair Display", serif;
}