body {
    background: #28273B;
    color: #fff;
    font-family: 'Instrument Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

a, .primary {
    color: #04BBA9;
}

h1, h2, h3, h4, h5, h6 {
    color: #fff;
}

/* Ensure the navbar can stick and stay above content */
.site-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 54px;
    padding-left: 115px;
    padding-right: 115px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #28273B; /* keeps content from showing through while stuck */
}

.site-logo {
    width: 200px;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center; /* Ensure vertical alignment */
}

.site-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    transition: color 0.2s;
    display: flex;
    align-items: center; /* Align text and arrow vertically */
    height: 40px; /* Ensures consistent height */
}

/* Active nav state shows bold + italic */
.site-nav a.active {
  font-weight: 700;
  font-style: italic;
}

.contact-btn {
    border: 2px solid #04BBA9;
    /* border-radius: 32px; */
    /* padding: 29px 39px 29px 39px; Increased padding */
    padding: 20px 33px 20px 33px; /* Increased padding */
    color: #04BBA9;
    background: none;
    font-weight: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.2s, color 0.2s;
    height: 48px; /* Increased height */
    box-sizing: border-box;
}

.contact-btn .arrow {
    font-size: 1.2em;
    color: #04BBA9;
    margin-left: 8px;
}

.contact-btn:hover {
    color: #fff;
    border-color: #fff;
}

.contact-btn:hover .arrow {
    color: #fff;
}

.main-header {
    text-align: center;
    margin-top: 318px;
}

.main-title {
    text-transform: uppercase;
    font-size: 50PX;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
}

.moving-text {
    color: #04BBA9;
    display: inline-block;
    animation: bounce 1s infinite alternate;
    font-weight: 700;
    font-style: bold;
}

@keyframes bounce {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-18px); }
}

.chat-link {
    display: inline-block;
    margin-top: 25px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;
}

.chat-link:hover {
    color: #04BBA9;
}

.chat-arrow {
    margin-left: 8px;
    color: #ffffff;
    font-size: 1.2em;
    transition: color 0.2s;
}

.chat-link:hover .chat-arrow {
    color: #04BBA9;
}

.podium-row {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    margin-top: 260px; /* Increased from 80px to 160px for more space */
}

.podium-box {
    width: 360px;   /* was 319px */
    height: 460px;  /* was 407px */
    background: #23223A;
    /* border-radius: 32px; */
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 11px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
}

.podium-box:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 42px rgba(0,0,0,0.24);
}

.podium-img {
    /* remove rounded edges and fill the box */
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 !important;
}

.center-box {
    margin-bottom: 50px; /* was 40px */
}

.left-box {
    position: relative;
}

.right-box {
    /* Same height, no margin-bottom */
    position: relative;
}

/* Make these sections positioning contexts for the stickers */
.podium-row { position: relative; }
.feature-section { position: relative; }

/* Left sticker (OUR WORK) – already present */
.curved-text-container {
  position: absolute;
  top: -55px;
  left: 10px;
  z-index: 20;
  pointer-events: none;
  transform: rotate(-18deg);
}

/* Right sticker (GET TO KNOW US) */
.curved-text-container--right {
  position: absolute;
  top: -55px;
  right: 10px;
  left: auto;
  z-index: 20;
  pointer-events: none;
  transform: rotate(18deg);
}

/* Optional: size control for the circular sticker */
.curved-text-container svg,
.curved-text-container--right svg {
    width: 220px;
    height: 220px;
    transform-box: fill-box;
    transform-origin: center;
}

/* Your existing styling already colors it primary */
.curved-text-container text,
.curved-text-container--right text {
    fill: #04BBA9;
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 13px; /* was 2px: space letters a bit more */
}

/* Spin on hover */
@keyframes spin {
    to { transform: rotate(360deg); }
}
/* Hover the sticker to spin the text in place */
.curved-text-container:hover svg,
.curved-text-container--right:hover svg {
    animation: spin 6s linear infinite;
}

.feature-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 64px;
    margin-top: 120px;
    margin-bottom: 15em;
}

.feature-image-box {
    width: 483px;
    height: 677px;
    background: #23223A;
    /* border-radius: 32px; */
    border: 11px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-img {
    /* if needed for the large image box too */
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 !important;
}

.feature-content {
    flex: 1;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-title {
    font-size: 2.4rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
}

.feature-title-highlight {
    font-weight: 700;
    color: #04BBA9;
}

.feature-text {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 24px;
}

.feature-btn {
    display: inline-block;
    margin-bottom: 32px;
}

/* FAQ modifications */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 24px; /* Increased padding between questions */
}

.faq-title {
    font-size: 50px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
    margin-top: 24px;
    letter-spacing: 0;
}

.faq-item {
    background: none;
    border: none;
    border-radius: 0;
    overflow: visible;
    margin-bottom: 0;
    position: relative;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    padding: 18px 0 8px 0;
    text-align: left;
    cursor: pointer;
    outline: none;
    position: relative;
    transition: color 0.2s;
    letter-spacing: 0;
}

.faq-question::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background: #04BBA9; /* Primary color for line */
    position: absolute;
    left: 0;
    bottom: 0;
    transition: transform 0.3s;
    transform: scaleX(1) translateY(0);
}

.faq-item.active .faq-question::after {
    transform: scaleX(1) translateY(12px); /* Moves line down when active */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #fff;
    padding: 0;
    transition: max-height 0.3s ease, padding 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 12px 0 18px 0;
}

/* Button modifications */
.contact-btn,
.feature-btn {
    border: 2px solid #fff;
    color: #fff;
    background: none;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.15em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    height: auto;

    box-sizing: border-box;
    padding: 14px 33px;
    text-decoration: none; /* Remove underline */
    /* border-radius: 32px; Optional: rounded corners for button look */
}

.contact-btn .arrow,
.feature-btn .arrow {
    font-size: 1.2em;
    color: #04BBA9;
    margin-left: 8px;
    transition: color 0.2s;
}

.contact-btn:hover,
.feature-btn:hover {
    color: #04BBA9;
    border-color: #ffffff;
    /* background: #fff; */
}

.contact-btn:hover .arrow,
.feature-btn:hover .arrow {
    color: #04BBA9;
}

.section-spacer {
    height: 288px;
}

.bottom-contact-section {
    text-align: center;
    margin-bottom: 288px;
    background-color: #DBDBDB;
    
    padding-top: 100px;
    padding-bottom: 100px;
}

.bottom-contact-title {
    /* color: #fff; */
    color: #23223A;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.bottom-contact-btn {
    margin-top: 0;
}

.contact-popup {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(40, 39, 59, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.contact-popup.active {
    display: flex;
}

.contact-popup-content {
    background: #fff;
    color: #28273B;
    border-radius: 24px;
    padding: 48px 32px;
    min-width: 340px;
    max-width: 90vw;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: relative;
    text-align: left;
}

.contact-popup-content h2 {
    margin-top: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #04BBA9;
    margin-bottom: 24px;
}

.contact-popup-content form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-popup-content input,
.contact-popup-content textarea {
    padding: 12px 16px;
    border: 1px solid #04BBA9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Instrument Sans', Arial, sans-serif;
    resize: none;
}

.contact-popup-content textarea {
    min-height: 80px;
}

.contact-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #04BBA9;
    cursor: pointer;
}

.site-footer {
    width: 100%;
    height: 180px;                /* Increased height for the footer box */
    background: transparent;
    display: flex;                /* Use flex for centering */
    flex-direction: column;
    justify-content: center;      /* Vertical centering */
    align-items: center;          /* Horizontal centering */
    text-align: center;
    padding: 0;                   /* Remove extra padding */
    margin: 0;                    /* Remove any margin */
}

.footer-text {
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    letter-spacing: 0;
}

/* Project popup (blurred backdrop) */
.project-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(40,39,59,0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.project-popup.active {
    display: flex;
}

.project-popup-content {
    background: #fff;
    color: #28273B;
    border-radius: 20px;
    padding: 28px 28px 32px;
    width: min(720px, 92vw);
    max-height: 85vh;
    overflow: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    position: relative;
}

.project-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: 0;
    color: #04BBA9;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.project-title {
    margin: 0 0 10px 0;
    font-weight: 700;
    color: #04BBA9;
}

.project-desc {
    margin: 0 0 16px 0;
}

.project-image {
    width: 100%;
    height: auto;
    display: none;
    border-radius: 0;
}

/* Animated overlays (fade + blur) */
.contact-popup,
.project-popup {
    display: flex;                /* override earlier display:none */
    position: fixed;
    inset: 0;
    justify-content: center;
    align-items: center;
    background: rgba(40,39,59,0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.contact-popup.active,
.project-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Content pop (scale + lift) */
.contact-popup-content,
.project-popup-content {
    transform: translateY(12px) scale(0.98);
    opacity: 0;
    transition: transform 240ms ease, opacity 240ms ease;
    will-change: transform, opacity;
}

.contact-popup.active .contact-popup-content,
.project-popup.active .project-popup-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .contact-popup,
    .project-popup {
        transition: none;
    }
    .contact-popup-content,
    .project-popup-content {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

/* Smooth anchor scrolling and offset so content isn't hidden under sticky header */
html { scroll-behavior: smooth; }
section[id], #get-to-know-us { scroll-margin-top: 110px; }



/* Text CTA at bottom of form */
.contact-text-cta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: #4A4A4A;
  font-weight: 700;
  padding: 14px 33px;
  border: 2px solid currentColor; /* 2px border same as text */
  background: transparent;
  transition: color 0.2s, border-color 0.2s;
}

.contact-text-cta .arrow {
  color: currentColor; /* keep arrow in sync with text */
}

.contact-text-cta:hover {
  color: #04BBA9;         /* primary on hover */
  border-color: currentColor;
}

/* Responsive: stack on small screens */
@media (max-width: 900px) {
  .contact-split-section { padding: 0 24px; }
  .contact-split { flex-direction: column; }
  .contact-pane, .contact-image-pane { flex-basis: auto; }
  .contact-image-pane { min-height: 280px; }
}


/* Add a simple grey strip section */
.grey-strip-section {
    width: 100%;
    height: 525px;
    background: #3A3950;
    margin: 0;
    position: relative;
    display: block;
    z-index: 1;
}

/* Overlapping split section */
.contact-split-overlap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 65px;
    pointer-events: auto;
    z-index: 2;
    /* This negative margin lifts the boxes up so their bottom aligns with the middle of the strip */
    margin-bottom: -262px; /* 525px (strip height) / 2 = 262px */
}

.contact-form-pane {
  flex: 0 1 60%;
  background: #fff;
  /* border-radius: 24px; */
  /* box-shadow: 0 8px 32px rgba(0,0,0,0.10); */
  padding: 48px 40px;
  box-sizing: border-box;
  min-width: 340px;
  max-width: 600px;
  /* margin-left: 200px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-pane .contact-form-title {
  font-size: 28px;
  color: #4A4A4A;
  margin-bottom: 32px;
  font-weight: 400;
  letter-spacing: 0;
}
.contact-form-pane .contact-form-title strong {
  font-weight: 700;
  color: #4A4A4A;
}
.contact-form-pane .contact-form-title span {
  font-weight: 400;
  color: #4A4A4A;
}

/* Field labels */
.contact-form label {
  color: #4A4A4A;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 6px;
  display: block;
}

/* Input and textarea: no rounded edges */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: #4A4A4A;
  background: #F7F7F7;
  border: 2px solid #4A4A4A;
  border-radius: 0;
  font-family: 'Instrument Sans', Arial, sans-serif;
  font-size: 16px;
  margin-bottom: 18px;
  box-sizing: border-box;
}

/* Send button: box, color, border, no rounded edges */
.contact-form-btn {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: #4A4A4A;
  font-weight: 400;
  padding: 14px 33px;
  border: 2px solid #4A4A4A;
  background: #fff;
  border-radius: 0;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  width: 100%;                /* Button matches field width */
  justify-content: center;    /* Center text and arrow */
  text-align: center;
}

.contact-form-btn .arrow {
  color: #4A4A4A;
}

.contact-form-btn:hover {
  color: #fff;
  background: #4A4A4A;
  border-color: #4A4A4A;
}

.contact-form-btn:hover .arrow {
  color: #fff;
}

.contact-image-pane {
  flex: 0 1 40%;
  background: #fff;
  padding: 48px 40px;
  box-sizing: border-box;
  min-width: 260px;
  max-width: 400px;
  margin-right: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.contact-split-overlap {
  align-items: stretch; /* Ensures both boxes are equal height */
}

/* Responsive for mobile */
@media (max-width: 1200px) {
  .contact-form-pane { margin-left: 40px; }
  .contact-image-pane { margin-right: 40px; }
}
@media (max-width: 900px) {
  .contact-split-overlap {
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
    position: static;
  }
  .contact-form-pane,
  .contact-image-pane {
    margin: 0;
    max-width: 100%;
    padding: 32px 16px;
  }
}

/* New styles for contact popup button */
.contact-popup .contact-btn {
    background: #04BBA9;
    color: #fff;
    border: 2px solid #04BBA9;
    border-radius: 8px;
}

.contact-popup .contact-btn .arrow {
    color: #fff;
}

.contact-popup .contact-btn:hover {
    background: #fff;
    color: #04BBA9;
    border-color: #04BBA9;
}

.contact-popup .contact-btn:hover .arrow {
    color: #04BBA9;
}