html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  min-height: 200vh;
  background: #181c24 !important;
  color: #e0e6ed;
  font-family: Arial, sans-serif;
}
.hero {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 2;
  background: none;
  pointer-events: none;
}
.hero-img-anim {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(.4,2,.6,1), opacity 0.7s;
  will-change: transform, opacity;
  z-index: 5;
  pointer-events: none;
}
.specializing-section {
  background: #181c24;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s;
  gap: 0;
  padding: 0;
}
.specializing-section .specializing-center-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.specializing-section.visible {
  opacity: 1;
  pointer-events: auto;
}
.specializing-section > .specializing-text,
.specializing-section > .rotating,
.specializing-section > .continue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.specializing-section > .specializing-text {
  margin-bottom: 0.5em;
}
.specializing-section > .rotating {
  margin-bottom: 0;
}
.specializing-section > .continue-btn {
  margin-top: 0.5em;
}
.specializing-text {
  color: #e0e6ed;
  text-shadow: 0 2px 8px #000;
  font-size: 2.2rem;
  text-align: center;
  align-self: center;
  margin-bottom: 0.5em;
}
.rotating {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  transition: min-width 0.3s, padding 0.3s;
  background: #23283a;
  border-radius: 1em;
  padding: 0.3em 1.2em;
  min-width: 0;
  box-sizing: border-box;
  border: 2px solid #353b4a;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18);
  margin-bottom: 0;
  vertical-align: middle;
  position: relative;
  color: #3fa7ff;
}
#rotatingImg {
  width: 2.2em;
  height: 2.2em;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 0.7em;
  transition: width 0.3s, height 0.3s;
}
#rotatingLabel {
  display: inline-block;
  vertical-align: middle;
}
.split-section {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 3;
  display: flex;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s;
}
.split-section.visible {
  opacity: 1;
  pointer-events: auto;
}
.split-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: #e0e6ed;
  cursor: pointer;
  user-select: none;
  height: 100vh;
  transition: background 0.3s;
}
.split-left {
  background: linear-gradient(135deg, #23283a 80%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.split-right {
  background: linear-gradient(315deg, #23283a 80%, transparent 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.contact-section {
  min-height: 100vh;
  background: #23283a;
  color: #e0e6ed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0 40px 0;
  position: relative;
  z-index: 1;
}
.contact-section h2 {
  margin-bottom: 24px;
  color: #3fa7ff;
  font-family: Impact, Charcoal, sans-serif;
}
.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 300px;
}
.contact-section input, .contact-section textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1.5px solid #353b4a;
  background: #181c24;
  color: #e0e6ed;
}
.contact-section button {
  padding: 10px;
  border-radius: 6px;
  border: none;
  background: #3fa7ff;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  margin-top: 8px;
}
.contact-form-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.continue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 40px;
  background: #23283a;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.25);
  width: 72px;
  height: 72px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  outline: none;
  position: relative;
}
.continue-btn svg {
  display: block;
  margin: auto;
}
.continue-btn:active {
  background: #353b4a;
  transform: scale(0.95);
}
.continue-btn:focus {
  box-shadow: 0 0 0 3px #3fa7ff;
}
.specializing-text,
.rotating,
.split-option,
.split-triangle > span,
h1, h2, h3, h4, h5, h6 {
  font-family: Impact, Charcoal, sans-serif !important;
}
.card, .contact-info, .contact-form-bg, .masonry-item {
  background: #23283a !important;
  color: #e0e6ed !important;
  border-radius: 18px !important;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18) !important;
}
.card-divider {
  border-top: 1.5px solid #3fa7ff !important;
}
.card-jobtitle, .contact-info h2, .card-subtitle {
  color: #3fa7ff !important;
}
.card-desc, .contact-info a, .contact-info span, .contact-form-bg label, .contact-form-bg input, .contact-form-bg textarea {
  color: #b0c4de !important;
}
/* Hamburger Menu Styles */
.hamburger-btn {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
}
.hamburger-btn img {
  display: block;
  width: 38px;
  height: 38px;
}
.hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: #23283a;
  box-shadow: 2px 0 16px rgba(0,0,0,0.25);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.4,2,.6,1);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  padding-top: 32px;
}
.hamburger-menu.open {
  transform: translateX(0);
}
.close-menu-btn {
  background: none;
  border: none;
  color: #e0e6ed;
  font-size: 2rem;
  position: absolute;
  top: 12px;
  right: 16px;
  cursor: pointer;
  z-index: 1003;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 48px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.menu-list li a {
  color: #e0e6ed;
  text-decoration: none;
  font-size: 1.18rem;
  display: flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 6px;
  transition: background 0.2s;
}
.menu-list li a:hover, .menu-list li a:focus {
  background: #2d3350;
}
.menu-icon {
  margin-right: 14px;
  font-size: 1.4em;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .hero-img-anim {
    width: 120px;
    height: 120px;
  }
  .hero img { width: 120px; height: 120px; }
  .hero-text, .rotating { font-size: 1.3rem; }
  .specializing-section {
    flex-direction: column;
    gap: 8px;
  }
  .rotating {
    padding: 0.2em 0.7em;
    gap: 8px;
  }
  .specializing-text { font-size: 1.1rem; }
  #rotatingImg {
    width: 1.3em;
    height: 1.3em;
    margin-right: 0.4em;
  }
  .hamburger-menu {
    width: 80vw;
    min-width: 180px;
    max-width: 320px;
  }
}
