*{
    margin:0;
    padding:0;
    font-family: "Instrument Sans",Arial;
    box-sizing: border-box;
}

body{
    background-color: #f7f8fa;
    overflow-x: hidden;
}

/* NAVBAR SECTION */
#navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

#nav-main-container {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-image: url('../ASSETS/Homepage/navbar-background-img.jpg');
    background-size: cover;
    background-position: center;
    max-width: 95%;
    border-radius: 45px;
    margin-bottom: 70px;
    padding: 20px;
}

#main-nav-bar {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    min-height: 75px;
    max-height: 50px;
    min-width: 90vw;
    max-width: 90vw;
    background-color: white;
    border-radius: 60px;
}

.navbar-logo {
    height: 40px;
    width: auto;
}

#company-nav-link-elems {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    min-width: 50vw;
    font-weight: 500;
}

#navbar-right-elements {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.navbar-right-svg {
    height: 30px;
    width: auto;
    transition: 0.5s;
    padding: 0 10px;
}

.navbar-right-svg:hover {
    color: #007faf;
    stroke: #007faf;
}

.nav-link {
    text-decoration: none;
    color: black;
    transition: 0.5s;
}

.nav-link:hover {
    color: #007faf;
}

#navbar-text-main-cointainer {
    color: white;
    margin: 20px 0;
    text-align: left;
    padding: 0 8px;
}

#navbar-text-header {
    font-size: 75px;
    font-weight: 700;
}

#contact-us-page-address {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

#contact-us-page-origin-address {
    font-size: 14px;
}

#contact-us-page-address-svg {
    height: 12px;
    width: auto;
    flex-shrink: 0;
}

#contact-us-page-current-address {
    font-size: 14px;
}


/* ── LARGE MOBILE (480px) ── */
@media (max-width: 480px) {
    #nav-main-container {
        border-radius: 20px;
        margin-bottom: 30px;
        min-height: unset;
        min-width: 95vw;
        max-width: 95vw;
    }

    #main-nav-bar {
        min-width: 80vw;
        max-width: 80vw;
        border-radius: 50px;
        padding: 15px;
        max-height: unset;
    }

    #company-nav-link-elems {
        display: none;
    }

    #navbar-text-header {
        font-size: 36px;
    }

    #navbar-text-main-cointainer {
        margin: 20px 0;
        padding: 10px 8px;
    }

    #contact-us-page-origin-address,
    #contact-us-page-current-address {
        font-size: 11px;
    }

    #contact-us-page-address-svg {
        height: 10px;
    }
}


/* ── TABLET (768px) ── */
@media (min-width: 481px) and (max-width: 768px) {
    #nav-main-container {
        border-radius: 30px;
        margin-bottom: 40px;
        max-width: 90vw;
    }

    #main-nav-bar {
        min-width: 80vw;
        max-width: 80vw;
    }

    #company-nav-link-elems {
        display: none;
    }

    #navbar-text-header {
        font-size: 52px;
    }

    #navbar-text-main-cointainer {
        margin: 20px 0;
        padding: 10px 8px;
    }

    #contact-us-page-origin-address,
    #contact-us-page-current-address {
        font-size: 12px;
    }
}


/* ── SMALL DESKTOP / LAPTOP (1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {
    #navbar-text-header {
        font-size: 60px;
    }

    #main-nav-bar {
        max-width: 90%;
        min-width: 90%;
    }

    #navbar-text-main-cointainer {
        margin: 20px 0;
        padding: 10px 8px;
    }

    #company-nav-link-elems {
        font-size: 14px;
    }

    #contact-us-page-origin-address,
    #contact-us-page-current-address {
        font-size: 13px;
    }
}


/* ── LARGE DESKTOP (1280px) ── */
@media (min-width: 1025px) and (max-width: 1280px) {
    #navbar-text-header {
        font-size: 68px;
    }

    #contact-us-page-origin-address,
    #contact-us-page-current-address {
        font-size: 13px;
    }
}


/* ── XL DESKTOP (1281–1536px) ── */
@media (min-width: 1281px) and (max-width: 1536px) {
    #navbar-text-header {
        font-size: 80px;
    }

    #contact-us-page-origin-address,
    #contact-us-page-current-address {
        font-size: 14px;
    }
}


/* ── EXTRA LARGE (1537px+) ── */
@media (min-width: 1537px) {
    #nav-main-container {
        max-width: 95%;
    }

    #main-nav-bar {
        min-width: 90vw;
        max-width: 90vw;
    }

    #navbar-text-header {
        font-size: 90px;
    }

    .navbar-logo {
        height: 48px;
    }

    .navbar-right-svg {
        height: 34px;
    }

    #contact-us-page-origin-address,
    #contact-us-page-current-address {
        font-size: 16px;
    }

    #contact-us-page-address-svg {
        height: 14px;
    }
}

/* ── HAMBURGER BUTTON ── */
#hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 6px;
    flex-shrink: 0;
    z-index: 100;
}

#hamburger-btn span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: #0b1628;
    border-radius: 2px;
    transition: 0.4s ease;
    transform-origin: center;
}

#hamburger-btn.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
#hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
#hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ── MOBILE DROPDOWN ── */
#main-nav-bar {
    position: relative;
}

#mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    padding: 12px 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

#mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#mobile-menu .nav-link {
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: black;
    transition: background 0.2s, color 0.2s;
}

#mobile-menu .nav-link:hover {
    background: #f0f8fc;
    color: #007faf;
}

/* ── SHOW HAMBURGER AT MOBILE + TABLET ── */
@media (max-width: 480px) {
    #hamburger-btn {
        display: flex;
    }
    #company-nav-link-elems {
        display: none;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    #hamburger-btn {
        display: flex;
    }
    #company-nav-link-elems {
        display: none;
    }
}








/* FOOTER */

    #footer-top {
      border-top-left-radius: 50px;
      border-top-right-radius: 50px;  
      margin-top:100px;
      background-color: #0d1b2e;
      padding: 60px 80px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 60px;
    }

    /* LEFT */
    .footer-left {
      display: flex;
      flex-direction: column;
      gap: 28px;
      max-width: 380px;
    }

    .footer-tagline {
      font-size: clamp(26px, 3vw, 44px);
      font-weight: 800;
      color: #ffffff;
      line-height: 1.15;
      letter-spacing: -0.5px;
    }

    .footer-form {
      display: flex;
      align-items: center;
      border-bottom: 1.5px solid rgba(255,255,255,0.3);
      padding-bottom: 8px;
      gap: 16px;
    }

    .footer-input {
      background: transparent;
      border: none;
      outline: none;
      color: rgba(255,255,255,0.5);
      font-family: 'Manrope', sans-serif;
      font-size: 15px;
      flex: 1;
    }

    .footer-input::placeholder { color: rgba(255,255,255,0.4); }

    .footer-submit {
      background: transparent;
      border: none;
      cursor: pointer;
      color: white;
      font-family: 'Manrope', sans-serif;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      transition: opacity 0.2s;
    }

    .footer-submit:hover { opacity: 0.7; }

    .footer-submit .arrow { transition: transform 0.2s; }
    .footer-submit:hover .arrow { transform: translateX(4px); }

    .footer-success {
      display: none;
      color: #e53935;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.5;
    }


    /* CENTER — image */
    .footer-image-wrap {
      position: relative;
      width: 200px;
      height: 220px;
      flex-shrink: 0;
    }

    .footer-image-bg {
      width: 200px;
      height: 220px;
      background: #1e2d45;
      border-radius: 24px;
      transform: rotate(-4deg);
      position: absolute;
      top: 10px;
      left: 10px;
    }

    .footer-image-placeholder {
      width: 200px;
      height: 220px;
      border-radius: 24px;
      background: linear-gradient(135deg, #1e3a5f 0%, #2a4a6b 100%);
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.2);
      font-size: 13px;
      overflow: hidden;
    }

    .footer-image-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 24px;
    }

    /* RIGHT — info grid */
    .footer-info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px 60px;
      justify-self: end;
    }

    .footer-info-label {
      font-size: 11px;
      font-weight: 700;
      color: rgba(255,255,255,0.4);
      letter-spacing: 1.2px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .footer-info-value {
      font-size: clamp(13px, 1.3vw, 16px);
      font-weight: 600;
      color: #ffffff;
      line-height: 1.5;
    }

    /* ─── DIVIDER ──────────────────────────────────── */
    .footer-divider {
      border: none;
      border-top: 1px solid rgba(255,255,255,0.1);
      margin: 0 80px;
    }

    /* ─── BOTTOM SECTION ──────────────────────────── */
    #footer-bottom{
            background-color: #0a1628;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 60px 80px 80px;
    box-sizing: border-box;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
      gap: 40px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .footer-col-title {
      font-size: 20px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 28px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .footer-links a {
      text-decoration: none;
      color: rgba(255,255,255,0.7);
      font-size: 14px;
      font-weight: 400;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: #ffffff; }

    /* Social */
    .social-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid rgba(255,255,255,0.2);
      border-radius: 12px;
      height: 56px;
      cursor: pointer;
      text-decoration: none;
      color: white;
      transition: border-color 0.2s, 0.2s;
    }

    .social-btn:hover {
      border-color: rgba(255,255,255,0.5);
      background: rgba(255,255,255,0.05);
    }



    #footer-last-text{
        display: flex;
        width:100%;
        justify-content: center ;
        align-items: center;
        gap: 8px;
        color:white;
        margin:80px auto 0 auto;
        font-size: 36px;
        font-weight: 600;
        background-color: #0a1628;

    }


    /* ─── RESPONSIVE ──────────────────────────────── */
    @media (max-width: 1000px) {
      #footer-top {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        padding: 50px 40px;
        gap: 40px;
      }

      .footer-image-wrap {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
      }

      .footer-left {
        grid-column: 1;
        grid-row: 1;
      }

      .footer-info-grid {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: stretch;
        gap: 28px 40px;
      }

      .footer-divider { margin: 0 40px; }

      #footer-bottom { padding: 50px 40px 60px; }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px 40px;
      }
    }

    @media (max-width: 640px) {
      #footer-top {
        grid-template-columns: 1fr;
        padding: 40px 24px;
      }

      .footer-image-wrap {
        grid-column: 1;
        grid-row: 2;
        justify-self: center;
      }

      .footer-left { grid-row: 1; }

      .footer-info-grid {
        grid-column: 1;
        grid-row: 3;
        grid-template-columns: 1fr 1fr;
      }

      .footer-divider { margin: 0 24px; }

      #footer-bottom { padding: 40px 24px 60px; }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 20px;
      }
    }
    @media (max-width: 400px) {
      .footer-grid { grid-template-columns: 1fr; }
      .footer-info-grid { grid-template-columns: 1fr; }
      .footer-image-wrap { display: none; }
      }


  /* ─── OFFICES SECTION ─── */

#offices-section {
    display: flex;
    justify-content: center;
    padding: 0 24px;
    margin-bottom: 40px;
}

.offices-container {
    width: 100%;
    max-width: 900px;
}

.offices-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}

.offices-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #007faf;
    box-shadow: 0 0 0 3px rgba(0, 127, 175, 0.2);
}

.offices-eyebrow-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4a5568;
}

.offices-heading {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #0b1628;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 48px;
}

.offices-list {
    list-style: none;
}

.office-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    border-top: 1px solid #e2e8f0;
    opacity: 0;
    transform: translateY(14px);
    animation: officesFadeUp 0.5s ease forwards;
}

.office-row:last-child {
    border-bottom: 1px solid #e2e8f0;
}

.office-row:nth-child(1) { animation-delay: 0.05s; }
.office-row:nth-child(2) { animation-delay: 0.15s; }
.office-row:nth-child(3) { animation-delay: 0.25s; }
.office-row:nth-child(4) { animation-delay: 0.35s; }

@keyframes officesFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.office-row-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0b1628;
    min-width: 200px;
}

.office-row-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.office-row-phone {
    font-size: 0.9rem;
    font-weight: 500;
    color: #0b1628;
}

.office-row-email {
    font-size: 0.85rem;
    font-weight: 400;
    color: #9aa5b4;
}

@media (max-width: 560px) {
    .office-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .office-row-contact {
        text-align: left;
    }
}

