body {
  background-color: #1d2939;
  font-family: "Inter", sans-serif;
}

section {
  padding: 7.5rem 0;
}

@font-face {
  font-family: 'DressCode';
  src: url('../fonts/dresscode-regularround-webfont.woff2') format('woff2'),
       url('../fonts/dresscode-regularround-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.dress-code{
  font-family: 'DressCode', Arial, sans-serif;
}

.tracking-wide {
  letter-spacing: 0.1em;
}

/* Full Page Video Background */
.site-bg-video-wrapper {
  position: relative;
  min-height: 100vh;
}

.site-bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.25;
}

.site-bg-content {
  position: relative;
  z-index: 2;
}

.timeline-circle-right {
  position: absolute;
  right: 24px;
  left: auto;
  margin-right: 0;
  margin-left: auto;
}

.timeline-circle-left {
  position: absolute;
  left: 24px;
  right: auto;
  margin-left: 0;
  margin-right: auto;
}

.timeline-line-fullwidth {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 1px;
  background: #dee2e6;
  transform: translateY(-50%);
  z-index: 0;
}
.bg-custom-gradient {
  background: linear-gradient(
    to right,
    rgba(71, 84, 103, 0.32),
    rgba(102, 112, 133, 0.32)
  );
}

.bg-custom-diagonal-gradient {
  background: linear-gradient(
    135deg,
    rgba(71, 84, 103) 0%,
    rgba(102, 112, 133) 100%
  );
}

.text-grey {
  color: #898989;
}

.services li span {
  padding: 0.5rem 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}

@media (max-width: 767px) {
  .services li span {
    padding: 0;
    border-bottom: 0;
  }
  .services li {
    padding: 0.5rem 0;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
  }
}

.border-custom {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
}

.footer-border {
  border-top: 0.5px solid #fff;
}

.timeline-line {
  width: 100vw;
  height: 1px;
  background-color: #dee2e6;
  z-index: 0;
}

.timeline-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 0 0 1px #dee2e6;
  border: none;
}

@media (max-width: 767px) {
  #footer-links li {
    border-bottom: 1px solid #dee2e6;
  }
}

.pill-overlap {
  padding-right: 3.5rem; /* make space for circle */
  overflow: visible;
}

.contact-btn {
  height: 60px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  width: 75%;
}

.submit-btn {
  border: 1px solid var(--Gray-300, #d0d5dd);
  background:
    linear-gradient(
      90deg,
      rgba(71, 84, 103, 0.59) 0%,
      rgba(102, 112, 133, 0.59) 100%
    ),
    rgba(255, 255, 255, 0.1);
  /* Shadow/xs */
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}

.submit-btn:hover {
  background: transparent;
  color: #fff;
}

.color-muted {
  color: #98a2b3;
}

@media (max-width: 767px) {
  .contact-btn {
    width: 100%;
  }
}

.gradient-check:checked {
  background-image:
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e"),
    linear-gradient(135deg, rgba(71, 84, 103) 0%, rgba(102, 112, 133) 100%);
  border-color: white;
}

.gradient-check:focus {
  box-shadow: 0 0 0 0.25rem rgba(106, 17, 203, 0.25);
}

.services-title {
  letter-spacing: 2.4px;
}

/* Ring Animation */

.ring-animation {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 130px;
  height: 130px;
  animation: spin 10s linear infinite;
}

.logo {
  width: 100%;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  .ring-animation {
    bottom: -20px;
    right: 20px;
    width: 90px;
    height: 90px;
  }
  .logo {
    width: 75%;
  }
}

/* ── Contact Button ── */
.contact-btn {
  width: 60px !important;
  border-radius: 50% !important;
  border-color: transparent !important;
  transition:
    width 2s cubic-bezier(0.77, 0, 0.18, 1),
    border-radius 2s cubic-bezier(0.77, 0, 0.18, 1),
    border-color 0.6s ease 0.8s;
}

.contact-btn span:first-child {
  opacity: 0;
  transform: translateX(-6px);
  white-space: nowrap;
  transition:
    opacity 0.5s ease 1.2s,
    transform 0.6s cubic-bezier(0.33, 1, 0.68, 1) 1.2s;
}

.contact-btn.expanded {
  width: 260px !important;
  border-radius: 999px !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}

.contact-btn.expanded span:first-child {
  opacity: 1;
  transform: translateX(0);
}

.contact-btn.expanded .arrow-circle {
  transform: rotate(360deg);
}

/* ── Arrow Circle ── */
.arrow-circle {
  height: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(90deg, rgba(71, 84, 103, 0.3) 0%, rgba(102, 112, 133, 0.3) 100%);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  outline: 0.5px solid rgba(255, 255, 255, 0.6);
  right: 0;
  top: 0;
  transition: transform 2s cubic-bezier(0.77, 0, 0.18, 1);
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .contact-btn {
    width: 40px !important; /* match mobile height so it's a true circle */
    height: 40px !important; /* ← this is missing */
  }
  
  .contact-btn.expanded {
    width: 150px !important;
    height: 40px !important;
  }

  .arrow-circle {
    max-height: 40px;
  }
}

@keyframes spin {
			0% {
				transform: rotate(0deg);
			}
			100% {
				transform: rotate(360deg);
			}
		}