:root {
  --blue: #003ddd;
  --black: #000000;
  --white: #ffffff;
  --muted: #888888;
  --light: #f3f5f9;
  --border: #e6e6e6;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
}

a {
  color: var(--blue);
  text-decoration: none;
}

/* a:hover {
  color: var(--black);
} */

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

.wrap {
  width: min(1680px, 90%);
  margin: 0 auto;
}

.site {
  overflow: hidden;
}

.site-header {
  position: static; /* ή static */
  top:auto;
}

.site-header.header-transparent {
  background-color: black;
}



.site-header-inner {
  display: flex;
  align-items: center;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

.header-brand img {
  height: 24px;
  width: auto;
}

.logoDark {
  display: none;
}



.navigator {
  flex: 1;
}

.navigator .menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navigator .menu > li {
  position: relative;
}

.navigator .menu > li > a {
  font-size: 21px;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.95);
}



.navigator .menu > li:hover > a {
  color: rgba(255, 255, 255, 0.7);
}



.sub-menu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  padding: 18px 20px;
  list-style: none;
  margin: 0;
  border: 1px solid var(--border);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 10;
}

.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sub-menu a {
  display: block;
  padding: 8px 0;
  color: var(--black);
  font-size: 15px;
}

.header-info-text {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  font-size: 14px;
}



.header-info-text a {
  color: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 40px;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.button.has-arrow::after {
  content: ">";
  font-size: 14px;
}

.off-canvas-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 28px;
  position: relative;
}

.off-canvas-toggle span,
.off-canvas-toggle span::before,
.off-canvas-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--white);
  transition: background 0.3s ease;
}

.off-canvas-toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.off-canvas-toggle span::before {
  top: -10px;
}

.off-canvas-toggle span::after {
  top: 10px;
}



.off-canvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.off-canvas-menu {
  position: fixed;
  top: 0;
  right: -360px;
  width: 360px;
  height: 100vh;
  background: var(--blue);
  color: var(--white);
  z-index: 999;
  transition: right 0.3s ease;
}

.off-canvas-menu.is-open {
  right: 0;
}

.off-canvas-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.off-canvas-inner {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 30px;
}

.off-canvas-close {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
}

.off-canvas-close span,
.off-canvas-close span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--white);
}

.off-canvas-close span {
  transform: rotate(45deg);
}

.off-canvas-close span::before {
  transform: rotate(90deg);
}

.off-canvas-nav .menu {
  flex-direction: column;
  gap: 18px;
}

.off-canvas-nav .menu > li > a {
  color: var(--white);
  font-size: 24px;
}

.off-canvas-nav .sub-menu {
  position: static;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  padding: 10px 0 0 16px;
}

.off-canvas-nav .sub-menu a {
  color: rgba(255, 255, 255, 0.8);
}

.hero-slider {
  background: var(--blue);
  color: var(--white);
  padding: 160px 0 140px;
  position: relative;
}

.hero-slider-inner {
  position: relative;
  min-height: 420px;
}

.hero-slide {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.hero-copy h1 {
  font-size: 80px;
  line-height: 1.1;
  margin: 0 0 30px;
  font-weight: 800;
}

.hero-tech p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.hero-logos {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-logos img {
  height: 40px;
  width: auto;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-visual img {
  width: min(520px, 80%);
}

.hero-bullets {
  position: absolute;
  left: 5%;
  bottom: 60px;
  display: flex;
  gap: 10px;
}

.hero-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid transparent;
  cursor: pointer;
}

.hero-bullet.is-active {
  background: rgba(255, 255, 255, 0.5);
}

.section-header {
  margin-bottom: 40px;
}

.section-header.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.manbiz-title-center {
  text-align: center;
  font-size: 48px;
  margin: 0 0 12px;
  text-transform: lowercase;
}

.manbiz-title-left {
  font-size: 48px;
  margin: 0 0 12px;
  text-transform: lowercase;
}

.manbiz-text-center {
  text-align: center;
  margin: 0;
  color: var(--muted);
}

.manbiz-text-left {
  margin: 0;
  color: var(--muted);
}

.services-section {
  background: var(--light);
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.iconbox {
  background: var(--white);
  padding: 30px;
  border: 1px solid var(--border);
}

.iconbox .box-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.iconbox .box-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.iconbox svg {
  width: 100%;
  height: 100%;
}

.iconbox .box-title {
  font-size: 22px;
  margin: 0;
}

.box-readmore a {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
}

.question-callout {
  margin-top: 40px;
  text-align: center;
}

.badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.projects-section {
  padding: 80px 0;
}

.projects-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.project-card {
  background: var(--white);
/*   border: 1px solid var(--border); */
  scroll-snap-align: start;
}

.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.project-info {
  padding: 24px;
}

.project-info h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.project-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.project-meta h6 {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-callout {
  margin-top: 40px;
  text-align: center;
}

.blog-section {
  background: var(--blue);
  color: var(--white);
  padding: 80px 0;
}

.blog-section a {
  color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 14px;
}

.blog-card h3 {
  margin: 10px 0;
  font-size: 20px;
}

.blog-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-section {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card a {
  position: relative;
  display: block;
  color: var(--white);
}

.about-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.about-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  color: var(--black);
  padding: 6px 10px;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 12px;
}

.about-link {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  padding: 14px 16px;
  font-size: 16px;
}

.content-header {
  background: var(--blue);
  color: var(--white);
  padding: 140px 0 60px;
  margin-bottom: 80px;
}

.page-title {
  font-size: 64px;
  line-height: 1;
  margin: 0 0 10px;
}

.breadcrumbs {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.content-body {
  padding-bottom: 80px;
}

.entry-content {
  font-size: 18px;
  line-height: 1.7;
}

.site-footer {
  background: var(--blue);
  color: var(--white);
  margin-top: 80px;
}

.footer-callout h3 {
  font-size: 32px;
  margin: 0 0 20px;
}

.content-bottom-widgets {
  padding: 60px 0 20px;
}

.footer-widgets {
  padding: 40px 0 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-col h6 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  margin: 0 0 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.footer-links a {
  color: var(--white);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
}

.footer-copyright-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copyright img {
  width: 48px;
  margin-bottom: 10px;
}

.go-to-top a {
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pagination {
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .hero-copy h1 {
    font-size: 60px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header.split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .navigator {
    display: none;
  }

  .header-info-text {
    display: none;
  }

  .off-canvas-toggle {
    display: block;
  }

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .hero-bullets {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-slider {
    padding: 140px 0 80px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

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

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

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

  .footer-copyright-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
