html,
body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
}


/* background  code  */
.background {
  position: fixed;
  inset: -1em;
  --c: 7px;
  background-color: #000;
  background-image: radial-gradient(circle at 50% 50%,
      #0000 1.5px,
      #000 0 var(--c),
      #0000 var(--c)),
    radial-gradient(circle at 50% 50%,
      #0000 1.5px,
      #000 0 var(--c),
      #0000 var(--c)),
    radial-gradient(circle at 50% 50%, #f00, #f000 60%),
    radial-gradient(circle at 50% 50%, #ff0, #ff00 60%),
    radial-gradient(circle at 50% 50%, #0f0, #0f00 60%),
    radial-gradient(ellipse at 50% 50%, #00f, #00f0 60%);
  background-size:
    12px 20.7846097px,
    12px 20.7846097px,
    200% 200%,
    200% 200%,
    200% 200%,
    200% 20.7846097px;
  --p: 0px 0px, 6px 10.39230485px;
  background-position:
    var(--p),
    0% 0%,
    0% 0%,
    0% 0px;
  animation:
    wee 40s linear infinite,
    filt 6s linear infinite;
  z-index: -1;
}

@keyframes filt {
  0% {
    filter: hue-rotate(0deg);
  }

  to {
    filter: hue-rotate(360deg);
  }
}

@keyframes wee {
  0% {
    background-position:
      var(--p),
      800% 400%,
      1000% -400%,
      -1200% -600%,
      400% 41.5692194px;
  }

  to {
    background-position:
      var(--p),
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%;
  }
}

/* top manu code  */
.mode+.container {
  --color-pure: #000;
  --color-primary: #e8e8e8;
  --color-secondary: #212121;
  --muted: #b8b8b8;
}

.mode:checked+.container {
  --color-pure: #fff;
  --color-primary: #212121;
  --color-secondary: #fff;
  --muted: #383838;
}

.container {
  background-color: var(--color-secondary);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0.75rem 0;
  z-index: 20;
}

.container .theme {
  color: var(--color-secondary);
  background-color: var(--color-primary);
  position: relative;
  cursor: pointer;
  z-index: 9;
  -webkit-user-select: none;
  user-select: none;
  border: 1px solid var(--muted);
  border-radius: calc(var(--round) - var(--p-y));
  margin-left: calc(var(--p-x) * 2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: background-color 0.25s linear;
}

.container .theme:hover {
  background-color: var(--muted);
}

.container .theme::before {
  content: "";
  position: absolute;
  left: calc(var(--p-x) * -1);
  width: 1px;
  height: 100%;
  background-color: var(--muted);
}

.container .theme span {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0.125rem;
  border-radius: 9999px;
  align-items: center;
  justify-content: center;
}

.mode:checked+.container .theme span.light,
.mode+.container .theme span.dark {
  display: none;
}

.mode+.container .theme span.light,
.mode:checked+.container .theme span.dark {
  display: flex;
}

.container .theme svg {
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke: currentColor;
  fill: none;
  height: 22px;
  width: 22px;
}

/* main style */
.wrap {
  --round: 10px;
  --p-x: 8px;
  --p-y: 4px;
  --w-label: 100px;
  display: flex;
  align-items: center;
  padding: var(--p-y) var(--p-x);
  position: relative;
  background: #ffffff;
  border-radius: var(--round);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  top: 0;
  z-index: 1;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.label {
  cursor: pointer;
  outline: none;
  font-size: 0.875rem;
  letter-spacing: initial;
  font-weight: 500;
  color: #252525;
  background: #ffffff;
  padding: 12px 16px;
  width: var(--w-label);
  min-width: var(--w-label);
  text-decoration: none;
  -webkit-user-select: none;
  user-select: none;
  transition: color 0.25s ease, background-color 0.25s ease;
  outline-offset: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  border-radius: 999px;
  -webkit-tap-highlight-color: transparent;
}

.label span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 1;
}

.label:hover,
.label:focus {
  color: #09090b;
  background-color: rgba(235, 235, 245, 0.95);
}

.bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  transform-origin: 0 0 0;
  height: 100%;
  width: var(--w-label);
  z-index: 0;
  transition: transform 0.5s cubic-bezier(0.33, 0.83, 0.99, 0.98);
}

.bar::before,
.bar::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--color-secondary);
}

.bar::before {
  top: 0;
  border-radius: 0 0 9999px 9999px;
}

.bar::after {
  bottom: 0;
  border-radius: 9999px 9999px 0 0;
}

.slidebar {
  position: absolute;
  height: calc(100% - (var(--p-y) * 4));
  width: var(--w-label);
  border-radius: calc(var(--round) - var(--p-y));
  background: var(--muted);
  transform-origin: 0 0 0;
  z-index: 0;
  transition: transform 0.5s cubic-bezier(0.33, 0.83, 0.99, 0.98);
}

.wrap a:nth-of-type(1):hover~.slidebar {
  transform: translateX(0) scaleX(1);
}

.wrap a:nth-of-type(2):hover~.slidebar {
  transform: translateX(100%) scaleX(1);
}

.wrap a:nth-of-type(3):hover~.slidebar {
  transform: translateX(200%) scaleX(1);
}

.wrap a:nth-of-type(4):hover~.slidebar {
  transform: translateX(300%) scaleX(1);
}

.wrap a:nth-of-type(5):hover~.slidebar {
  transform: translateX(400%) scaleX(1);
}

.contact-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 56px;
  position: relative;
  z-index: 1;
}

.contact-hero {
  max-width: 720px;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #f7d86b;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1;
}

.intro {
  margin: 16px 0 0;
  color: #f2f2f2;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 24px;
  align-items: start;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.detail-card,
.map-card,
.contact-form {
  background: rgba(255, 255, 255, 0.92);
  color: #151515;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.detail-card {
  min-height: 110px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.detail-label {
  color: #5f5f5f;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-card a,
.detail-card address {
  color: #111111;
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.detail-card a:hover {
  color: #c52626;
}

.map-card {
  grid-column: 1 / -1;
  padding: 20px;
}

.map-card iframe {
  width: 100%;
  height: 300px;
  margin-top: 12px;
  border: 0;
  border-radius: 8px;
  display: block;
}

.contact-form {
  padding: 24px;
}

.contact-form h2 {
  margin: 0 0 18px;
  color: #111111;
  font-size: 1.6rem;
}

.contact-form label {
  display: block;
  margin: 14px 0 7px;
  color: #262626;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #ffffff;
  color: #151515;
  font: inherit;
  padding: 12px 13px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #c52626;
  box-shadow: 0 0 0 3px rgba(197, 38, 38, 0.15);
}

.contact-form button {
  width: 100%;
  margin-top: 18px;
  border: 0;
  border-radius: 8px;
  background: #c52626;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 14px 18px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: #9f1f1f;
  transform: translateY(-1px);
}

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

  .contact-page {
    padding-top: 116px;
  }
}

@media (max-width: 620px) {
  .contact-page {
    width: min(100% - 24px, 1120px);
    padding-top: 110px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .detail-card,
  .map-card,
  .contact-form {
    padding: 18px;
  }

  .map-card iframe {
    height: 240px;
  }

  .wrap {
    justify-content: flex-start;
  }
}