/* ========================================================================
   CSS RESET & BASE STYLES
   ======================================================================== */

:root {
  --bg-color: #FDFCF9;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline
}

audio:not([controls]) {
  display: none;
  height: 0
}

[hidden],
template {
  display: none
}

a {
  background-color: transparent
}

a:active,
a:hover {
  outline: 0
}

abbr[title] {
  border-bottom: 1px dotted
}

b,
strong {
  font-weight: bold
}

dfn {
  font-style: italic
}

h1 {
  font-size: 2em;
  margin: .67em 0
}

mark {
  background: #ff0;
  color: #000
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sup {
  top: -0.5em
}

sub {
  bottom: -0.25em
}

img {
  border: 0
}

svg:not(:root) {
  overflow: hidden
}

figure {
  margin: 1em 40px
}

hr {
  box-sizing: content-box;
  height: 0
}

pre {
  overflow: auto
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0
}

button {
  overflow: visible
}

button,
select {
  text-transform: none
}

button,
html input[type="button"],
input[type="reset"] {
  -webkit-appearance: button;
  cursor: pointer
}

button[disabled],
html input[disabled] {
  cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0
}

input {
  line-height: normal
}

input[type='checkbox'],
input[type='radio'] {
  box-sizing: border-box;
  padding: 0
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  height: auto
}

input[type='search'] {
  -webkit-appearance: none
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: .35em .625em .75em
}

legend {
  border: 0;
  padding: 0
}

textarea {
  overflow: auto
}

optgroup {
  font-weight: bold
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

td,
th {
  padding: 0
}

/* ========================================================================
   ICON FONT CLASSES
   ======================================================================== */

.my-icon {
  color: #000000;
  font-size: 24px;
  margin-left: 8px;
}



.menu-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
}

.menu-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.menu-button {
  display: none;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-button .menu-icon {
  width: 24px;
  height: 24px;
}

/* ========================================================================
   BOX SIZING & GLOBAL ELEMENTS
   ======================================================================== */

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

html {
  height: 100%
}

body {
  margin: 0;
  min-height: 100%;
  background-color: var(--bg-color);
  font-family: Albert Sans, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #1b1b1b;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block
}


.link-block {
  max-width: 100%;
  display: inline-block
}

.btn {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898EC;
  color: white;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0
}

input.btn {
  -webkit-appearance: button
}


/* ========================================================================
   ZOOM IMAGE STYLES
   ======================================================================== */



.zoomable-image {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.zoomable-image:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.zoom-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #FDFCF9;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.zoom-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  user-select: none;
  will-change: transform;
  touch-action: none;
}

.zoom-modal-content.zoomed {
  transform: scale(2) translate(0, 0);
  cursor: grab;
  transition: none;
}

.zoom-modal-content.zoomed:active {
  cursor: grabbing;
}

.zoom-modal-content.dragging {
  transition: none;
}

.zoom-modal img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.zoom-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #333;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: opacity 0.3s ease;
}

.zoom-close:hover {
  opacity: 0.7;
}

.zoom-instructions {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #333;
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
  background: rgba(253, 252, 249, 0.9);
  padding: 10px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .zoom-modal-content.zoomed {
    transform: scale(1.5);
  }

  .zoom-close {
    font-size: 30px;
    top: 15px;
    right: 20px;
  }

  .zoom-instructions {
    font-size: 12px;
    padding: 8px 16px;
  }
}


/* ========================================================================
   TYPOGRAPHY
   ======================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-bottom: 10px
}

h1 {
  font-size: 38px;
  line-height: 44px;
  margin-top: 20px
}

h2 {
  font-size: 32px;
  line-height: 36px;
  margin-top: 20px
}

h3 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px
}

h4 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px
}

h5 {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px
}

h6 {
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px
}

p {
  margin-top: 0;
  margin-bottom: 10px
}

ul,
ol {
  margin-top: 0px;
  margin-bottom: 10px;
  padding-left: 40px
}

/* ========================================================================
   LAYOUT & CONTAINERS
   ======================================================================== */

.page-wrapper {
  margin-right: 5%;
  margin-left: 5%;
}

.main-wrapper {
  overflow: hidden;
}

.main-wrapper-small {
  display: block;
  margin-right: 20%;
  margin-left: 20%;
  width: 60%;
}

.container-large {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.inner-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


/* Desktop (1280px - 1535px) */
@media screen and (min-width: 1280px) and (max-width: 1535px) {
  .main-wrapper-small {
    margin-right: 20%;
    margin-left: 20%;
    width: 60%;
  }
}

/* Laptop (1024px - 1279px) */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .main-wrapper-small {
    margin-right: 12%;
    margin-left: 12%;
    width: 76%;
  }
}

/* Tablet (960px - 1023px) */
@media screen and (min-width: 960px) and (max-width: 1023px) {
  .main-wrapper-small {
    margin-right: 8%;
    margin-left: 8%;
    width: 84%;
  }
}

/* Mobile Landscape (768px - 959px) */
@media screen and (min-width: 768px) and (max-width: 959px) {
  .main-wrapper-small {
    margin-right: 4%;
    margin-left: 4%;
    width: 92%;
  }
}

/* Mobile Portrait (640px - 767px) */
@media screen and (min-width: 640px) and (max-width: 767px) {
  .main-wrapper-small {
    margin-right: 2%;
    margin-left: 2%;
    width: 96%;
  }
}

/* Small Mobile (480px - 639px) */
@media screen and (min-width: 480px) and (max-width: 639px) {
  .main-wrapper-small {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
  }
}

/* Extra Small Mobile (up to 479px) */
@media screen and (max-width: 479px) {
  .main-wrapper-small {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
  }
}




/* ========================================================================
   NAVIGATION
   ======================================================================== */

/* Navbar - custom (no Webflow) */
.navbar {
  position: relative;
  z-index: 1000
}

.navbar:before,
.navbar:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2
}

.navbar:after {
  clear: both
}

.navbar-logo {
  position: relative;
  float: left;
  text-decoration: none;
  color: #333333;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
}

.navbar-logo img {
  height: 36px;
  width: auto;
  max-width: 120px;
  display: block;
  object-fit: contain;
}

.navbar-menu {
  position: relative;
  float: right
}

/* Navbar matches menu background when open - no blur behind */
.navbar.nav-menu-open,
.navbar.nav-menu-open.sticky {
  background-color: var(--bg-color);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Mobile menu open state - full width overlay */
.navbar.nav-menu-open .navbar-menu {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--bg-color);
  text-align: left;
  overflow-y: auto;
  padding: 0;
  z-index: 999;
}

.navbar.nav-menu-open .navbar-menu .link {
  width: 100%;
  padding: 16px 24px;
  box-sizing: border-box;
}

.menu-button {
  position: relative;
  float: right;
  padding: 18px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  background: transparent;
}

.menu-button:focus {
  outline: 0
}

.menu-button.menu-open {
  background-color: var(--bg-color);
  color: #1b1b1b
}

@media screen and (max-width: 960px) {
  .navbar .navbar-menu {
    display: none
  }

  .navbar .menu-button {
    display: block
  }

  /* No blur, no transition on navbar (mobile & tablet) */
  .navbar,
  .navbar.sticky {
    background-color: var(--bg-color);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
  }
}

@media screen and (max-width: 768px) {
  .navbar .navbar-menu {
    display: none
  }

  .navbar .menu-button {
    display: block
  }

}

/* Tablet (769px - 960px) - same navbar/menu styling when hamburger open */
@media screen and (min-width: 769px) and (max-width: 960px) {
  .navbar.nav-menu-open .navbar-menu {
    top: 80px;
  }

  .navbar.nav-menu-open,
  .navbar.nav-menu-open.sticky {
    background-color: var(--bg-color);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

@media screen and (max-width: 480px) {
  .navbar .navbar-menu {
    display: none
  }

  .navbar .menu-button {
    display: block
  }
}



/* ========================================================================
   CUSTOM STYLES
   ======================================================================== */

body {
  font-family: Albert Sans, sans-serif;
  color: #1b1b1b;
  font-size: 20px;
  line-height: 1.35;
  padding-top: 100px;
}

h1 {
  font-family: Albert Sans, sans-serif;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 74px;
  line-height: 1;
  font-weight: 600;
}

h2 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 55px;
  line-height: 1;
  font-weight: 600;
}

h3 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 32px;
  line-height: 1;
  font-weight: 600;
}

h4 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
}

h5 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

h6 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

p {
  margin-bottom: 0px;
}

a {
  color: #000;
  text-decoration: none;
}

ul {
  margin-top: 8px;
  margin-bottom: 32px;
  padding-left: 20px;
  font-size: 18px;
}

li {
  margin-bottom: 4px;
}

img {
  display: inline-block;
  max-width: 100%;
}

blockquote {
  margin-bottom: 10px;
  padding: 12px 20px;
  border-left: 5px solid #e2e2e2;
  font-size: 20px;
  line-height: 1.5;
}

figure {
  margin-top: 32px;
  margin-bottom: 32px;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

figcaption {
  margin-top: 5px;
  text-align: center
}


/* ========================================================================
   MAX-WIDTH
======================================================================== */

.max-width-full {
  width: 100%;
  max-width: none;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 1280px;
}

.max-width-xlarge {
  width: 100%;
  max-width: 1024px;
}

.max-width-large {
  width: 100%;
  max-width: 768px;
}

.max-width-medium {
  width: 100%;
}

.max-width-small {
  width: 100%;
}

.max-width-xsmall {
  width: 100%;
  max-width: 256px;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 192px;
}


/* ========================================================================
  MARGIN
======================================================================== */

.margin-0 {
  margin: 0px;
}

.margin-tiny {
  margin: 2px;
}

.margin-xxsmall {
  margin: 4px;
}

.margin-xsmall {
  margin: 8px;
}

.margin-small {
  margin: 16px;
}

.margin-medium {
  margin: 32px;
}

.margin-large {
  margin: 48px;
}

.margin-xlarge {
  margin: 64px;
}

.margin-xxlarge {
  margin: 80px;
}

.margin-huge {
  margin: 96px;
}

.margin-xhuge {
  margin: 128px;
}

.margin-xxhuge {
  margin: 192px;
}

.margin-top {
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.margin-bottom {
  margin: 0px 0px 16px;
}

.margin-bottom.margin-small {
  margin-bottom: 20px;
}

.margin-left {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
}

.margin-right {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.margin-vertical {
  margin-right: 0px;
  margin-left: 0px;
}

.margin-horizontal {
  margin-top: 0px;
  margin-bottom: 0px;
}

/* ========================================================================
   PADDING
======================================================================== */

.padding-0 {
  padding: 0px;
}

.padding-tiny {
  padding: 2px;
}

.padding-xxsmall {
  padding: 4px;
}

.padding-xsmall {
  padding: 8px;
}

.padding-small {
  padding: 16px;
}

.padding-medium {
  padding: 32px;
}

.padding-large {
  padding: 48px;
}

.padding-xlarge {
  padding: 64px;
}

.padding-xxlarge {
  padding: 80px;
}

.padding-huge {
  padding: 96px;
}

.padding-xhuge {
  padding: 128px;
}

.padding-xxhuge {
  padding: 192px;
}

.padding-top {
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.padding-bottom {
  padding-top: 0px;
  padding-right: 0px;
  padding-left: 0px;
}

.padding-left {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}

.padding-right {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.padding-vertical {
  padding-right: 0px;
  padding-left: 0px;
}

.padding-vertical.padding-large {
  display: flex;
  justify-content: center;
  align-items: center;
}

.padding-horizontal {
  padding-top: 0px;
  padding-bottom: 0px;
}

.page-padding {
  padding-right: 0px;
  padding-left: 0px;
}



/* ========================================================================
   NAVBAR STYLES
======================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 5%;
  right: 5%;
  z-index: 1000;
  background-color: rgba(253, 252, 249, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: background-color 0.3s ease, border-bottom 0.3s ease;
  padding: 0;
}

.navbar.sticky {
  background-color: rgba(253, 252, 249, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.padding-navbar {
  padding: 16px 0;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  padding-left: 0px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  grid-column-gap: 40px;
}

.link {
  position: relative;
  overflow: hidden;
}

.link-text {
  color: #333333;
  font-family: Albert Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  padding: 0 20px;
}

.link-text.absolute {
  position: absolute;
  left: 0%;
  top: 110%;
  right: 0%;
  bottom: auto;
}


/* Desktop (1280px - 1535px) */
@media screen and (min-width: 1280px) and (max-width: 1535px) {
  .container-large {
    padding-left: 40px;
    padding-right: 40px;
  }

  .padding-navbar {
    padding: 16px 0;
  }

  body {
    padding-top: 80px;
  }
}

/* Laptop (1024px - 1279px) */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .container-large {
    padding-left: 60px;
    padding-right: 60px;
  }

  .padding-navbar {
    padding: 16px 0;
  }

  body {
    padding-top: 100px;
  }
}

/* Tablet (960px - 1023px) */
@media screen and (min-width: 960px) and (max-width: 1023px) {
  .container-large {
    padding-left: 40px;
    padding-right: 40px;
  }

  .padding-navbar {
    padding: 16px 0;
  }

  body {
    padding-top: 80px;
  }

  .navbar,
  .navbar.sticky {
    background-color: var(--bg-color);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
  }
}

/* Mobile Landscape (768px - 959px) */
@media screen and (min-width: 768px) and (max-width: 959px) {
  .container-large {
    padding-left: 40px;
    padding-right: 40px;
  }

  .padding-navbar {
    padding: 12px 0;
  }

  body {
    padding-top: 80px;
  }

  .navbar-menu {
    grid-column-gap: 20px;
  }

  .navbar,
  .navbar.sticky {
    background-color: var(--bg-color);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
  }
}

/* Mobile Portrait (640px - 767px) */
@media screen and (min-width: 640px) and (max-width: 767px) {
  .container-large {
    padding-left: 24px;
    padding-right: 24px;
  }

  .navbar {
    padding: 0.5rem 0;
  }

  .padding-navbar {
    padding: 12px 0;
  }

  body {
    padding-top: 80px;
  }

  .navbar-menu {
    grid-column-gap: 20px;
  }

  /* Show mobile menu button */
  .menu-button {
    display: block;
  }

  .navbar-menu {
    display: none;
  }

  .navbar,
  .navbar.sticky {
    background-color: var(--bg-color);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
  }
}

/* Small Mobile (480px - 639px) */
@media screen and (min-width: 480px) and (max-width: 639px) {
  .container-large {
    padding-left: 24px;
    padding-right: 24px;
  }

  .padding-navbar {
    padding: 12px 0;
  }

  body {
    padding-top: 70px;
  }

  .navbar-menu {
    grid-column-gap: 15px;
  }

  /* Show mobile menu button */
  .menu-button {
    display: block;
  }

  .navbar-menu {
    display: none;
  }

  .navbar,
  .navbar.sticky {
    background-color: var(--bg-color);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
  }
}

/* Extra Small Mobile (up to 479px) */
@media screen and (max-width: 479px) {
  .container-large {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar {
    padding: 0;
  }

  .padding-navbar {
    padding: 12px 0;
  }

  body {
    padding-top: 70px;
  }

  .navbar-menu {
    grid-column-gap: 10px;
  }

  /* Show mobile menu button */
  .menu-button {
    display: block;
  }

  .navbar-menu {
    display: none;
  }

  .navbar,
  .navbar.sticky {
    background-color: var(--bg-color);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
  }
}


/* ========================================================================
   WORK CMS LIST STYLES
======================================================================== */

.work-cms-list {
  display: flex;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-row-gap: 120px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

/* Add gap and line between article work-components */
.work-component + .work-component {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e8e8e8;
}

/* Desktop (1280px - 1535px) */
@media screen and (min-width: 1280px) and (max-width: 1535px) {
  .work-cms-list {
    grid-row-gap: 100px;
  }
}

/* Laptop (1024px - 1279px) */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .work-cms-list {
    grid-row-gap: 80px;
  }
}

/* Tablet (960px - 1023px) */
@media screen and (min-width: 960px) and (max-width: 1023px) {
  .work-cms-list {
    grid-row-gap: 60px;
  }
}

/* Mobile Landscape (768px - 959px) */
@media screen and (min-width: 768px) and (max-width: 959px) {
  .work-cms-list {
    grid-row-gap: 40px;
  }

  .work-component + .work-component {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e8e8e8;
  }
}

/* Mobile Portrait (640px - 767px) */
@media screen and (min-width: 640px) and (max-width: 767px) {
  .work-cms-list {
    grid-row-gap: 36px;
  }

  .work-component + .work-component {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #e8e8e8;
  }
}

/* Small Mobile (480px - 639px) */
@media screen and (min-width: 480px) and (max-width: 639px) {
  .work-cms-list {
    grid-row-gap: 24px;
  }

  .work-component + .work-component {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
  }
}

/* Extra Small Mobile (up to 479px) */
@media screen and (max-width: 479px) {
  .work-cms-list {
    grid-row-gap: 20px;
  }

  .work-component + .work-component {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
  }
}


/* ========================================================================
   VISUAL WORKS STYLES
======================================================================== */

.visual-work-list-cms-item {
  flex-direction: column;

}

.visual-work-list-item {
  display: -ms-grid;
  display: grid;
  width: 100%;
  align-items: center;
  grid-auto-flow: row;
  grid-auto-columns: 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 40px;
  grid-template-areas: "Area";
  -ms-grid-columns: 1.5fr 50px 1fr;
  grid-template-columns: 1.5fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;

}

.visual-works-list-item-image-bg {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  transition: transform 0.3s ease;

}

.visual-works-list-item-image {
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
}

.visual-works-list-item-image-bg:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
}

/* Overlay container */
.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  padding: 20px;
  border-radius: 16px;
}

/* Show overlay on hover */
.visual-works-list-item-image-bg:hover .image-overlay {
  opacity: 1;
}

/* Centered text */
.overlay-text {
  color: white;
  text-align: center;
}


/* Show overlay on hover */
.visual-works-list-item-image-bg:hover .image-overlay {
  opacity: 1;
}


/* ========================================================================
   PROJECTS STYLES
   ======================================================================== */

.project-title {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 600;
  color: #1b1b1b;
  margin-bottom: 1rem;
  margin-top: 0;
  padding: 0;
  transition: text-decoration 0.3s ease;
}

.work-list-item:hover .project-title {
  text-decoration: underline;
}

.project-text {
  font-size: 20px;
  font-weight: 400;
  color: #5d5d5d;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.description-text {
  font-size: 18px;
  font-weight: 400;
  color: #5d5d5d;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.project-name {
  font-family: 'Albert Sans', sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}

.project-year {
  font-size: 16px;
  margin: 6px 0 0 0;
  opacity: 0.8;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.project-tag {
  font-size: 13px;
  font-weight: 500;
  color: #5d5d5d;
  letter-spacing: 0.5px;
  text-transform: none;
  background-color: #efeeeb;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  display: inline-block;
}

/* Desktop (1280px - 1535px) */
@media screen and (min-width: 1280px) and (max-width: 1535px) {
  .project-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 1rem;
    margin-top: 0;
    padding: 0;
  }

  .project-text {
    font-size: 20px;
    margin-bottom: 1.8rem;
  }

  .description-text {
    font-size: 18px;
    margin-bottom: 1.5rem;
  }

  .project-tags {
    gap: 0.5rem;
  }

  .project-name {
    font-size:20px;
    line-height: 1.2;
    font-weight: 500;
  }

  .project-year {
    font-size: 20px;
  }
}

/* Laptop (1024px - 1279px) */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .project-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 1rem;
    margin-top: 0;
    padding: 0;
  }

  .project-text {
    font-size: 20px;
    margin-bottom: 1.5rem;
  }

  .description-text {
    font-size: 18px;
    margin-bottom: 1.5rem;
  }

  .project-tags {
    gap: 0.5rem;
  }

  .project-name {
    font-size: 20px;
  }

  .project-year {
    font-size: 16px;
  }
}

/* Tablet (960px - 1023px) */
@media screen and (min-width: 960px) and (max-width: 1023px) {
  .project-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 1rem;
    margin-top: 0;
    padding: 0;
  }

  .project-text {
    font-size: 20px;
    margin-bottom: 1.2rem;
  }

  .description-text {
    font-size: 18px;
    margin-bottom: 1.2rem;
  }

  .project-tags {
    gap: 0.5rem;
  }

  .project-name {
    font-size: 20px;
  }

  .project-year {
    font-size: 16px;
  }
}

/* Mobile Landscape (768px - 959px) */
@media screen and (min-width: 768px) and (max-width: 959px) {
  .project-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 1rem;
    margin-top: 0;
    padding: 0;
  }

  .project-text {
    font-size: 18px;
    margin-bottom: 1rem;
  }

  .description-text {
    font-size: 16px;
    margin-bottom: 1rem;
  }

  .project-tags {
    gap: 0.5rem;
  }

  .project-name {
    font-size: 18px;
  }

  .project-year {
    font-size: 14px;
  }
}

/* Mobile Portrait (640px - 767px) */
@media screen and (min-width: 640px) and (max-width: 767px) {
  .project-title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 1rem;
    margin-top: 0;
    padding: 0;
  }

  .project-text {
    font-size: 16px;
    margin-bottom: 1rem;
  }

  .description-text {
    font-size: 14px;
    margin-bottom: 1rem;
  }

  .project-tags {
    gap: 0.5rem;
  }

  .project-name {
    font-size: 18px;
  }

  .project-year {
    font-size: 14px;
  }
}

/* Small Mobile (480px - 639px) */
@media screen and (min-width: 480px) and (max-width: 639px) {
  .project-title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    margin-top: 0;
    padding: 0;
  }

  .project-text {
    font-size: 14px;
    margin-bottom: 1rem;
  }

  .description-text {
    font-size: 13px;
    margin-bottom: 1rem;
  }

  .project-tags {
    gap: 0.4rem;
  }

  .project-tag {
    font-size: 12px;
    padding: 0.4rem 1rem;
  }

  .project-name {
    font-size: 16px;
  }

  .project-year {
    font-size: 14px;
  }
}

/* Extra Small Mobile (up to 479px) */
@media screen and (max-width: 479px) {
  .project-title {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    margin-top: 0;
    padding: 0;
  }

  .project-text {
    font-size: 14px;
    margin-bottom: 0.8rem;
  }

  .description-text {
    font-size: 13px;
    margin-bottom: 0.8rem;
  }

  .project-tags {
    gap: 0.3rem;
  }

  .project-tag {
    font-size: 11px;
    padding: 0.4rem 0.9rem;
  }

  .project-name {
    font-size: 16px;
  }

  .project-year {
    font-size: 14px;
  }
}


/* ========================================================================
   WORK LIST STYLES
======================================================================== */

.work-list-cms-item {
  flex-direction: column;
  grid-row-gap: 120px;
}

.work-list-item {
  display: -ms-grid;
  display: grid;
  width: 100%;
  align-items: start;
  grid-auto-flow: row;
  grid-auto-columns: 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 40px;
  grid-template-areas: "Area";
  -ms-grid-columns: 1.5fr 50px 1fr;
  grid-template-columns: 1.5fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-list-item:hover {
  transform: translateY(-4px);
}

.work-list-item:hover .horizontal-image {
  transform: scale(1.02);
}

.work-list-item-image-bg {
  display: flex;
  overflow: hidden;
  grid-column: auto;
  padding-top: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background-color: #f0f0f0;
}

.work-list-item-image {
  width: 80%;
}

/* ========================================================================
   VISUAL WORKS STYLES
======================================================================== */

.visual-work-column {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}

.visual-about .visual-grid {
  display: grid;
  grid-template-columns: minmax(2, minmax(0, 1fr));
  grid-row-gap: 24px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-row-gap: 24px;
}

@media (min-width: 640px) {
  .visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-row-gap: 36px;
    gap: 36px
  }
}

@media (min-width: 768px) {
  .visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-row-gap: 36px;
    gap: 36px
  }
}

@media (min-width: 1024px) {
  .visual-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-row-gap: 40px;
    gap: 40px
  }
}


/* ========================================================================
   FOOTER STYLES
======================================================================== */

.footer-contact {
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}

.footer-contact-heading {
  font-family: "Albert Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1b1b1b;
  padding-left: 8px;
  
}

.footer-contact-text {
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #5d5d5d;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-contact-inline-link {
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1b1b1b;
  text-decoration: none;
  border-bottom: 1.5px solid #1b1b1b;
  transition: border-color 0.3s ease, color 0.3s ease;
  padding-bottom: 2px;
}

.footer-contact-inline-link:hover {
  color: #7B9E7D;
  border-bottom-color: #7B9E7D;
}

.footer-down {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 20px;
}

/* Desktop (1280px - 1535px) */
@media screen and (min-width: 1280px) and (max-width: 1535px) {
  .footer-down {
    justify-content: space-between;
    align-items: center;
  }
}

/* Laptop (1024px - 1279px) */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .footer-down {
    justify-content: space-between;
    align-items: center;
  }
}

/* Tablet (960px - 1023px) */
@media screen and (min-width: 960px) and (max-width: 1023px) {
  .footer-down {
    justify-content: space-between;
    align-items: center;
  }
}

/* Large Mobile (768px - 959px) */
@media screen and (min-width: 768px) and (max-width: 959px) {
  .footer-contact {
    margin-bottom: 40px;
    padding-top: 40px;
  }
  
  .footer-contact-heading {
    font-size: 22px;
    margin-bottom: 14px;
    text-align: center;
    padding-left: 0;
  }
  
  .footer-contact-text {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .footer-contact-inline-link {
    font-size: 15px;
  }
  
  .footer-down {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
  }
}

/* Mobile (640px - 767px) */
@media screen and (min-width: 640px) and (max-width: 767px) {
  .footer-contact {
    margin-bottom: 36px;
    padding-top: 36px;
  }
  
  .footer-contact-heading {
    font-size: 20px;
    margin-bottom: 12px;
    text-align: center;
    padding-left: 0;
  }
  
  .footer-contact-text {
    font-size: 15px;
    margin-bottom: 18px;
  }
  
  .footer-contact-inline-link {
    font-size: 15px;
  }
  
  .footer-down {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
  }
}

/* Small Mobile (480px - 639px) */
@media screen and (min-width: 480px) and (max-width: 639px) {
  .footer-contact {
    margin-bottom: 32px;
    padding-top: 32px;
  }
  
  .footer-contact-heading {
    font-size: 20px;
    margin-bottom: 12px;
    text-align: center;
    padding-left: 0;
  }
  
  .footer-contact-text {
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .footer-contact-inline-link {
    font-size: 14px;
  }
  
  .footer-down {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }
}

/* Extra Small Mobile (up to 479px) */
@media screen and (max-width: 479px) {
  .footer-contact {
    margin-bottom: 28px;
    padding-top: 28px;
  }
  
  .footer-contact-heading {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
    padding-left: 0;
  }
  
  .footer-contact-text {
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .footer-contact-inline-link {
    font-size: 14px;
  }
  
  .footer-down {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }
}

.social-links-wrap {
  display: flex;
  align-items: center;
  grid-column-gap: 18px;
}

.social-link-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  transition: transform 200ms ease;
}

.social-link-item:hover {
  transform: translate(0px, -3px);
}

.text-block {
  font-size: 12px;
}


/* ========================================================================
   WORK CMS STYLES
======================================================================== */

.work-cms-hero-component {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Large Desktop (1536px and up) */
@media screen and (min-width: 1536px) {
  .work-cms-hero-component {
    gap: 100px;
    grid-template-columns: 1fr 1fr;
  }
}

/* Desktop (1280px - 1535px) */
@media screen and (min-width: 1280px) and (max-width: 1535px) {
  .work-cms-hero-component {
    gap: 80px;
    grid-template-columns: 1fr 1fr;
  }
}

/* Laptop (1024px - 1279px) */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .work-cms-hero-component {
    gap: 60px;
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablet (960px - 1023px) */
@media screen and (min-width: 960px) and (max-width: 1023px) {
  .work-cms-hero-component {
    gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile Landscape (768px - 959px) */
@media screen and (min-width: 768px) and (max-width: 959px) {
  .work-cms-hero-component {
    gap: 12px;
    grid-template-columns: 1fr;
  }
}

/* Mobile Portrait (640px - 767px) */
@media screen and (min-width: 640px) and (max-width: 767px) {
  .work-cms-hero-component {
    gap: 12px;
    grid-template-columns: 1fr;
  }
}

/* Small Mobile (480px - 639px) */
@media screen and (min-width: 480px) and (max-width: 639px) {
  .work-cms-hero-component {
    gap: 8px;
    grid-template-columns: 1fr;
  }
}

/* Extra Small Mobile (up to 479px) */
@media screen and (max-width: 479px) {
  .work-cms-hero-component {
    gap: 10px;
    grid-template-columns: 1fr;
  }
}

.work-cms-hero-details-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 24px;
  grid-column-gap: 24px;
}

.work-cms-hero-detail-item {
  position: relative;
  padding-top: 0px;
  padding-bottom: 24px;
}

.work-cms-services-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.work-cms-hero-image-component {
  background-clip: border-box;
  -webkit-text-fill-color: inherit;
}

.work-cms-text-component {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 50px;
  -ms-grid-columns: 0.75fr 1fr;
  grid-template-columns: 0.75fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.work-cms-images-list {
  display: flex;
  flex-direction: column;
  grid-row-gap: 50px;
}

.work-cms-hero-heading-wrap {
  overflow: hidden;
  padding-bottom: 10px;
}


/* ========================================================================
   ABOUT ME LINK STYLES
======================================================================== */

.link-1 {
  color: #02b0af;
  text-decoration: underline;
}

.link-2 {
  color: #db5343;
  text-decoration: underline;
}

.link-3 {
  color: #43b9fb;
  text-decoration: underline;
}

.link-4 {
  color: #00a223;
  text-decoration: underline;
}

.link-5 {
  color: #9727c0;
  text-decoration: underline;
}

.link-6 {
  color: #d56700;
  text-decoration: underline;
}



/* ========================================================================
    ABOUT ME SECTION STYLES
======================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 40px;
  align-items: start;
  /* Yukarı hizalama */
  width: 100%;
}

.about-grid-item {
  display: flex;
  flex-direction: column;
}

.image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  margin: 0;
  padding: 0;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  
}

.horizontal-image {
  width: 100%;
  aspect-ratio: 3/1;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.horizontal-image:hover {
  transform: scale(1.02);
}

/* Subtle border for design system image */
#designsystem .horizontal-image {
  border: 1px solid #e8e8e8;
}

#designsystem .horizontal-image:hover {
  border: 1px solid #e8e8e8;
}

.profile-image {
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  margin: 0;
  padding: 0;
}

.about-text {
  font-size: 20px;
  font-weight: 400;
  color: #1b1b1b;
  line-height: 1.8;
  margin-bottom: 0.6rem;
}

.about-text-container {
  margin-bottom: 0.8rem;
}

.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #1b1b1b;
  border: 1.5px solid #1b1b1b;
  border-radius: 8px;
  padding: 0 17px;
  height: 48px;
  min-width: 140px;
  max-width: 100%;
  box-sizing: border-box;
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s;
  white-space: nowrap;
  touch-action: manipulation;
  margin-bottom: 1rem;
}



.about-button:hover {
  border-color: #7B9E7D;
  color: #7B9E7D;
  fill: #7B9E7D;
}

.parent-container {
  width: 100%;
}

/* Mobile-first contact button */
.contact-button-wrapper .about-button {
  width: 100%;
}

/* Desktop: normal auto width */
@media (min-width: 769px) {
  .contact-button-wrapper .about-button {
    width: auto;
  }
}



/* Desktop (1280px - 1535px) */
@media screen and (min-width: 1280px) and (max-width: 1535px) {
  .about-text {
    font-size: 18px;
    margin-bottom: 1.8rem;
  }
}

/* Laptop (1024px - 1279px) */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .about-text {
    font-size: 18px;
    margin-bottom: 1.5rem;
  }
}

/* Tablet (960px - 1023px) */
@media screen and (min-width: 960px) and (max-width: 1023px) {
  .about-text {
    font-size: px;
    margin-bottom: 1.2rem;
  }
}

/* Mobile Landscape (768px - 959px) */
@media screen and (min-width: 768px) and (max-width: 959px) {
  .about-text {
    font-size: 18px;
    margin-bottom: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-grid-item {
    align-items: flex-start;
  }

  .about-image {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    object-position: top;
  }
}

/* Mobile Portrait (640px - 767px) */
@media screen and (min-width: 640px) and (max-width: 767px) {
  .about-text {
    font-size: 16px;
    margin-bottom: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-grid-item {
    align-items: flex-start;
  }

  .about-image {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    object-position: top;
  }

  .about-button {
    width: 100%;
    height: 44px;
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    padding: 0 12px;
  }
}

/* Small Mobile (480px - 639px) */
@media screen and (min-width: 480px) and (max-width: 639px) {
  .about-text {
    font-size: 14px;
    margin-bottom: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-grid-item {
    align-items: flex-start;
  }

  .about-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: top;
  }

  .about-button {
    width: 100%;
    height: 44px;
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    padding: 0 12px;
  }
}

/* Extra Small Mobile (up to 479px) */
@media screen and (max-width: 479px) {
  .about-text {
    font-size: 14px;
    margin-bottom: 0.8rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-grid-item {
    align-items: flex-start;
  }

  .about-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: top;
  }

  .about-button {
    width: 100%;
    height: 44px;
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    padding: 0 12px;
  }
}



/* ========================================================================
    CONTENT STYLES
    ======================================================================== */

.work-cms-text-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.margin-buttom-xs {
  margin-bottom: 12px;
}

.margin-bottom-large {
  margin-bottom: 120px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 100%;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: white;
  border: 1px solid #00000013;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.solution-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 36px;
  max-width: 100%;
}

/* Large Desktop (1536px and up) */
@media screen and (min-width: 1536px) {
  .solution-grid {
    grid-template-columns: 0.8fr 1fr;
    gap: 48px;
    max-width: 1200px;
  }

  .margin-bottom-large {
    margin-bottom: 100px;
  }
}

/* Desktop (1280px - 1535px) */
@media screen and (min-width: 1280px) and (max-width: 1535px) {
  .solution-grid {
    grid-template-columns: 0.8fr 1fr;
    gap: 40px;
    max-width: 1100px;
  }

  .work-cms-text-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .margin-bottom-large {
    margin-bottom: 100px;
  }
}

/* Laptop (1024px - 1279px) */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .solution-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
  }

  .work-cms-text-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .margin-bottom-large {
    margin-bottom: 80px;
  }
}

/* Tablet (960px - 1023px) */
@media screen and (min-width: 960px) and (max-width: 1023px) {
  .solution-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 900px;
  }

  .work-cms-text-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .margin-bottom-large {
    margin-bottom: 60px;
  }
}

/* Mobile Landscape (768px - 959px) */
@media screen and (min-width: 768px) and (max-width: 959px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
  }

  .work-cms-text-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .margin-bottom-large {
    margin-bottom: 40px;
  }
}

/* Mobile Portrait (640px - 767px) */
@media screen and (min-width: 640px) and (max-width: 767px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }

  .work-cms-text-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .margin-bottom-large {
    margin-bottom: 40px;
  }
}

/* Small Mobile (480px - 639px) */
@media screen and (min-width: 480px) and (max-width: 639px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .work-cms-text-section {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .margin-bottom-large {
    margin-bottom: 40px;
  }
}

/* Extra Small Mobile (up to 479px) */
@media screen and (max-width: 479px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
  }

  .work-cms-text-section {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .margin-bottom-large {
    margin-bottom: 20px;
  }
}

.solution-block {
  display: flex;
  flex-direction: column;
}

.solution-video {
  width: 100%;
  height: auto;
  border-radius: 60px;
  object-fit: cover;
  display: block;
  margin: 0 auto 32px auto;
}

.full-width-video {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  display: block;
  margin: 0 auto 32px auto;
}

.content-title-small {
  color: #1b1b1b;
  font-size: 28px;
  line-height: 1.6;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 12px;

}

/* Large Desktop (1536px and up) */
@media screen and (min-width: 1536px) {
  .solution-video {
    max-width: 900px;
    border-radius: 60px;
    margin-bottom: 40px;
  }

  .content-title-small {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
  }
}

/* Desktop (1280px - 1535px) */
@media screen and (min-width: 1280px) and (max-width: 1535px) {
  .solution-video {
    max-width: 800px;
    border-radius: 48px;
    margin-bottom: 36px;
  }

  .content-title-small {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
  }
}

/* Laptop (1024px - 1279px) */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .solution-video {
    max-width: 700px;
    border-radius: 40px;
    margin-bottom: 32px;
  }

  .content-title-small {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
  }
}

/* Tablet (960px - 1023px) */
@media screen and (min-width: 960px) and (max-width: 1023px) {
  .solution-video {
    max-width: 600px;
    border-radius: 32px;
    margin-bottom: 28px;
  }

  .content-title-small {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
  }
}

/* Mobile Landscape (768px - 959px) */
@media screen and (min-width: 768px) and (max-width: 959px) {
  .solution-video {
    max-width: 50%;
    border-radius: 24px;
    margin-bottom: 24px;
  }

  .content-title-small {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
  }
}

/* Mobile Portrait (640px - 767px) */
@media screen and (min-width: 640px) and (max-width: 767px) {
  .solution-video {
    max-width: 50%;
    border-radius: 18px;
    margin-bottom: 20px;
  }

  .content-title-small {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
  }
}

/* Small Mobile (480px - 639px) */
@media screen and (min-width: 480px) and (max-width: 639px) {
  .solution-video {
    max-width: 50%;
    border-radius: 12px;
    margin-bottom: 16px;
  }

  .content-title-small {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
  }
}

/* Extra Small Mobile (up to 479px) */
@media screen and (max-width: 479px) {
  .solution-video {
    max-width: 80%;
    border-radius: 8px;
    margin-bottom: 12px;
  }

  .content-title-small {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}



/* ========================================================================
    PROJECT DETAILS STYLES
======================================================================== */

.key-title {
  color: #1b1b1b;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

.key-text {
  color: #5d5d5d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

/* ========================================================================
    BLOG META INFORMATION STYLES (Medium-style)
======================================================================== */

.blog-meta-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 16px;
  color: #5d5d5d;
  font-weight: 400;
  line-height: 1.5;
}

.blog-publish-date {
  color: #5d5d5d;
}

.blog-meta-separator {
  color: #8d8d8d;
  font-weight: 400;
}

.blog-reading-time {
  color: #5d5d5d;
}

.blog-h1 {
  color: #1b1b1b;
  font-size: 42px;
  line-height: 54px;
  font-weight: 700;
}

/* Desktop (1280px - 1535px) */
@media screen and (min-width: 1280px) and (max-width: 1535px) {
  .blog-h1 {
    font-size: 42px;
    line-height: 54px;
  }
}

/* Laptop (1024px - 1279px) */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .blog-h1 {
    font-size: 40px;
    line-height: 50px;
  }
}

/* Tablet (960px - 1023px) */
@media screen and (min-width: 960px) and (max-width: 1023px) {
  .blog-h1 {
    font-size: 36px;
    line-height: 46px;
  }
}

/* Mobile Landscape (768px - 959px) */
@media screen and (min-width: 768px) and (max-width: 959px) {
  .blog-h1 {
    font-size: 32px;
    line-height: 42px;
  }
}

/* Mobile Portrait (640px - 767px) */
@media screen and (min-width: 640px) and (max-width: 767px) {
  .blog-h1 {
    font-size: 28px;
    line-height: 38px;
  }
}

/* Small Mobile (480px - 639px) */
@media screen and (min-width: 480px) and (max-width: 639px) {
  .blog-h1 {
    font-size: 24px;
    line-height: 32px;
  }
}

/* Extra Small Mobile (up to 479px) */
@media screen and (max-width: 479px) {
  .blog-h1 {
    font-size: 22px;
    line-height: 30px;
  }
}

/* Blog small link style */
.link-small {
  color: #1b1b1b;
  font-size: 16px;
  text-decoration: underline;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.link-small:hover {
  opacity: 0.7;
  color: #5d5d5d;
}

/* Remove grid layout for blog header section */
.work-cms-hero-detail-item .work-cms-hero-component {
  display: block !important;
  grid-template-columns: unset !important;
  gap: 0 !important;
}

.work-cms-hero-detail-item .work-cms-hero-component .inner-div {
  width: 100%;
}


/* Responsive adjustments for blog meta */
@media screen and (max-width: 767px) {
  .blog-meta-info {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.content-image {
  max-height: 100%;
  margin-bottom: 24px;
  border-radius: 12px;
  border: 1px solid #00000013;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 12px;
  border: 1px solid #00000013;
}

.video-wrapper .content-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
}

.content-text {
  font-size: 20px;
  font-weight: 400;
  color: #1b1b1b;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.content-text-small {
  font-size: 20px;
  font-weight: 400;
  color: #1b1b1b;
  line-height: 1.8;
}

.content-title {
  color: #101010;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 36px
}

.content-subtitle {
  color: #1b1b1b;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
}

/* Desktop (1280px - 1535px) */
@media screen and (min-width: 1280px) and (max-width: 1535px) {
  .content-text {
    font-size: 20px;
    margin-bottom: 1.8rem;
  }

  .content-text-small {
    font-size: 20px;
    line-height: 1.8;
  }

  .content-subtitle {
    font-size: 18px;
    line-height: 1.2;
  }

  .content-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 12px
  }
}

/* Laptop (1024px - 1279px) */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .content-text {
    font-size: 20px;
    margin-bottom: 1.5rem;
  }

  .content-text-small {
    font-size: 18px;
    line-height: 1.6;
  }

  .content-subtitle {
    font-size: 18px;
    line-height: 1.2;
  }

  .content-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 12px
  }
}

/* Tablet (960px - 1023px) */
@media screen and (min-width: 960px) and (max-width: 1023px) {
  .content-text {
    font-size: 20px;
    margin-bottom: 1.2rem;
  }

  .content-text-small {
    font-size: 16px;
    line-height: 1.8;
  }

  .content-subtitle {
    font-size: 18px;
    line-height: 1.2;
  }

  .content-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 12px
  }
}

/* Mobile Landscape (768px - 959px) */
@media screen and (min-width: 768px) and (max-width: 959px) {
  .content-text {
    font-size: 18px;
    margin-bottom: 1rem;
  }

  .content-text-small {
    font-size: 16px;
    line-height: 1.8;
  }

  .content-subtitle {
    font-size: 16px;
    line-height: 1.2;
  }

  .content-title {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 12px
  }
}

/* Mobile Portrait (640px - 767px) */
@media screen and (min-width: 640px) and (max-width: 767px) {
  .content-text {
    font-size: 16px;
    margin-bottom: 1rem;
  }

  .content-text-small {
    font-size: 14px;
    line-height: 1.6;
  }

  .content-subtitle {
    font-size: 16px;
    line-height: 1.2;
  }

  .content-title {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 12px
  }
}

/* Small Mobile (480px - 639px) */
@media screen and (min-width: 480px) and (max-width: 639px) {
  .content-text {
    font-size: 14px;
    margin-bottom: 1rem;
  }

  .content-text-small {
    font-size: 14px;
    line-height: 1.8;
  }

  .content-subtitle {
    font-size: 16px;
    line-height: 1.2;
  }

  .content-title {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 12px
  }
}

/* Extra Small Mobile (up to 479px) */
@media screen and (max-width: 479px) {
  .content-text {
    font-size: 14px;
    margin-bottom: 0.8rem;
  }

  .content-text-small {
    font-size: 14px;
    line-height: 1.8;
  }

  .content-subtitle {
    font-size: 14px;
    line-height: 1;
  }

  .content-title {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 12px
  }
}



/* ========================================================================
    SLIDER STYLES
======================================================================== */

.slider-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.slider {
  position: relative;
  height: 100%;
}

.slide {
  display: none;
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-bottom: 24px;
  border-radius: 12px;
  border: 1px solid #00000013;
}

.slide.active {
  display: block;
}

.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #5d5d5d;
  font-size: 24px;
  padding: 12px;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slider:hover .prev,
.slider:hover .next {
  opacity: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


/* ========================================================================
    HOME HERO SECTION STYLES
======================================================================== */

.home-hero-component {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  height: 100%;
}

.home-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
}

.home-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  flex: 0 0 65%;
  box-sizing: border-box;
  width: 100%;
}

.home-hero-image {
  width: 100%;
  height: 100%;
  max-width: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-profile-image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin-bottom: 48px;
}

.title-home {
  font-family: Albert Sans, sans-serif;
  font-size: 72px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #1b1b1b;
  margin-bottom: 36px;
}

.content-home {
  font-family: Albert Sans, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  color: #5d5d5d;
  margin-bottom: 48px;
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-family: Albert Sans, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1b1b1b;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.hero-cta-button:hover {
  color: #1b1b1b;
  transform: translateX(4px);
}

.hero-cta-button:hover .chevron-icon {
  transform: translateX(4px);
}

.chevron-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* ========================================================================
    HOME HERO VIDEO STYLES
======================================================================== */

.hero-video-container {
  position: relative;
  width: 360px;
  border-radius: 12px;
  overflow: hidden;
}


.hero-video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;

}


/* Large Desktop (1536px and up) */
@media screen and (min-width: 1536px) {
  .home-hero-component {
    gap: 60px;
  }

  .title-home {
    font-size: 72px;
    line-height: 1.1;
  }

  .content-home {
    font-size: 22px;
    line-height: 1.8;
  }

  .hero-video-container {
    width: 400px;
  }

  .hero-profile-image {
    width: 100px;
    height: 100px;
  }
}

/* Desktop (1280px - 1535px) */
@media screen and (min-width: 1280px) and (max-width: 1535px) {
  .home-hero-component {
    gap: 50px;
  }

  .title-home {
    font-size: 68px;
    line-height: 1.1;
  }

  .content-home {
    font-size: 21px;
    line-height: 1.8;
  }

  .hero-video-container {
    width: 380px;
  }

  .hero-profile-image {
    width: 90px;
    height: 90px;
  }
}

/* Laptop (1024px - 1279px) */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .home-hero-component {
    gap: 40px;
  }

  .title-home {
    font-size: 64px;
    line-height: 1.1;
  }

  .content-home {
    font-size: 20px;
    line-height: 1.8;
  }

  .hero-video-container {
    width: 360px;
  }

  .hero-profile-image {
    width: 85px;
    height: 85px;
  }
}

/* Tablet (960px - 1023px) */
@media screen and (min-width: 960px) and (max-width: 1023px) {
  .home-hero-component {
    gap: 35px;
  }

  .title-home {
    font-size: 58px;
    line-height: 1.2;
  }

  .content-home {
    font-size: 19px;
    line-height: 1.7;
  }

  .hero-video-container {
    width: 320px;
  }

  .hero-profile-image {
    width: 80px;
    height: 80px;
  }
}

/* Mobile Landscape (768px - 959px) */
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-hero-component {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .title-home {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .content-home {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .hero-video-container {
    width: 100%;
  }

  .hero-profile-image {
    width: 75px;
    height: 75px;
    margin-bottom: 20px;
  }

  .home-hero-right {
    align-items: flex-start;
  }
}

/* Mobile Portrait (640px - 767px) */
@media screen and (min-width: 640px) and (max-width: 767px) {
  .home-hero-component {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .title-home {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .content-home {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .hero-video-container {
    width: 100%;
  }

  .hero-profile-image {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
  }

  .home-hero-right {
    align-items: center;
  }
}

/* Small Mobile (480px - 639px) */
@media screen and (min-width: 480px) and (max-width: 639px) {
  .home-hero-component {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .title-home {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .content-home {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-video-container {
    width: 100%;
  }

  .hero-profile-image {
    width: 65px;
    height: 65px;
    margin-bottom: 16px;
  }

  .home-hero-right {
    align-items: center;
  }
}

/* Extra Small Mobile (up to 479px) */
@media screen and (max-width: 479px) {
  .home-hero-component {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .title-home {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .content-home {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-video-container {
    width: 100%;
  }

  .hero-profile-image {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .home-hero-right {
    align-items: center;
  }
}



/* ========================================================================
   HOME HEADING STYLES
======================================================================== */

.heading-2 {
  font-size: 32px;
  font-weight: 600;
  padding-bottom: 24px;
}

/* Desktop (1280px - 1535px) */
@media screen and (min-width: 1280px) and (max-width: 1535px) {
  .heading-2 {
    font-size: 32px;
    padding-bottom: 24px;
  }
}

/* Laptop (1024px - 1279px) */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .heading-2 {
    font-size: 32px;
    padding-bottom: 24px;
  }
}

/* Tablet (960px - 1023px) */
@media screen and (min-width: 960px) and (max-width: 1023px) {
  .heading-2 {
    font-size: 32px;
    padding-bottom: 24px;
  }
}

/* Mobile Landscape (768px - 959px) */
@media screen and (min-width: 768px) and (max-width: 959px) {
  .heading-2 {
    font-size: 32px;
    padding-bottom: 16px;
  }
}

/* Mobile Portrait (640px - 767px) */
@media screen and (min-width: 640px) and (max-width: 767px) {
  .heading-2 {
    font-size: 28px;
    padding-bottom: 12px;
  }
}

/* Small Mobile (480px - 639px) */
@media screen and (min-width: 480px) and (max-width: 639px) {
  .heading-2 {
    font-size: 24px;
    padding-bottom: 2px;
    padding-top: 24px;
  }
}

/* Extra Small Mobile (up to 479px) */
@media screen and (max-width: 479px) {
  .heading-2 {
    font-size: 24px;
    padding-bottom: 0px;
    padding-top: 24px;
  }
}



/* ========================================================================
   PROJECT HERO SECTION STYLES
======================================================================== */

.image-hero {
  border-radius: 12px;
  width: 100%;
  height: 460px;
  display: block;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .image-hero {
    height: 200px;
    margin-bottom: 16px;
  }
}

.project-h1 {
  color: #1b1b1b;
  font-size: 72px;
  line-height: 80px;
  font-weight: 700;
  margin-bottom: 16px;
}


/* Laptop (1024px - 1279px) */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .project-h1 {
    font-size: 64px;
    line-height: 1.15;
    margin-bottom: 32px;
  }
}

/* Tablet (960px - 1023px) */
@media screen and (min-width: 960px) and (max-width: 1023px) {
  .project-h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 28px;
  }
}

/* Mobile Landscape (768px - 959px) */
@media screen and (min-width: 768px) and (max-width: 959px) {
  .project-h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 2px;
  }

  .padding-large {
    padding: 24px;
  }
}

/* Mobile Portrait (640px - 767px) */
@media screen and (min-width: 640px) and (max-width: 767px) {
  .project-h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 2px;
  }

  .padding-large {
    padding: 24px;
  }
}

/* Small Mobile (480px - 639px) */
@media screen and (min-width: 480px) and (max-width: 639px) {
  .project-h1 {
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 2px;
  }

  .padding-large {
    padding: 24px;
  }
}

/* Extra Small Mobile (up to 479px) */
@media screen and (max-width: 479px) {
  .project-h1 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 0;
  }

}


/* ========================================================================
      PROJECT NAV BUTTONS STYLES
======================================================================== */

.project-nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 24px 0 0 0;
  padding: 0 0 12px 0;
  width: 100%;
  max-width: 100%;
}

.project-nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1b1b1b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  outline: none;
  will-change: transform, box-shadow, background;
}

.project-nav-btn i {
  font-size: 20px;
}

/* Next Project Button */
.next-project-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-family: Albert Sans, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1b1b1b;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.next-project-button:hover {
  color: #1b1b1b;
  transform: translateX(4px);
}

.next-project-button:hover .chevron-icon {
  transform: translateX(4px);
}


.previous-project-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-family: Albert Sans, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1b1b1b;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.previous-project-button:hover {
  color: #1b1b1b;
  transform: translateX(-4px);
}

.previous-project-button:hover .chevron-icon {
  transform: translateX(-4px);
}


.project-nav-buttons:has(.previous-project-button):not(:has(.next-project-button)) {
  justify-content: flex-start;
}

.project-nav-buttons:has(.next-project-button):not(:has(.previous-project-button)) {
  justify-content: flex-end;
}

/* Laptop (1024px - 1279px) */
@media screen and (min-width: 1024px) and (max-width: 1279px) {}

/* Tablet (960px - 1023px) */
@media screen and (min-width: 960px) and (max-width: 1023px) {}

/* Mobile Landscape (768px - 959px) */
@media screen and (min-width: 768px) and (max-width: 959px) {}

/* Mobile Portrait (640px - 767px) */
@media screen and (min-width: 640px) and (max-width: 767px) {}

/* Small Mobile (480px - 639px) */
@media screen and (min-width: 480px) and (max-width: 639px) {

  .previous-project-button,
  .next-project-button {
    gap: 4px;
    padding: 18px 0;
    font-size: 16px;
  }
}

/* Extra Small Mobile (up to 479px) */
@media screen and (max-width: 479px) {

  .previous-project-button,
  .next-project-button {
    gap: 4px;
    padding: 18px 0;
    font-size: 16px;
  }
}







@media screen and (max-width: 960px) {

  .margin-xxlarge {
    margin: 64px;
  }

  .margin-huge {
    margin: 80px;
  }

  .margin-xhuge {
    margin: 96px;
  }

  .margin-xxhuge {
    margin: 128px;
  }

  .margin-top {
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .margin-bottom {
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
  }

  .margin-bottom.margin-xsmall {
    margin-bottom: 4px;
  }

  .margin-left {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
  }

  .margin-right {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .margin-vertical {
    margin-right: 0px;
    margin-left: 0px;
  }

  .padding-xxlarge {
    padding: 64px;
  }

  .padding-huge {
    padding: 40px;
  }

  .padding-xhuge {
    padding: 96px;
  }

  .padding-xxhuge {
    padding: 128px;
  }

  .padding-top {
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .padding-bottom {
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
  }

  .padding-left {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
  }

  .padding-right {
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .padding-vertical {
    padding-right: 0px;
    padding-left: 0px;
  }

  .padding-vertical.padding-xhuge {
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .padding-horizontal {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .hide-tablet {
    display: none;
  }

  .show-tablet {
    display: block;
  }

  .license-item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .license-image {
    height: 320px;
  }

  .navbar-menu {
    justify-content: flex-start;
  }

  .work-list-item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .work-tags {
    margin-bottom: 30px;
  }

  .about-text-right {
    margin-top: 30px;
  }

  .contact-grid {
    grid-column-gap: 70px;
  }

  .contact-arrow {
    transform: rotate(-45deg);
  }

  .contact-hover-div {
    display: none;
  }

  .contact-item-text {
    font-size: 18px;
  }

  .contact-item-text-next {
    font-size: 18px;
  }

  .contact-item-text:hover {
    color: #757575;
  }

  .contact-item-text-next:hover {
    color: #757575;
  }

  .work-cms-hero-detail-item {
    padding-bottom: 10px;
  }

  .work-cms-text-component {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .columns {
    margin-bottom: 0px;
  }

  .column-3 {
    margin-bottom: 40px;
  }

  .image-steps {
    left: 70%;
    top: 75%;
  }

  .content {
    padding-bottom: 32px;
    font-size: 16px;
    line-height: 1.5;
  }

  .menu-button {
    padding: 8px;
    font-size: 32px;
  }

  .hover-line-2 {
    display: none;
  }

  .proje-header2 {
    font-size: 18px;
    line-height: 2;
  }

  .proje-header3 {
    font-size: 16px;
  }

  .bold-text {
    font-size: 16px;
  }

  .column-text {
    padding-top: 20px;
    padding-right: 0px;
    padding-left: 0px;
  }
}


@media screen and (max-width: 768px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 22px;
  }

  .heading-xlarge {
    font-size: 48px;
  }

  .heading-large {
    font-size: 38px;
  }

  .heading-medium {
    font-size: 28px;
  }

  .text-size-large {
    font-size: 25px;
  }

  .button {
    padding-right: 30px;
    padding-left: 30px;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .padding-top {
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .padding-bottom {
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
  }

  .padding-left {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
  }

  .padding-right {
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .padding-vertical {
    padding-right: 0px;
    padding-left: 0px;
  }

  .padding-vertical.padding-xhuge {
    padding-top: 20px;
  }

  .padding-horizontal {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .margin-top {
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .margin-bottom {
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
  }

  .margin-left {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
  }

  .margin-right {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .margin-vertical {
    margin-right: 0px;
    margin-left: 0px;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .show-mobile-landscape {
    display: block;
  }

  .license-image {
    height: 250px;
  }

  .instructions-list {
    padding-left: 20px;
  }

  .home-hero-image {
    height: 100%;
    max-width: 85%;
  }

  .navbar-menu {
    display: flex;
    align-self: auto;
    order: 0;
    flex: 0 auto;
  }

  .work-list-item-image {
    width: 90%;
  }

  .about-text-right {
    margin-bottom: 80px;
  }

  .link {
    display: flex;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    align-self: auto;
    flex: 0 auto;
    border-bottom: 0.2px solid #ddd;
  }

  .link:hover {
    background-color: #f5f5f5;
  }

  .menu-button.menu-open {
    background-color: #FDFCF9;
    color: #1b1b1b;
  }

  .main-wrapper-2 {
    margin-right: 0%;
    margin-left: 0%;
  }

  .button-3 {
    display: block;
    margin-top: 0px;
  }
}


@media screen and (max-width: 479px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  .heading-xlarge {
    font-size: 42px;
  }

  .heading-large {
    font-size: 32px;
  }

  .heading-medium {
    font-size: 26px;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .padding-top {
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .padding-bottom {
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
  }

  .padding-left {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
  }

  .padding-right {
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .padding-vertical {
    padding-right: 0px;
    padding-left: 0px;
  }

  .padding-vertical.padding-xhuge {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .padding-vertical.padding-huge {
    padding-top: 12px;
    padding-bottom: 12px;
  }


  .padding-vertical.padding-large {
    padding-top: 6px;
    padding-bottom: 6px;
    justify-content: flex-start;
  }

  .padding-horizontal {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .margin-top {
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .margin-bottom {
    margin: 0px 0px 10px;
  }

  .margin-bottom.margin-xsmall {
    margin-bottom: 0px;
  }

  .margin-bottom.margin-large {
    margin-bottom: 20px;
  }

  .margin-left {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
  }

  .margin-right {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .margin-vertical {
    margin-right: 0px;
    margin-left: 0px;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .show-mobile-portrait {
    display: block;
  }

  .utility-page-wrap {
    height: 50vh;
  }

  .license-images-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .home-hero-component {
    grid-row-gap: 20px;
  }

  .home-hero-heading-wrap {
    margin-bottom: 24px;
  }

  .home-hero-right {
    justify-content: flex-start;
    align-items: right;
  }

  .home-hero-image-wrap {
    width: 100%;
    max-width: 100%;
    margin-left: 0px;
  }

  .home-hero-image {
    height: 100%;
    max-width: 100%;
  }

  .navbar-menu {
    display: block;
    grid-column-gap: 14px;
    background-color: #FDFCF9;
    font-size: 18px;
  }

  .work-list-item {
    grid-row-gap: 24px;
    padding: 12px;
  }

  .work-list-item-image-bg {
    padding-top: 30px;
    border-radius: 16px;
  }

  .work-tags {
    margin-bottom: 10px;
  }

  .contact-grid {
    grid-row-gap: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contact-arrow {
    width: 22px;
  }

  .contact-item-text {
    font-size: 14px;
    padding-left: 4px;
  }

  .contact-item-text-next {
    font-size: 14px;
    padding-right: 4px;

  }

  .invisible-img {
    display: none;
  }

  .video-style {
    height: 420px;
    margin-bottom: 10%;
  }

  .footer-inside {
    border-style: solid;
    border-width: 1px;
    border-color: transparent;
  }

  .link {
    position: relative;
    display: flex;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    align-self: flex-start;
    border-bottom: 0.2px solid rgba(0, 0, 0, 0.3);
    font-weight: 500;
  }

  .link:hover {
    background-color: #f5f5f5;
  }

  .work-cms-hero-section {
    margin-bottom: 5%;
  }

  .work-cms-hero-details-wrap {
    grid-template-columns: 1fr;
    grid-row-gap: 12px;
    grid-column-gap: 0;
  }

  .work-cms-hero-detail-item {
    padding-bottom: 8px;
  }

  .image-steps {
    left: 75%;
    max-width: 25%;
  }

  .heading {
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
  }

  .content {
    padding-top: 16px;
    padding-bottom: 24px;
    font-size: 16px;
    line-height: 1.5;
  }

  .mon {
    font-size: 22px;
    line-height: 1.2;
  }

  .mobile-subtitle {
    font-size: 10px;
  }

  .heading-4 {
    font-size: 22px;
    line-height: 1.2;
  }

  .heading-5 {
    font-size: 22px;
    line-height: 1.2;
  }

  .heading-6 {
    font-size: 22px;
    line-height: 1.2;
  }

  .menu-button {
    padding: 4px;
  }

  .menu-button.menu-open {
    color: #1b1b1b;
  }

  .image-hero {
    border-radius: 12px;
  }

  .proje-header2 {
    line-height: 1.4;
  }

  .grid {
    grid-column-gap: 5px;
  }

  .image-big {
    margin-bottom: 5px;
    border-radius: 12px;
  }

  .column-9 {
    padding-top: 16px;
    padding-left: 0px;
  }

  .img-2 {
    border-radius: 12px;
  }

  .column-text {
    padding-top: 10px;
  }

  .image-5 {
    max-height: 32px;
  }

  .button-3 {
    margin-top: 0px;
  }

  .heading-7 {
    font-size: 140px;
  }

  .heading-9 {
    font-size: 24px;
  }

  .icon-4 {
    font-size: 20px;
  }

  .icon-3 {
    font-size: 20px;
  }
}


#home-left {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#home-right {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#project-1 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#project-1-h3 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

/* Project Filters */
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.project-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  border: none;
  background-color: transparent;
  color: #1b1b1b;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.filter-btn:hover {
  color: #1b1b1b;
  opacity: 0.7;
}

.filter-btn.active {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* Isotope-style filter animations */
.visual-grid {
  position: relative;
}

.visual-work-list-cms-item {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Items that will be hidden - animate out */
.visual-work-list-cms-item.is-hiding {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

/* Items that are hidden - removed from flow */
.visual-work-list-cms-item.is-hidden {
  display: none;
}

/* Items that are visible - no transition on reflow */
.visual-work-list-cms-item.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Responsive adjustments for filters */
@media (max-width: 768px) {
  .projects-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-filters {
    width: 100%;
    justify-content: flex-start;
  }

  .filter-btn {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .project-filters {
    gap: 2px;
  }

  .filter-btn {
    font-size: 1px;
  }
}

/* Project page: webapp-ai-powered-restaurant-supplier */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.principle-number {
  font-size: 12px;
  font-weight: 600;
  color: #5d5d5d;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.principle-title {
  font-size: 18px;
  font-weight: 600;
  color: #1b1b1b;
  line-height: 1.3;
  margin-bottom: 12px;
}

.principle-body {
  font-size: 16px;
  font-weight: 400;
  color: #5d5d5d;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 960px) {
  .principles-grid {
    grid-template-columns: 1fr;
  }
}

.principles-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 8px;
}

@media (max-width: 560px) {
  .principles-grid-4 {
    grid-template-columns: 1fr;
  }
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 48px;
}

.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.step-visual {
  background-color: #efeeeb;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.step-visual-square {
  aspect-ratio: 1 / 1;
}

.step-visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step-badge {
  font-size: 120px;
  font-weight: 700;
  color: #dddad5;
  line-height: 1;
  user-select: none;
  font-family: "Albert Sans", sans-serif;
}

.step-row.reverse .step-visual {
  order: 2;
}

.step-row.reverse .step-content {
  order: 1;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-label {
  font-size: 12px;
  font-weight: 600;
  color: #5d5d5d;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.step-heading {
  font-size: 24px;
  font-weight: 600;
  color: #1b1b1b;
  line-height: 1.25;
  margin: 0;
}

.step-body {
  font-size: 18px;
  font-weight: 400;
  color: #5d5d5d;
  line-height: 1.75;
  margin: 0;
}

.content-title-xsmall {
  color: #1b1b1b;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 8px;
  padding-top: 48px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration-line: underline;
  text-decoration-style: double;
  text-underline-offset: 6px;
}

.ai-decision-item-title {
  color: #1b1b1b;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 8px;
}

.ai-decision-item-content {
  color: #5d5d5d;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 16px;
}

@media (max-width: 959px) {
  .principle-title {
    font-size: 17px;
    line-height: 1.35;
  }

  .principle-body {
    font-size: 15px;
    line-height: 1.65;
  }

  .step-label {
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .step-heading {
    font-size: 22px;
    line-height: 1.25;
  }

  .step-body {
    font-size: 17px;
    line-height: 1.7;
  }

  .content-title-xsmall {
    font-size: 17px;
    line-height: 1.4;
    padding-top: 40px;
    padding-bottom: 10px;
  }

  .ai-decision-item-title {
    font-size: 17px;
    line-height: 1.45;
  }

  .ai-decision-item-content {
    font-size: 17px;
    line-height: 1.65;
  }
}

@media (max-width: 768px) {
  .steps-list {
    gap: 48px;
  }

  .step-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-row.reverse .step-visual,
  .step-row.reverse .step-content {
    order: unset;
  }

  .step-badge {
    font-size: 80px;
  }

  .principle-title {
    font-size: 16px;
    line-height: 1.3;
  }

  .principle-body {
    font-size: 14px;
    line-height: 1.6;
  }

  .step-label {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .step-heading {
    font-size: 20px;
    line-height: 1.25;
  }

  .step-body {
    font-size: 16px;
    line-height: 1.65;
  }

  .content-title-xsmall {
    font-size: 16px;
    line-height: 1.35;
    margin-top: 12px;
    padding-top: 32px;
    padding-bottom: 8px;
  }

  .ai-decision-item-title {
    font-size: 16px;
    line-height: 1.4;
  }

  .ai-decision-item-content {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 479px) {
  .principle-title {
    font-size: 15px;
    line-height: 1.3;
  }

  .principle-body {
    font-size: 13px;
    line-height: 1.55;
  }

  .step-label {
    font-size: 10px;
    letter-spacing: 0.8px;
  }

  .step-heading {
    font-size: 18px;
    line-height: 1.2;
  }

  .step-body {
    font-size: 15px;
    line-height: 1.6;
  }

  .content-title-xsmall {
    font-size: 15px;
    line-height: 1.3;
    margin-top: 8px;
    padding-top: 24px;
    padding-bottom: 6px;
  }

  .ai-decision-item-title {
    font-size: 15px;
    line-height: 1.35;
  }

  .ai-decision-item-content {
    font-size: 14px;
    line-height: 1.55;
  }
}