        /* HERO */
        @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&display=swap');
        @import url('https://fonts.cdnfonts.com/css/din-neuzeit-grotesk');
      h1,h2{
  font-family: oswald, sans-serif;
}
h5{
  font-family: 'DIN Neuzeit Grotesk', sans-serif;
  font-size: 50px;
}
p{
  font-family:  'Avenir', sans-serif;
  font-size: 16px;
}
li{
  font-family:  'Avenir', sans-serif;
  font-size: 16px;
}
.hero {
  position: relative;
  height: 100vh;
  background: url("/static_files/images/banner_image.jpeg") center / cover no-repeat;
  display: flex;
  align-items: flex-start;     /* aligns vertically to top */
  justify-content: flex-start; /* aligns content to left */
  padding-left: 60px;          /* distance from left edge */
  padding-top: 60px;           /* distance from top */
}


.hero-overlay {
  position: absolute;
  inset: 1;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  max-width: 600px;
}
.hero-blur-box {
  padding: 50px 40px;               /* more padding = taller box */
  background: rgba(0, 0, 0, 0.15);  /* dark glass effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(8px); /* Safari support */
  border-radius: 6px;
  display: block;                    /* allows width/height to work */
  width: 800px;                      /* width of the blur box */
  min-height: 200px;                 /* increased height */
  text-align: left;                  /* content aligned left */
  margin: 150px 0 0 -60px;          /* space from top, left edge of container */
animation: slideFromLeft 1s ease-out;
}

/* Keyframes */
@keyframes slideFromLeft {
  from {
    transform: translateX(-200px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-content h1 {
  color: #fff;
  font-size: 70px;
  font-weight: 800;
  line-height: 1.5;
  margin: 0;
  font-family: oswald, sans-serif;
}
.hero-blur-box {
  padding: 30px 50px;
  min-width: 520px;
}

.hero-content h1 {
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-content span {
  display: inline-block;
  margin-top: 10px;
}
/* CHAT BUTTON */
.chat-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #1e1e1e;
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  z-index: 99;
}

/* ===== HERO: Responsive adjustments (tablet + mobile) ===== */
/* Tablet: widths <= 1199px */
@media (max-width: 1199px) {
  .hero {
    height: 75vh;
    padding-left: 40px;
    padding-top: 40px;
    align-items: flex-start;
    justify-content: flex-start;
    background-position: center top;
  }

  .hero-overlay {
    background: rgba(0,0,0,0.5);
  }

  .hero-content {
    max-width: 520px;
  }

  .hero-blur-box {
    width: calc(100% - 80px);
    max-width: 640px;
    padding: 36px 30px;
    min-height: 180px;
    margin: 100px 0 0 0;
    text-align: left;
    border-radius: 8px;
    backdrop-filter: blur(8px);
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.15;
  }

  .hero-content span {
    font-size: 30px;
  }

  .chat-btn {
    bottom: 26px;
    right: 22px;
    padding: 12px 18px;
    font-size: 13px;
  }
}

/* Mobile: widths <= 768px (centered stacked hero content) */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 56vh;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
  }

  .hero-overlay {
    background: rgba(0,0,0,0.55);
  }

  .hero-content {
    max-width: 92%;
    margin: 0 auto;
    width: 100%;
  }

  .hero-blur-box {
    width: 100%;
    max-width: 520px;
    padding: 20px 18px;
    min-height: auto;
    margin: 0;
    margin-left: -96px;
    text-align: center;
    border-radius: 10px;
    backdrop-filter: blur(6px);
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 8px;
  }

  .hero-content span {
    display: block;
    font-size: 30px;
    margin-top: 8px;
  }

  .chat-btn {
    bottom: 18px;
    right: 16px;
    padding: 12px 16px;
    font-size: 13px;
    border-radius: 8px;
  }
}

  /* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* PAGE BACKGROUND */
body {
  font-family: Arial, Helvetica, sans-serif;
  background:#1c2e66
}

/* SECTION */
.manikin-section {
  padding: 40px;
}

/* MAIN CONTAINER */
.manikin-container {
  display: flex;
  align-items: center;
  gap: 40px;
  background:#001248;
  padding: 30px;
  position: relative;
}

/* Duplicate title element used only for mobile/tablet reordering */
.content-title { display: none; }

/* Scoped mobile/tablet reorder for manikin pages */
@media (max-width: 1024px) {
  .manikin-section.manikin-reorder .manikin-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    align-items: center;
  }

  /* show duplicate title above image, hide desktop title */
  .manikin-section.manikin-reorder .content-title { display: block; }
  .manikin-section.manikin-reorder .content-title h2 { color: red; font-size: 34px; margin: 0; text-align: center; }
  .manikin-section.manikin-reorder .content-box .title { display: none; }

  /* center image and make it responsive */
  .manikin-section.manikin-reorder .image-box { order: 2; display: flex; justify-content: center; }
  .manikin-section.manikin-reorder .image-box img { width: 100%; max-width: 480px; height: auto; }

  /* description block follows image */
  .manikin-section.manikin-reorder .content-box { order: 3; width: 100%; max-width: 720px; }

  /* make desc label flow with content */
  .manikin-section.manikin-reorder .desc-label {
    position: relative;
    top: auto;
    left: auto;
    min-width: auto;
    display: inline-block;
    margin-bottom: 8px;
  }

  /* center MANIKIN DETAIL heading below the section */
  .manikin-wrapper-title-lable h2 { text-align: center; margin: 0; }
}

/* Tweak further for small phones */
@media (max-width: 480px) {
  .manikin-section.manikin-reorder .content-title h2 { font-size: 28px; }
  .manikin-section.manikin-reorder .image-box img { max-width: 360px; }
  .manikin-section.manikin-reorder .desc-label { font-size: 24px; padding: 10px 20px; }
  .manikin-section.manikin-reorder .description { font-size: 18px; }
}

/* IMAGE BOX */
.image-box {
  position: relative;
  display: inline-block;   /* IMPORTANT */
  background:url(/static_files/images/background_glass.jpg);
  padding: -2px;
  z-index: 1;   /* NEW */
}

.image-box::after {
  content: "";
  position: absolute;
  top: -16px;          /* shift down a bit */
  right: 9px;      /* push to the right */
  width: 100%;
  height: 100%;
    /* ONLY top & left border */
  border-top: 4px solid red;
  border-left: 4px solid red;

  z-index:-2;        /* behind */
}

/* PARTIAL bottom border */
.image-box::before {
  content: "";
  position: absolute;
  bottom: 10px;        /* distance from image */
  left: -12px;          /* start position */
  width: 12px;         /* LENGTH of bottom border */
  height: 4px;
  background: red;

  z-index: -2;
}
/* PARTIAL right border */
.image-box .right-border {
  position: absolute;
  right:9px; /* distance from image */
  top:-16px;
  width: 4px;        /* thickness */
  height: 16px;   /* length */
  background: red;
  z-index: -2;
}



.image-box img {
  width: 450px;
  display: block;
  position: relative;
  z-index: 2;   /* BETWEEN before & after */
}
/* CONTENT */
.content-box {
  color: white;
  max-width: 500px;
}

/* TITLE */
.title {
  color: red;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 150px;
  margin-top: 30px;
}



.desc-label {
  position: absolute;
  display: inline-block;
  background: white;
  color: #0b1e5b;
  padding: 14px 30px;
  min-width: 350px;
  font-size: 35px;
  font-weight: bold;
  top: 240px;
  left: 480px;
}

/* LEFT partial border */
.desc-label::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 10px;
  width: 4px;
  height: 18px;
  background: red;
}

/* RIGHT partial border */
.desc-label::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 68px;
  width: 4px;
  height: 12px;
  background: red;
}

/* TOP partial border */
.desc-label span {
  position: absolute;
  top: -12px;      /* above label */
  left:-14px;         /* start position */
  width: 100%;      /* length of top line */
  height: 4px;
  background: red;
}


/* TEXT */
.description {
  font-size: 21px;
  line-height: 1.4;
  color: #dce6ff;
}



/* WRAPPER */
.manikin-wrapper-title {
    background-color: rgb(0, 18, 72);
    height: 94px;
    width: 372px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 11.5rem;
    margin-top: 5.9rem;
}

.manikin-wrapper-title-lable{
    color: rgb(255, 0, 0);
    font-size: 25px;
    
}

.manikin-wrapper-title2 {
        background-color: rgb(0, 18, 72);
    height: 30rem;
    width: 79rem;
    display: flex;
    justify-content: center;
    margin-left: 2.5rem;
    margin-top: -9.1rem;
   padding-top: 3rem;
    display: flex;
    flex-direction: column;      /* STACK title + table */
    align-items: center;         /* center horizontally */
margin-bottom: 3.5rem;
    }

.manikin-wrapper-title-lable2{
    color: rgb(255, 0, 0);
    font-size: 40px;
    margin-bottom: 2.5rem;      /* space before table */
}

.manikin-wrapper {
    display: flex;
    gap: 40px;
    padding: 227px;
    background: transparent; /* optional page background */
        margin-top: -11rem;
}

/* LEFT TABS */
.manikin-tabs {
    width: 280px;
   
}

.manikin-tab {
    width: 100%;
    background: #001248;
    border: 1px solid #2f4aa0;
    color: #ffffff;
    padding: 14px 16px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.manikin-tab:hover {
    background: #002070;
}

.manikin-tab.active {
    background: #ffffff;
    color: #1b2f6b;
    width: 280px;
  height:44px; 
}

/* ARROW */
.manikin-tab span {
    display: none;
    border: 2px solid #1b2f6b;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 14px;
    align-items: center;
    justify-content: center;
}

.manikin-tab.active span {
    display: flex;
}

/* RIGHT CONTENT */
.manikin-content {
    flex: 1;
    color: #e0e0e0;
}

.manikin-panel {
    display: none;
}

.manikin-panel.active {
    display: block;
}

.manikin-panel ul {
    padding-left: 20px;
}

.manikin-panel li {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.7;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
  /* MOBILE ACCORDION */
@media (max-width: 768px) {

    .manikin-wrapper {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    /* Tabs become full-width cards */
    .manikin-tab {
        width: 100%;
        background: #001248;
        color: #ffffff;
        margin-bottom: 4px;
        text-align: left;
        padding: 14px 16px;
        border-radius: 8px;
        border: 1px solid #2f4aa0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    /* Arrow */
    .manikin-tab span {
        display: inline-flex;
        transition: transform 0.3s ease;
    }

    .manikin-tab.active span {
        transform: rotate(90deg);
    }

    /* Panels hidden by default */
    .manikin-panel {
        display: none;
        background: #f9f9f9;
        color: #000;
        padding: 12px 16px;
        margin-bottom: 8px;
        border-radius: 0 0 8px 8px;
        border: 1px solid #ddd;
        border-top: none;
    }

    .manikin-panel li {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 6px;
    }

    .manikin-content {
        width: 100%;
        padding: 0;
    }
}

/* Small phones adjustments */
@media (max-width: 480px) {
    .manikin-tab {
        font-size: 15px;
        padding: 12px 14px;
    }

    .manikin-panel li {
        font-size: 15px;
    }
}
/* TABLE */
.spec-table {
  width: 967px;
  border-collapse: collapse;
  border: 2px solid #000;
  background: #ffffff;
}

/* HEADER */
.spec-table th {
  background: #ff0000;
  color: #fff;
  font-size: 22px;
  padding: 10px;
  border: 2px solid #000;
  text-align: center;
}

/* CELLS */
.spec-table td {
  border: 2px solid #000;
  padding: 8px 10px;
  font-size: 15px;
}

/* LEFT LABEL */
.label {
  width: 30%;
  font-weight: bold;
  text-align: center;
}

/* MIDDLE DIVIDER */
.divider {
  width: 40%;
  position: relative;
  text-align: center;
}

/* RIGHT VALUE */
.value {
  width: 30%;
  text-align: center;
  font-weight: bold;
}
/* =========================
   MOBILE RESPONSIVE
   ========================= */
@media (max-width: 768px) {

  body {
    padding: 0px;
    margin-right: -14px;
  }

  .spec-table {
    width: 100%;
    font-size: 14px;
  }

  /* Header */
  .spec-table th {
    font-size: 18px;
    padding: 8px;
  }

  /* Cells */
  .spec-table td {
    padding: 6px;
    font-size: 14px;
  }

  /* Column widths */
  .label,
  .value {
    width: 50%;
  }
}

/* =========================
   SMALL PHONES
   ========================= */
@media (max-width: 480px) {

  .spec-table th {
    font-size: 16px;
  }

  .spec-table td {
    font-size: 13px;
    padding: 5px;
  }

  .label {
    font-size: 13px;
  }

  .value {
    font-size: 13px;
  }
}

/* =========================
   FINAL MANIKIN PAGE FIXES
   ========================= */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #1c2e66;
}

img {
  max-width: 100%;
  height: auto;
}

.hero {
  min-height: clamp(340px, 62vh, 760px);
  height: auto;
  padding: 32px 20px 48px;
  align-items: center;
}

.hero-content {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.hero-blur-box {
  width: min(100%, 760px);
  min-width: 0;
  min-height: auto;
  margin: clamp(70px, 12vh, 160px) 0 0;
  padding: clamp(22px, 4vw, 44px);
  border-radius: 18px;
}

.hero-content h1,
.hero-content span {
  font-size: clamp(2rem, 4.2vw, 4.25rem);
  line-height: 1.1;
}

.manikin-section,
.manikin-wrapper,
.manikin-wrapper-title,
.manikin-wrapper-title2 {
  width: min(calc(100% - 32px), 1200px);
  margin-left: auto;
  margin-right: auto;
}

.manikin-section {
  padding: clamp(24px, 4vw, 48px) 0;
}

.manikin-container {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(20px, 4vw, 40px);
  border-radius: 28px;
  overflow: hidden;
}

.image-box {
  width: 100%;
  max-width: 430px;
  padding: 0;
}

.image-box::after {
  top: -14px;
  left: -14px;
  right: 14px;
  width: auto;
  height: calc(100% + -5px);
  border-top: 4px solid red;
  border-left: 4px solid red;
}

.image-box::before {
  left: -14px;
  bottom: 14px;
  width: 18px;
  height: 4px;
}

.image-box .right-border {
  top: -14px;
  right: 14px;
  width: 4px;
  height: 18px;
}

.image-box img {
  width: 100%;
  max-width: 430px;
}

.content-box {
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.desc-label {
  position: relative;
  top: auto;
  left: auto;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  padding: 14px 26px;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.1;
  z-index: 0;
}

.desc-label::before {
  
    content: "";
    position: absolute;
    top: -10px;
    left: -12px;
    width: 100%;
    height: 100%;
    border: 3px solid red;
   z-index: 1;
    background-color: transparent;

}

.desc-label::after {
  display: none;
}

.desc-label span {
  display: none;
}

.description {
  margin: 0;
  max-width: 65ch;
  font-size: clamp(1rem, 1.5vw, 1.3125rem);
  line-height: 1.75;
}

.manikin-wrapper-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(calc(100% - 32px), 380px);
  min-height: 88px;
  height: auto;
  margin-top: 0;
  padding: 18px 24px;
  border-radius: 20px;
}

.manikin-wrapper-title-lable,
.manikin-wrapper-title-lable2 {
  width: 100%;
  text-align: center;
}

.manikin-wrapper-title-lable h2,
.manikin-wrapper-title-lable2 h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  line-height: 1.2;
}

.manikin-wrapper {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(20px, 4vw, 40px);
  padding: 32px 0 56px;
  margin-top: 0;
}

.manikin-tabs {
  width: 100%;
}

.manikin-tab,
.manikin-tab.active {
  width: 100%;
  height: auto;
  min-height: 52px;
  border-radius: 12px;
}

.manikin-content {
  min-width: 0;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.manikin-panel ul {
  padding-left: 20px;
}

.manikin-panel ul ul {
  margin-top: 10px;
}

.manikin-panel li {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.75;
  word-break: break-word;
}

.manikin-wrapper-title2 {
  width: min(calc(100% - 32px), 1200px);
  height: auto;
  min-height: 0;
  margin-top: 0;
  margin-bottom: 56px;
  padding: 32px 20px;
  border-radius: 28px;
}

.spec-table {
  width: min(100%, 960px);
  margin: 0 auto;
  table-layout: fixed;
}

.spec-table th,
.spec-table td {
  word-break: break-word;
}

@media (max-width: 1024px) {
  .manikin-container,
  .manikin-wrapper {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-blur-box {
    margin-top: 80px;
  }

  .image-box,
  .content-box,
  .description,
  .manikin-tabs {
    width: 100%;
  }

  .image-box {
    margin: 0 auto;
  }

  .manikin-content {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    padding: 16px;
  }

  .manikin-panel {
    background: transparent;
    color: #ffffff;
    border: 1px solid #d7def8;
    border-radius: 14px;
    margin-bottom: 10px;
    padding: 14px 16px;
  }

  .manikin-panel.active {
    animation: panelFadeIn 350ms ease both;
  }

  .content-box {
    align-items: center;
    text-align: center;
  }

  .description {
    max-width: 100%;
  }

  .desc-label {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 300px;
    padding: 24px 16px 36px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-blur-box {
    margin: 56px auto 0;
    text-align: center;
  }

  .manikin-section,
  .manikin-wrapper,
  .manikin-wrapper-title,
  .manikin-wrapper-title2 {
    width: min(calc(100% - 24px), 1200px);
  }

  .manikin-container {
    gap: 20px;
    padding: 20px 16px;
    border-radius: 20px;
  }

  .image-box {
    max-width: 360px;
  }

  .manikin-wrapper-title {
    width: min(calc(100% - 24px), 360px);
    min-height: 74px;
    padding: 16px 18px;
  }

  .manikin-wrapper {
    gap: 14px;
    padding: 24px 0 40px;
  }

  .manikin-content {
    padding: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    backdrop-filter: blur(8px);
  }

  .manikin-tab {
    margin-bottom: 6px;
  }

  .manikin-tab span {
    display: inline-flex;
  }

  .manikin-panel {
    background: transparent;
    color: #ffffff;
    padding: 14px 16px;
    margin-bottom: 10px;
    border: 1px solid #d7def8;
    border-radius: 14px;
  }

  .manikin-panel.active {
    animation: panelFadeIn 350ms ease both;
  }

  .manikin-wrapper-title2 {
    padding: 24px 14px;
    margin-bottom: 40px;
  }

  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table {
    border: 2px solid #000;
  }

  .spec-table tr {
    border-bottom: 1px solid #000;
  }

  .spec-table tr:last-child {
    border-bottom: 0;
  }

  .spec-table th {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 2px solid #000;
  }

  .spec-table td {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
    padding: 10px 12px;
    text-align: left;
  }

  .spec-table td.label {
    width: 100%;
    background: #eef3ff;
  }

  .spec-table td.value {
    width: 100%;
    font-weight: 700;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-bottom: 28px;
  }

  .hero-blur-box {
    padding: 18px 16px;
  }

  .manikin-section,
  .manikin-wrapper,
  .manikin-wrapper-title,
  .manikin-wrapper-title2 {
    width: min(calc(100% - 16px), 1200px);
  }

  .manikin-container {
    padding: 18px 14px;
  }

  .image-box {
    max-width: 300px;
  }

  .image-box::after {
    top: -10px;
    left: -10px;
    right: 10px;
    height: calc(100% + -3px);
    border-top-width: 3px;
    border-left-width: 3px;
  }

  .image-box::before {
    left: -10px;
    bottom: 10px;
    width: 14px;
    height: 3px;
  }

  .image-box .right-border {
    top: -10px;
    right: 10px;
    width: 3px;
    height: 14px;
  }

  .desc-label {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }

  .desc-label::before,
  .desc-label::after,
  .desc-label span {
    display: none;
  }

  .manikin-wrapper-title,
  .manikin-wrapper-title2 {
    border-radius: 18px;
  }

  .manikin-panel li,
  .description {
    line-height: 1.65;
  }
}




