* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  font-family: 'General Sans', sans-serif;
  color: #0043d5;
  overflow-x: hidden;
}

/* Top bar */
.topbar {
  display: grid;
  grid-template-columns: minmax(260px, 30%) minmax(0, 70%);
  align-items: center;
  padding: 15px 40px;
}

/* Logo */
.logo {
  font-weight: 500;
  font-style: italic;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: flex-start;
  gap: clamp(24px, 4vw, 90px);
  padding-left: 30px;
  flex-wrap: wrap;
}

.nav a {
  position: relative; /* important */
  text-decoration: none;
  color: #0043d5;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 500;
  font-style: italic;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

/* Remove underline */
.nav a.active {
  text-decoration: none;
}

/* ICON ABOVE ACTIVE LINK */
.nav a.active::before {
  content: "";
  position: absolute;
  bottom: -5%; /* controls vertical position */
  left: -4%;
  transform: translateX(-50%);
  
  width: 40px;   /* adjust size */
  height: 40px;

  background: url("other/aby@2x.png") no-repeat center;
  background-size: contain;

  pointer-events: none;
}

/* Horizontal line */
.line {
  width: 100%;
  height: 2px;
  background: #0043d5;
}

/* Main layout */
.container {
  display: grid;
  grid-template-columns: minmax(260px, 30%) minmax(0, 70%);
  padding: 0 40px 40px 40px;
  align-items: start;
}

/* Left column */
.left {
  padding: 30px 20px 0 0;
  font-size: clamp(14px, 1.2vw, 19px);
  line-height: 1.05;
  font-weight: 500;
  font-style: italic;
  min-width: 0;
}

/* Project info block */
.project-info {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  margin-bottom: 55px;
  align-items: start;
}

.info-labels,
.info-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-labels p,
.info-values p {
  margin: 0;
}

/* Paragraph block */
.project-text {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

/* Button */
.switch-btn {
  margin-top: 34px;
  padding: 12px 18px;
  border: 2px solid #0043d5;
  background: transparent;
  color: #0043d5;
  font-family: 'General Sans', sans-serif;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 500;
  font-style: italic;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.switch-btn:hover {
  background: #0043d5;
  color: #ffffff;
}

.project-text p {
  margin: 0;
}

/* Right column */
.right {
  padding: 30px 0 0 30px;
  border-left: 2px solid #0043d5;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  min-width: 0;
}

/* Media */
.right img,
.right video {
  width: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.media-box {
  width: 100%;
}

/* Caption if needed later */
.caption {
  font-size: clamp(14px, 1.2vw, 20px);
  line-height: 1.3;
  font-weight: 500;
  font-style: italic;
}

/* Large tablets / smaller laptops */
@media (max-width: 1200px) {
  .topbar {
    grid-template-columns: 260px 1fr;
    padding: 15px 24px;
  }

  .container {
    grid-template-columns: 260px 1fr;
    padding: 0 24px 24px 24px;
  }

  .nav {
    gap: 28px;
    padding-left: 24px;
  }

  .right {
    padding-left: 24px;
  }

  .project-info {
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 15px 20px;
  }

  .nav {
    padding-left: 0;
    gap: 18px;
  }

  .container {
    grid-template-columns: 1fr;
    padding: 0 20px 24px 20px;
  }

  .left {
    padding: 24px 0;
    border-bottom: 2px solid #0043d5;
  }

  .right {
    padding: 24px 0 0 0;
    border-left: none;
  }

  .project-info {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 38px;
  }
}

/* Phones */
@media (max-width: 600px) {
  .topbar {
    padding: 14px 16px;
  }

  .container {
    padding: 0 16px 20px 16px;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 13px;
  }

  .left {
    font-size: 14px;
    line-height: 1.1;
  }

  .caption {
    font-size: 14px;
  }

  .project-info {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .info-labels,
  .info-values {
    gap: 10px;
  }

  .project-text {
    gap: 24px;
  }
}