 :root {
      --primary-bg: #02173b;
      --primary-accent: #ffc727;
      --secondary-bg: #091f4a;
      --text-main: #ffffff;
      --text-muted: #c5d0e6;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background-color: var(--primary-bg);
      color: var(--text-main);
    }
.topbar {
    padding: 9px 0px;
    color: #fff;
}
.topbar {
    background: linear-gradient(90deg, #010927 0%, #01071e 40%, #051865 100%);
    color: #1f2937;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1060;
}
.position-relative {
    position: relative !important;
}
.phone-icon {
    display: inline-block;
    padding: 0px 0px 0px 0px;
    color: #fff;
}
.phone-icon svg {
    color: #FEC201;
    height: 16px;
    margin-right: 10px;
}
.whatsapp-ico {
    fill: white;
    width: 17px;
    height: 17px !important;
    padding: 1px;
    background-color: #4dc247;
    border-radius: 50%;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}
.email-icon svg {
    color: #FEC201;
    height: 16px;
    margin-right: 10px;
}
.topbar .icon-socials {
    display: inline-block;
    height: 14px;
    width: 14px;
    color: #fff;
    /* vertical-align: middle; */
}
.icon-socials {
    display: inline-block;
    margin-right: 24px;
}
.topbar a {
  text-decoration: none;
}
.email-icon {
    display: inline-block;
    padding: 0px 0px 0px 0px;
    color: #fff;
}
.navbar-custom {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    backdrop-filter: saturate(180%) blur(8px);
    z-index: 1050;
}
    /* Navbar */
    .navbar-custom {
      background: linear-gradient(90deg, #02173b 0%, #031d4a 100%);
      padding: 1rem 0;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 700;
      font-size: 1.25rem;
      color: #ffffff;
    }

    .navbar-brand span.logo-box {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      background: #ffb000;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .navbar-brand span.logo-box i {
      font-size: 1.25rem;
      color: #02173b;
    }

    .navbar-brand span.logo-text-1 {
      font-weight: 700;
    }

    .navbar-brand span.logo-text-2 {
      font-weight: 700;
      color: var(--primary-accent);
    }
    .btn-outline-light.rounded-pill {
    background: linear-gradient(180deg, #ffd641 0%, #ffc727 40%, #f7b800 100%);
    color: #02173b;
    border-radius: 999px;
    border: none;
    padding: 0.7rem 1.9rem;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

    .navbar-nav .nav-link {
      font-weight: 500;
      color: #d1dcf4;
      margin: 0 0.75rem;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
      color: #ffffff;
    }

    .btn-outline-light.rounded-pill {
      border-width: 2px;
      font-weight: 600;
      padding: 0.55rem 1.6rem;
      font-size: 0.95rem;
    }

    .btn-outline-light.rounded-pill:hover {
      background-color: var(--primary-accent);
      border-color: var(--primary-accent);
      color: #02173b;
    }

    /* Hero Section */
    .hero-section {
      position: relative;
      min-height: calc(100vh - 80px);
      background: radial-gradient(circle at top left, #143a7b 0, #02173b 45%, #010c22 100%);
      color: var(--text-main);
      overflow: hidden;
      padding-top: 94px;
    }

    /* Background overlay (replace background-image URL with your own map image) */
    .hero-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("../img/hero-bg.jpg");
      background-size: cover;
      background-position: center;
      opacity: 0.18;
      mix-blend-mode: screen;
      pointer-events: none;
    }

    .hero-gradient-line {
      position: absolute;
      left: 15%;
      right: 15%;
      top: 38%;
      height: 4px;
      border-radius: 999px;
      background: linear-gradient(90deg,
          rgba(255, 199, 39, 0) 0%,
          rgba(255, 199, 39, 1) 25%,
          rgba(255, 199, 39, 0) 50%,
          rgba(255, 199, 39, 0) 100%);
      background-size: 200% 100%;
      box-shadow: 0 0 18px rgba(255, 199, 39, 0.65);
      filter: blur(0.3px);
      pointer-events: none;
      animation: heroRoute 3.2s linear infinite;
    }

    @keyframes heroRoute {
      0% {
        background-position: 100% 0;
      }

      100% {
        background-position: -100% 0;
      }
    }


    .hero-inner {
      position: relative;
      z-index: 1;
      padding-top: 4.5rem;
      padding-bottom: 4.5rem;
      text-align: center;
    }

    .location-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 1.25rem;
      border-radius: 999px;
      background: rgba(1, 29, 75, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.16);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
      color: var(--text-muted);
      font-size: 0.87rem;
      margin-bottom: 1.75rem;
    }

    .location-pill i {
      color: var(--primary-accent);
      font-size: 1rem;
    }

    .location-pill span.dot {
      width: 4px;
      height: 4px;
      border-radius: 999px;
      background-color: rgba(255, 255, 255, 0.55);
    }

    .hero-title {
      font-weight: 800;
      font-size: clamp(2.4rem, 4vw, 3.6rem);
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .hero-title span.highlight {
      color: var(--primary-accent);
    }

    .hero-subtitle {
      max-width: 640px;
      color: var(--text-muted);
      font-size: 1.02rem;
      line-height: 1.6;
      margin-bottom: 2rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
      margin-bottom: 3rem;
      justify-content: center;
    }

    .btn-hero-primary {
      background-color: var(--primary-accent);
      color: #02173b;
      border-radius: 12px;
      border: none;
      padding: 0.9rem 2.4rem;
      font-weight: 700;
      font-size: 0.98rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    }

    .btn-hero-primary i {
      font-size: 1rem;
    }

    .btn-hero-primary:hover {
      background-color: #ffd44d;
      color: #02173b;
    }

    .btn-hero-secondary {
      border-radius: 12px;
      padding: 0.9rem 2.1rem;
      font-weight: 600;
      border: 1px solid rgba(255, 255, 255, 0.35);
      background-color: rgba(7, 31, 79, 0.9);
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn-hero-secondary i {
      font-size: 1rem;
    }

    .btn-hero-secondary:hover {
      background-color: rgba(255, 255, 255, 0.08);
      color: #ffffff;
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem;
      margin-top: 1rem;
      justify-content: center;
    }

    .hero-stat-item h3 {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 0.2rem;
      color: var(--primary-accent);
    }

    .hero-stat-item p {
      margin: 0;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .hero-stat-item span.icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      border-radius: 6px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      margin-right: 0.4rem;
      font-size: 0.7rem;
      color: var(--text-muted);
    }

    /* Mouse scroll indicator */
    .scroll-indicator {
      position: absolute;
      left: 50%;
      bottom: 0.5rem;
      transform: translateX(-50%);
      width: 26px;
      height: 42px;
      border-radius: 15px;
      border: 2px solid rgba(197, 208, 230, 0.6);
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 4px;
      opacity: 0.7;
    }

    .scroll-indicator span {
      display: block;
      width: 4px;
      height: 8px;
      border-radius: 999px;
      background-color: rgba(197, 208, 230, 0.8);
      animation: scrollDot 1.3s ease-in-out infinite;
    }

    @keyframes scrollDot {
      0% {
        transform: translateY(0);
        opacity: 1;
      }

      100% {
        transform: translateY(14px);
        opacity: 0.2;
      }
    }

    @media (max-width: 991.98px) {
      .hero-inner {
        text-align: center;
      }

      .hero-subtitle {
        margin-inline: auto;
      }

      .hero-actions {
        justify-content: center;
      }

      .hero-gradient-line {
        top: 27%;
      }

      .hero-stats {
        justify-content: center;
      }
    }

    @media (max-width: 575.98px) {
      .hero-section {
        min-height: auto;
      }

      .hero-inner {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
      }

      .navbar-brand span.logo-text-1,
      .navbar-brand span.logo-text-2 {
        font-size: 1.05rem;
      }

      .navbar-custom {
        padding-inline: 0;
      }
    }

    /* SERVICES SECTION */
    .services-section {
      background-color: #f4f7fb;
      padding: 3rem 0 3rem;
      color: #031d4a;
    }

    .section-eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-weight: 600;
      font-size: 0.82rem;
      color: #f5b400;
      margin-bottom: 0.6rem;
    }

    .section-title {
      font-weight: 800;
      font-size: clamp(2rem, 3vw, 2.6rem);
      margin-bottom: 0.75rem;
      color: #02173b;
    }

    .section-subtitle {
      max-width: 640px;
      margin: 0 auto 3rem;
      font-size: 0.98rem;
      color: #626d84;
    }

    .service-card {
      background-color: #ffffff;
      border-radius: 22px;
      padding: 2.1rem 2.4rem;
      box-shadow: 0 18px 45px rgba(22, 49, 106, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.9);
      height: 100%;
      display: flex;
      align-items: flex-start;
      gap: 1.4rem;
    }

    .service-icon-wrapper {
      flex-shrink: 0;
    }

    .service-icon {
      width: 64px;
      height: 64px;
      border-radius: 20px;
      background: radial-gradient(circle at top, #ffd861 0, #ffc727 40%, #ffb300 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 18px 40px rgba(255, 199, 39, 0.5);
    }

    .service-icon i {
      font-size: 1.7rem;
      color: #02173b;
    }

    .service-title {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.35rem;
      color: #031d4a;
    }

    .service-text {
      margin: 0;
      font-size: 0.92rem;
      color: #626d84;
      line-height: 1.7;
    }

    @media (max-width: 767.98px) {
      .services-section {
        padding: 3.5rem 0 4rem;
      }

      .service-card {
        padding: 1.8rem 1.7rem;
      }
    }

    /* PRODUCTS SECTION */
    .products-section {
      background-color: #f4f7fb;
      padding: 2.75rem 0 2.25rem;
      color: #031d4a;
    }

    .products-section .section-title {
      margin-bottom: 0.75rem;
    }

    .products-section .section-subtitle {
      margin-bottom: 2.5rem;
    }

    .products-stats-row {
      margin-bottom: 2.8rem;
    }

    .products-stat-card {
      background-color: #031d4a;
      border-radius: 18px;
      padding: 1.4rem 2.4rem;
      text-align: center;
      color: #ffffff;
      box-shadow: 0 18px 40px rgba(8, 24, 65, 0.5);
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .products-stat-number {
      font-weight: 800;
      font-size: 1.5rem;
      color: #ffc727;
      margin-bottom: 0.2rem;
    }

    .products-stat-label {
      font-size: 0.86rem;
      letter-spacing: 0.04em;
      text-transform: none;
      opacity: 0.92;
    }

    .product-card {
      background-color: #ffffff;
      border-radius: 22px;
      padding: 1.2rem 1.2rem;
      text-align: center;
      box-shadow: 0 18px 45px rgba(22, 49, 106, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.9);
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .product-icon {
      width: 60px;
      height: 60px;
      border-radius: 20px;
      background: radial-gradient(circle at top, #ffd861 0, #ffc727 40%, #ffb300 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 18px 40px rgba(255, 199, 39, 0.5);
      margin-bottom: 1.1rem;
      flex-shrink: 0;
    }

    .product-icon i {
      font-size: 1.6rem;
      color: #02173b;
    }

    .product-title {
      font-size: 0.98rem;
      font-weight: 700;
      margin-bottom: 0.35rem;
      color: #031d4a;
    }

    .product-text {
      font-size: 0.88rem;
      color: #626d84;
      margin: 0;
      line-height: 1.7;
    }

    .products-note {
      margin-top: 2.4rem;
      font-size: 0.9rem;
      color: #626d84;
    }

    .products-note a {
      color: #f5b400;
      font-weight: 600;
      text-decoration: none;
    }

    .products-note a:hover {
      text-decoration: underline;
    }

    @media (max-width: 767.98px) {
      .products-section {
        padding: 2rem 0 2rem;
      }

      .products-stat-card {
        padding-inline: 1.6rem;
      }

      .product-card {
        padding: 1rem 1rem;
      }
    }
    /* WHY SECTION */
    .why-section {
      background-color: #f4f7fb;
      padding: 3rem 0 3rem;
      color: #031d4a;
    }

    .why-section .section-title {
      margin-bottom: 1rem;
    }

    .why-section .section-subtitle {
      margin-bottom: 1.9rem;
      max-width: 540px;
    }

    .why-list {
      padding-left: 0;
      list-style: none;
      margin-bottom: 2.2rem;
      max-width: 560px;
    }

    .why-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      margin-bottom: 0.85rem;
      font-size: 0.94rem;
      color: #233254;
    }

    .why-icon-wrap {
      flex-shrink: 0;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: radial-gradient(circle at top, #ffd861 0, #ffc727 40%, #ffb300 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 28px rgba(255, 199, 39, 0.55);
      margin-top: 0.1rem;
    }

    .why-icon-wrap i {
      font-size: 1rem;
      color: #02173b;
    }

    .btn-why-primary {
      background-color: #ffc727;
      color: #02173b;
      border-radius: 12px;
      border: none;
      padding: 0.9rem 2.4rem;
      font-weight: 700;
      font-size: 0.96rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    }

    .btn-why-primary i {
      font-size: 1rem;
    }

    .btn-why-primary:hover {
      background-color: #ffd956;
      color: #02173b;
    }

    .why-card-wrapper {
      background: radial-gradient(circle at top left, #163c7e 0, #02173b 40%, #041635 100%);
      border-radius: 26px;
      padding: 2.5rem 2.7rem;
      color: #ffffff;
      box-shadow: 0 30px 80px rgba(5, 23, 60, 0.7);
      position: relative;
      overflow: hidden;
    }

    .why-card-wrapper::after {
      content: "";
      position: absolute;
      right: -130px;
      top: -80px;
      width: 260px;
      height: 260px;
      background: radial-gradient(circle, rgba(255, 199, 39, 0.22) 0, transparent 60%);
      opacity: 0.9;
    }

    .why-card-title {
      font-weight: 700;
      font-size: 1.3rem;
      margin-bottom: 1.8rem;
    }

    .why-metrics-grid {
      position: relative;
      z-index: 1;
    }

    .why-stat-box {
      background-color: rgba(5, 27, 71, 0.92);
      border-radius: 16px;
      padding: 1.1rem 1.4rem;
      text-align: center;
      margin-bottom: 1rem;
    }

    .why-stat-number {
      font-size: 1.5rem;
      font-weight: 800;
      color: #ffc727;
      margin-bottom: 0.15rem;
    }

    .why-stat-label {
      font-size: 0.8rem;
      color: #c5d0e6;
    }

    .why-divider {
      margin: 1.7rem 0 1.2rem;
      border-top: 1px solid rgba(197, 208, 230, 0.25);
    }

    .why-card-footer-label {
      font-size: 0.82rem;
      color: #c5d0e6;
      margin-bottom: 0.6rem;
    }

    .why-badge-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .why-badge {
      font-size: 0.78rem;
      padding: 0.35rem 0.9rem;
      border-radius: 999px;
      background-color: rgba(3, 24, 67, 0.9);
      border: 1px solid rgba(197, 208, 230, 0.35);
      color: #e2ebff;
    }

    @media (max-width: 991.98px) {
      .why-section {
        padding-top: 4.1rem;
      }

      .why-card-wrapper {
        margin-top: 2.4rem;
      }
    }

    @media (max-width: 767.98px) {
      .why-section {
        padding: 3.7rem 0 4.5rem;
      }

      .why-card-wrapper {
        padding: 2.1rem 1.8rem;
      }
    }
    /* CTA / CONTACT SECTION */
    .cta-section {
      background: radial-gradient(circle at bottom left, #063265 0, #02173b 50%, #020f2a 100%);
      color: #ffffff;
      text-align: center;
      padding: 4.8rem 0 5.3rem;
    }

    .cta-heading {
      font-weight: 800;
      font-size: clamp(2rem, 3vw, 2.6rem);
      margin-bottom: 0.4rem;
    }

    .cta-heading span.highlight {
      color: var(--primary-accent);
    }

    .cta-subtitle {
      max-width: 640px;
      margin: 0 auto 2.1rem;
      font-size: 0.98rem;
      color: rgba(223, 231, 255, 0.9);
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 3.1rem;
    }

    .btn-cta-primary {
      background-color: var(--primary-accent);
      color: #02173b;
      border-radius: 12px;
      border: none;
      padding: 0.9rem 2.4rem;
      font-weight: 700;
      font-size: 0.96rem;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      position: relative;
      box-shadow: 0 0 0 rgba(255, 199, 39, 0.0);
    }

    .btn-cta-primary::after {
      content: "";
      position: absolute;
      inset: -14px -26px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(255, 199, 39, 0.42) 0, transparent 60%);
      z-index: -1;
      opacity: 1;
    }

    .btn-cta-primary i {
      font-size: 1rem;
    }

    .btn-cta-primary:hover {
      background-color: #ffd956;
      color: #02173b;
    }

    .btn-cta-secondary {
      border-radius: 12px;
      padding: 0.9rem 2.1rem;
      font-weight: 600;
      border: 1px solid rgba(223, 231, 255, 0.65);
      background-color: transparent;
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
    }

    .btn-cta-secondary i {
      font-size: 1rem;
    }

    .btn-cta-secondary:hover {
      background-color: rgba(223, 231, 255, 0.08);
      color: #ffffff;
    }

    .cta-contact-row {
      margin-top: 0.5rem;
    }

    .cta-contact-card {
      background: rgba(3, 28, 78, 0.95);
      border-radius: 22px;
      padding: 2.1rem 2.2rem;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
      border: 1px solid rgba(141, 163, 211, 0.25);
      height: 100%;
    }

    .cta-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at top, #ffd861 0, #ffc727 40%, #ffb300 100%);
      box-shadow: 0 18px 40px rgba(255, 199, 39, 0.55);
    }

    .cta-icon i {
      font-size: 1.6rem;
      color: #02173b;
    }

    .cta-card-title {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 0.2rem;
      color: rgba(223, 231, 255, 0.9);
    }

    .cta-card-main {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.15rem;
    }

    .cta-card-meta {
      font-size: 0.82rem;
      color: #8fa0c9;
    }

    @media (max-width: 767.98px) {
      .cta-section {
        padding: 3.8rem 0 4.4rem;
      }

      .cta-contact-card {
        padding: 1.9rem 1.7rem;
      }
    }
     /* FOOTER */
    .footer-section {
      background-color: #050f23;
      color: #e2ebff;
      padding: 2.8rem 0 1.6rem;
      font-size: 0.9rem;
    }

    .footer-top {
      padding-bottom: 2rem;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.8rem;
    }

    .footer-logo-box {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      background: #ffb000;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-logo-box i {
      font-size: 1.25rem;
      color: #02173b;
    }

    .footer-logo-text-main {
      font-weight: 700;
      font-size: 1.1rem;
      color: #ffffff;
    }

    .footer-logo-text-highlight {
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--primary-accent);
    }

    .footer-description {
      max-width: 360px;
      color: #9eadcf;
      line-height: 1.7;
      margin: 0;
    }

    .footer-heading {
      font-weight: 700;
      font-size: 0.95rem;
      margin-bottom: 0.9rem;
    }

    .footer-links,
    .footer-links li {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-links li + li {
      margin-top: 0.45rem;
    }

    .footer-links a {
      color: #d5e0ff;
      text-decoration: none;
      font-size: 0.9rem;
    }

    .footer-links a:hover {
      color: #ffffff;
      text-decoration: underline;
    }

    .footer-divider {
      border-top: 1px solid rgba(133, 153, 193, 0.3);
      margin-bottom: 1.1rem;
    }

    .footer-bottom-text {
      font-size: 0.8rem;
      color: #8b9cc2;
    }

    .footer-bottom-right {
      text-align: right;
    }

    .absolute {
    position: absolute;
}
.h-full {
    height: 100%;
}
.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.social {
    display: flex;
    gap: 12px;
    margin: 12px 0 18px;
}
.social a {
  color: #d1d5db;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #121823;
    border: 1px solid rgba(255, 255, 255, .08);
}

    @media (max-width: 767.98px) {
      .footer-section {
        padding-top: 2.3rem;
      }

      .footer-bottom-right {
        text-align: left;
        margin-top: 0.4rem;
      }
      .hero-title {
        font-size: clamp(2rem, 4vw, 3.6rem);
      }
      .hero-stats {
        gap: 1rem;
      }
      .scroll-indicator {
        bottom: -0.5rem;
      }
      .btn-cta-secondary {
        width: 100%;
        justify-content: center;
      }
      .btn-cta-primary {
        width: 100%;
        justify-content: center;
      }
      .btn-hero-primary {
        width: 100%;
        justify-content: center;
      }
      .btn-hero-secondary {
        width: 100%;
        justify-content: center;
      }
          .topbar {
        display: none;
    }
    .navbar-custom {
        top: 0;
    }
    .hero-section {
        padding-top: 40px;
    }
    }
