*, 
*:before, 
*:after{
    box-sizing: border-box;
}
html{
    font-size: 16px;
}
body{
    margin: 0;
    padding:0;
    background-color: #1B3C73;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.pointer {
    cursor: pointer;
}



body > header {
    width: 100%;
    height: 50%;
    color: white;
    margin-bottom: 60px;
}


.header-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1B3C73;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 18px 0;
  padding-bottom: 10px;
}

.project-page{
  padding-top: 140px; 
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo{
  width: 54px;      /* consistent size */
  height: auto;
  padding: 0;
}

.click-home{
  font-family: "Marhey", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  padding: 0;
  color: #fff;
}


/* ---- page base ---- */
.project-page {
  margin: 0 auto;
  padding: 140px 60px 80px; 
  background: #ffd0d8;
  min-height: 100vh;
  box-sizing: border-box;
}

.hero {
  background: #ffd0d8;
  padding: 8rem 0 5rem;
}

.hero-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}

.hero-content h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  color: #1c2f66;
}

.hero-content p {
  margin: 0 auto 2rem;
  max-width: 700px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #1c2f66;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 0.9rem 1.4rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid #FF8097;
  transition: 0.2s ease;
}

.btn-dark {
  background: #1c2f66;
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-image {
  width: min(1100px, 90%);
  margin: 0 auto;
  /*aspect-ratio: 16 / 9;*/
  background: #fff;
  overflow: hidden;
}

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


/* ---- top hero ---- */
.hero-img{
  height: 165px;
  background:#787a93;    
  border-radius: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:700;
  font-size: 1.8rem;
  letter-spacing: .5px;
  margin-top: 120px;
}

/* ---- CTA ---- */
.cta-wrap{
  display:flex;
  justify-content:center;
  margin: 90px 0 90px;
}
.cta-btn{
  background:#1c2f66;     /* deep navy */
  color:#fff;
  text-decoration:none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  display:inline-block;
}

/* ---- content blocks ---- */
.block{
  display:grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 100px;
  align-items:start;
  margin-bottom: 180px;
}

.block-left h2{
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
}

.block-left p{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  color:#0c0c0c;
  word-break: break-word; 
  background-color: white;
  height: 230px;
}

/* ---- right “image” cards ---- */
.block-right{
  display:flex;
  flex-direction:column;
  gap: 20px;
}

.side-card{
  height: 180px;   
  background:#787a93;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 6px;
  padding: 10px;
}

.project-background {
  background: #ffd0d8;
  text-align: center;
  padding: 5rem 2rem;
}


/* main heading */
.project-background h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0 0 1.5rem;
  color: #1c2f66;
}

/* paragraph */
.project-background p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #1B3C73;
}

.project-process {
  background: #ffd0d8;
  padding: 5rem 2rem 6rem;
}

.process-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}

.process-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1B3C73;
  margin-bottom: 1rem;
}

.process-header h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  color: #1c2f66;
}

.process-header p {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.5;
  color: #1c2f66;
}

.process-grid {
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.process-card {
  border: 2px solid #1c2f66;
  display: flex;
  flex-direction: column;
  min-height: 700px;
  width: 800px;
  justify-content: center;
  align-items: center;
}

.process-card-text {
  padding: 2rem;
  min-height: 320px;
}

.process-card-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1B3C73;
  margin-bottom: 1rem;
}

.process-card h3 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  line-height: 1.15;
  font-weight: 800;
  color: #1B3C73;
}

.process-card p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.5;
  color: #ff8097;
}

.tools-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
  color: #000;
}

.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 50px;
  list-style: none;
  padding: 0;
  justify-content: center;
}

.tools-list li {
  background: #ffe4ea;
  color: #1B3C73;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* optional custom bullet 
.tools-list li::before {
  content: "●";
  color: #ff8097;
  margin-right: 8px;
  font-size: 0.8rem;
}*/

.process-card-image {
  flex: 1;
  min-height: 360px;
}

.process-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 360˚ Product Showcase */
.image-column {
  display: flex;
  flex-direction: column;
  gap: 20px; 
  padding: 10px;
}

.image-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.image-caption {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #555;
  text-align: center;
  line-height: 1.4;
}

/* Dual-Touchscreen Interactive Catalogue */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 16px;
  padding: 10px;
}

.image-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.image-caption {
  margin-top: 6px;
  font-size: 0.9rem;
  text-align: center;
  color: #555;
}

.process-card iframe {
  border-radius: 10px;
  margin-bottom: 2rem;
}


@media (max-width: 900px) {
  .hero {
    padding: 7rem 0 4rem;
  }

  .hero-content {
    margin-bottom: 3rem;
  }

  .hero-content p {
    font-size: 1.15rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 6.5rem 0 3rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn {
    min-width: 90px;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }

  .hero-image {
    width: 92%;
  }
}

/* tablet */
@media (max-width: 1024px) {
  .project-process {
    padding: 4rem 1.5rem 5rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }

  .process-card {
    min-height: auto;
  }

  .process-card-text {
    min-height: auto;
  }

  .process-card-image {
    min-height: 320px;
  }

  .process-header p,
  .process-card p {
    font-size: 1.1rem;
  }
}

/* phone */
@media (max-width: 600px) {
  .project-process {
    padding: 3rem 1rem 4rem;
  }

  .process-header {
    margin-bottom: 2.5rem;
  }

  .process-header h2 {
    font-size: 2.2rem;
  }

  .process-header p {
    font-size: 1rem;
  }

  .process-card-text {
    padding: 1.4rem;
  }

  .process-card h3 {
    font-size: 1.9rem;
  }

  .process-card p {
    font-size: 1rem;
  }

  .process-card-image {
    min-height: 240px;
  }
}

@media (max-width: 360px){
  .block{
    grid-template-columns: 1fr 120px;
  }
  .block-left h2{ font-size: 2rem; }
}

/* ---------- Desktop ---------- */
@media (min-width: 900px){

  .project-page{
    padding: 60px 80px 100px;
  }

  .hero-img{
    height: 260px;
    font-size: 2.4rem;
  }

  .cta-btn{
    font-size: 1.05rem;
    padding: 12px 24px;
  }

  .block{
    grid-template-columns: 1.6fr 1fr;
  }

  .side-card{
    height: 200px;
  }

}