/* Base typography & colors */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0b1220;
  background-color: #f3f7fb;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

/* Color palette */
:root {
  --gl-navy: #071729;
  --gl-navy-deep: #020812;
  --gl-blue: #007bff;
  --gl-blue-light: #4ba9ff;
  --gl-accent: #00d2ff;
  --gl-bg-light: #f3f7fb;
  --gl-card-bg: #ffffff;
  --gl-border-soft: #d5dde8;
}

/* Reusable buttons */
.gl-btn-primary {
  background: linear-gradient(135deg, #00d2ff, #007bff);
  color: #ffffff !important;
  border-radius: 999px;
  padding: 10px 28px;
  font-weight: 600;
  border: none;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(0, 123, 255, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.gl-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 123, 255, 0.45);
  background: linear-gradient(135deg, #00c0ea, #0062d1);
}

.gl-btn-secondary {
  background: #ffffff;
  color: var(--gl-navy) !important;
  border-radius: 999px;
  padding: 10px 28px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.gl-btn-secondary:hover {
  transform: translateY(-1px);
  background: #e9f2ff;
  color: var(--gl-navy) !important;
}

/* Header / Navbar */
.gl-header {
  background: #ffffff;
  position: relative;
  z-index: 10;
}

.gl-header-top-bar {
  height: auto;
  background: transparent;
}

.gl-header-top-bar img {
  width: 100%;
}

.gl-header-top {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(211, 219, 233, 0.8);
}

.gl-navbar {
  padding-top: 8px;
  padding-bottom: 8px;
  background: transparent;
}

.gl-header-logo-badge {
  position: absolute;
  display: block;
  align-items: center;
  justify-content: center;
  z-index: 2;
  top: -53px;
  width: auto;
  margin: auto;
  text-align: center;
}

.gl-logo {
  height: auto;
  margin: auto;
}

 .gl-nav-links .nav-link {
  color: #102a4b;
  font-weight: 400;
  font-size: 19px;
}

ul.navbar-nav.gl-nav-links li {
  padding: 0px 15px;
}

.navbar-dark .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.gl-header-cta {
  font-size: 0.9rem;
}

.gl-client-login-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 40px 16px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  background-image: url(img/others/btn-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  border-radius: 50px;
}

.gl-client-login-btn::after {
  display: none;
}

/* Hero */
.gl-hero {
  padding: 0;
  position: relative;
  background: transparent;
}

.gl-hero .container {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 100px;
  bottom: 0;
  height: 100%;
}

.gl-hero-content {
  max-width: 520px;
}

.gl-hero-title {
  font-size: 70px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.gl-hero-eyebrow {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 70px;
  color: #52bbf4;
}

.gl-hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 26px;
  font-family: 'Mulish';
}

.gl-hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 50px 16px 40px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  background-image: url(img/others/btn-bg.png) !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 100% 100% !important;
  border-radius: 50px;
  background-color: transparent !important;
  box-shadow: none !important;
}

.gl-hero-image-wrapper {
  position: relative;
  padding: 12px;
}

.gl-hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  background: radial-gradient(circle at top, rgba(0, 210, 255, 0.3), rgba(0, 0, 0, 0.85));
  filter: blur(1px);
}

.gl-hero-image {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(0, 210, 255, 0.2);
  position: relative;
  z-index: 1;
}

.gl-hero-bottom-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
}

/* Sections */
.gl-section {
  padding: 70px 0;
}

.gl-section-title {
  font-size: 46px;
  font-weight: 700;
  color: #102a4b;
  margin-bottom: 12px;
  font-family: 'Montserrat';
}

.gl-section-title span {
  font-size: 46px;
  font-weight: 700;
  color: #1297d2;
  margin-bottom: 12px;
  font-family: 'Montserrat';
}

.gl-section-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: #fff;
  font-size: 18px;
  font-family: 'Montserrat';
}

/* Features */
.gl-features {
  background: #fff;
}

.gl-features-heading {
  margin-bottom: 40px;
}

.gl-section-kicker {
  font-size: 26px;
  font-weight: 600;
  color: #31a8f5;
  margin: 0;
}

.gl-features-layout {
  margin-top: 20px;
}

.gl-feature-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gl-feature-item {
  display: flex;
  align-items: flex-start;
}

.gl-feature-list--left .gl-feature-item {
  justify-content: flex-end;
  text-align: right;
}

.gl-feature-list--right .gl-feature-item {
  text-align: left;
}

.gl-feature-copy {
  max-width: 280px;
}

.gl-feature-list--left .gl-feature-copy {
  margin-right: 18px;
}

.gl-feature-list--right .gl-feature-copy {
  margin-left: 18px;
}

.gl-feature-item.gl-1 {
  position: relative;
  left: 140px;
  z-index: 9;
}

.gl-feature-item.gl-2 {
  position: relative;
  left: 70px;
  z-index: 9;
}

.gl-feature-item.gl-3 {
  position: relative;
  left: 140px;
  z-index: 9;
}

.gl-feature-item.gl-4 {
  position: relative;
  right: 140px;
}

.gl-feature-item.gl-5 {
  position: relative;
  right: 70px;
}

.gl-feature-item.gl-6 {
  position: relative;
  right: 140px;
}

.gl-feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #000;
}

.gl-feature-text {
  font-size: 16px;
  line-height: 1.7;
  color: #767a7e;
  margin: 0;
  font-family: 'Mulish';
}

.gl-feature-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: auto;
  text-align: center;
  border: 3px solid #fff;
  align-items: center;
  align-content: center;
  align-self: center;
  justify-content: center;
  display: flex;
}

.gl-feature-badge-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.gl-feature-badge-wrap.s-blue {
  background-color: #1097da;
}

.gl-feature-badge-wrap.d-blue {
  background-color: #102a4b;
}

.gl-feature-badge-wrap.gray {
  background-color: #808588;
}


.gl-feature-center {
  position: relative;
  width: 100%;
  height: auto;
}

/* Workforce section */
.gl-workforce {
  background: #0f2745;
  padding: 0px 0px;
}

.gl-workforce .col-lg-6.p-0 {
  margin: 0px;
}

.gl-workforce-image img {
  box-shadow: 0 24px 70px rgba(10, 23, 47, 0.42);
  width: 100%;
}

.gl-workforce .gl-workforce-content {
  background-image: url(img/others/manage-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 630px;
  align-content: center;
  padding: 70px;
}

.gl-workforce-content h2.gl-section-title {
  color: #fff;
}

.gl-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.gl-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: 0.94rem;
  color: #495a74;
}

.gl-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d2ff, #007bff);
}

/* Solution section */
.gl-solution {
  background: #ffffff;
}

.gl-solution-heading {
  margin-bottom: 40px;
}

.gl-solution-timeline {
  position: relative;
}

.gl-solution-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 60px;
    bottom: 230px;
    width: 2px;
    transform: translateX(-50%);
    background-image: linear-gradient(to bottom, #b4b4b4 40%, rgba(255, 255, 255, 0) 0%);
    background-size: 2px 10px;
    background-repeat: repeat-y;
    opacity: 0.9;
}
.gl-solution-step {
  padding: 40px 0;
  position: relative;
}

.gl-solution-step + .gl-solution-step {
  border-top: 1px dashed #dde6f2;
}

.gl-solution-marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #1097da;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  position: relative;
}

.gl-solution-copy {
  max-width: 460px;
}

.gl-solution-title {
  font-size: 22px;
  font-weight: 700;
  color: #102a4b;
  margin-bottom: 6px;
}

.gl-solution-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: #1297d2;
  margin-bottom: 12px;
}

.gl-solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gl-solution-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #4f5f77;
}

.gl-solution-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background-image: url("img/others/bullet-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.gl-solution-image {
  position: relative;
}

.gl-solution-image--left::before,
.gl-solution-image--right::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #1297d2;
  z-index: -1;
  top: 10%;
}

.gl-solution-image--left::before {
  left: -80px;
}

.gl-solution-image--right::before {
  right: -80px;
}
.gl-solution-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 8px;
    font-size: 15px;
    color: #616161;
    line-height: 1.9;
}.gl-solution-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 40px;
    height: 26px;
    background-image: url("img/others/bullet-icon.png");
    background-size: contain;
    background-repeat: no-repeat;
}.gl-solution-title {
    font-size: 31px;
    font-weight: 500;
    color: #000;
    margin-bottom: 6px;
}.gl-solution-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #1097da;
    margin-bottom: 30px;
    font-family: 'Montserrat';
}.gl-solution-marker {
    width: 55px;
    height: 55px;    
    border-radius: 50%;
    background-color: #1097da;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 30px;
    position: relative;
    background: linear-gradient(135deg,  #103d63 0%,#108ece 100%);
}
/* CTA */
.gl-cta .row.align-items-center.gy-3 {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#102a4b+0,102a4b+31,102a4b+43,108ece+100 */
background: linear-gradient(to right,  #102a4b 0%,#102a4b 31%,#102a4b 43%,#108ece 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border-radius: 15px;
    padding: 30px;
}
section.gl-section.gl-cta {
    background-color: #fff;
    padding: 0px 0px 70px;
}
.gl-cta-title {
  color: #fff;
}

.gl-cta .gl-cta-text {
    width: auto;
    max-width: max-content;
    margin: 20px 0px;
}

.gl-cta-btn {
    min-width: auto;
    font-size: 18px;
    color: #fff !important;
    background: #1097da !important;
    border: 1px solid #1097da;
    text-transform: uppercase;
    box-shadow: none;
}

/* Contact */
.gl-contact {
  background: #ffffff;
  padding-bottom: 80px;
}

.gl-contact-form {
}

.gl-contact-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #394962;
}

.gl-contact-form .form-control {
  border-radius: 12px;
  border-color: rgba(182, 194, 214, 0.9);
  font-size: 0.93rem;
  padding: 0.5rem 0.75rem;
}

.gl-contact-form .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.15rem rgba(0, 123, 255, 0.17);
}

/* Footer */
.gl-footer {
  background: #000;
  padding: 0px 0 20px;
}

.gl-footer-logo {
    height: auto;
    margin: 0px auto 30px;
}
.gl-footer-nav a {
  color: rgba(215, 225, 242, 0.85);
  font-size: 0.88rem;
}

.gl-footer-nav a:hover {
  color: #ffffff;
}
.gl-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: #fff;
    color: #000;
    margin-left: 8px;
    font-size: 20px;
    background-color: #fff;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.gl-footer-social a:hover {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#102a4b+0,102a4b+31,102a4b+43,108ece+100 */
background: linear-gradient(to right,  #102a4b 0%,#102a4b 31%,#102a4b 43%,#108ece 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  color: #ffffff;
  transform: translateY(-1px);
}
.gl-footer-brand {
    width: 100%;
    margin: auto !important;
    display: block !important;
    text-align: center;
    align-content: center !important;
    align-self: center !important;
}
.cont-form h2 {
    color: #fff;
}
.gl-contact-form .form-control {
    border-radius: 8px;
    font-size: 17px;
    padding: 0.5rem 0.75rem;
    font-family: 'Montserrat';
    margin-bottom: 10px;
}
.gl-footer-bottom {
    margin-top: 60px;
    border-top: 1px solid #fff;
    padding-top: 20px;
}
.cont-form button.btn.gl-btn-primary.w-100 {
    background-color: #1097da !important;
    width: auto !important;
    font-size: 18px;
    position: relative;
    padding: 10px 50px 10px 20px;
}
.cont-form button::after {
    content: "";
    position: absolute;
    right: 0;
    top: 12px;
    width: 37px;
    height: 22px;
    background-image: url("img/others/btn-con.png");
    background-size: contain;
    background-repeat: no-repeat;
}
.gl-footer-bottom p {
    font-size: 16px;
    color: #fff;
}




/* Responsive tweaks */
@media screen and (max-width: 1279px) {
  .gl-nav-links .nav-link {
    font-size: 15px;
  }
  ul.navbar-nav.gl-nav-links li {
    padding: 0px 4px;
  }
  .gl-hero-title {
      font-size: 50px;
  }
  .gl-hero-title span {
      font-size: 50px;
  }
  .gl-hero-eyebrow {
      font-size: 40px;
  }
  .gl-hero .container {
    top: 60px;
}
.gl-feature-item {
    position: relative;
    left: 0px;
    z-index: 9;
    width: 390px;
}
.gl-feature-item.gl-1 {
    left: 0px;
}
.gl-feature-badge-wrap {
    width: 90px;
    height: 90px;
}
.gl-feature-img {
    width: 80px;
    height: 80px;
}
.gl-feature-item.gl-2 {
    position: relative;
    left: -50px;
    z-index: 9;
}
.gl-feature-item.gl-3 {
    position: relative;
    left: 10px;
    z-index: 9;
}
.gl-feature-item.gl-4 {
    position: relative;
    right: 0px;
    left: -120px;
}
.gl-feature-item.gl-5 {
    position: relative;
    right: 0px;
    left: -60px;
}
.gl-feature-item.gl-6 {
    position: relative;
    right: 0px;
    left: -120px;
}
.gl-workforce .gl-workforce-content {
    height: 500px;
    padding: 40px;
}
.gl-section-title {
    font-size: 35px;
}
.footer-shape {
    position: relative;
    top: -10px;
}
}

@media screen and (max-width: 1023px) {
.gl-nav-links .nav-link {
    font-size: 11px;
    padding: 0px;
}
ul.navbar-nav.gl-nav-links li {
    padding: 0px 1px;
}
.gl-header-logo-badge {
    top: -23px;
    width: 110px;
}
.gl-hero-title {
    font-size: 30px;
}
.gl-hero-eyebrow {
    font-size: 30px;
}
.gl-hero-subtitle {
    font-size: 15px;
    margin-bottom: 10px;
}
.gl-hero .container {
    top: 30px;
}
.gl-section-title {
    font-size: 25px;
}
.gl-solution-title {
    font-size: 20px;
}
.gl-solution-subtitle {
    font-size: 15px;
}
.gl-section-title span {
    font-size: 25px;
}
.gl-section-subtitle {
    max-width: 100%;
    margin: 0 auto;
    color: #fff;
    font-size: 18px;
    font-family: 'Montserrat';
    margin: 0px;
}
.gl-workforce .gl-workforce-content {
    height: auto;
    padding: 70px;
}
.gl-feature-item {
    width: 270px;
}
.gl-feature-item.gl-2 {
    position: relative;
    left: -30px;
    z-index: 9;
}
}

@media (max-width: 991.98px) {

  .gl-hero-image-wrapper {
    margin-top: 26px;
  }

  .gl-cta {
    margin-inline: 0;
  }
}

@media (max-width: 767.98px) {
  .gl-navbar {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .gl-section {
    padding: 52px 0;
  }

  .gl-section-title {
    font-size: 1.7rem;
  }

  .gl-cta {
    padding: 24px 18px;
  }

  .gl-cta-title {
    font-size: 1.35rem;
  }
  a.navbar-brand {
      width: 100px;
  }
  .gl-client-login-btn {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 15px 30px 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background-image: url(img/others/btn-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    border-radius: 50px;
}
.gl-feature-item {
    width: 100%;
}
.gl-feature-item.gl-2 {
    position: relative;
    left: 0px;
    z-index: 9;
}
.gl-feature-item.gl-3 {
    position: relative;
    left: 0px;
    z-index: 9;
}
.gl-feature-item.gl-4 {
    position: relative;
    right: 0px;
    left: 0px;
}
.gl-feature-item.gl-5 {
    position: relative;
    right: 0px;
    left: 0px;
}
.gl-feature-item.gl-6 {
    position: relative;
    right: 0px;
    left: 0px;
}
.gl-feature-center-inner {
    margin: 20px 20px;
}
.gl-feature-list--left .gl-feature-item {
    justify-content: center;
    text-align: center;
    display: block;
}
.gl-feature-copy {
    max-width: 100%;
}
.gl-feature-list--left .gl-feature-copy {
    margin-right: 0px;
}
.gl-feature-list--right .gl-feature-item {
    text-align: center;
    display: block;
}
.gl-feature-list--right .gl-feature-copy {
    margin-left: 0px;
}
.gl-workforce .gl-workforce-content {
    height: auto;
    padding: 30px 30px 0px;
}
.gl-solution-timeline::before {
  display: none;
}
.gl-solution-image--right::before {
  display: none;
}
.gl-feature-badge-wrap {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
    margin: 0px auto 15px;
    padding: 5px;
}
}

@media (max-width: 575.98px) {
.gl-hero-title {
    font-size: 15px;
}
.gl-hero-title br {
    display: none;
}
.gl-hero-eyebrow {
    font-size: 15px;
}
.gl-hero-subtitle {
    font-size: 10px;
    margin-bottom: 5px;
}
.gl-hero .container {
    top: 10px;
}
.gl-hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 30px 10px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background-image: url(img/others/btn-bg.png) !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: 100% 100% !important;
    border-radius: 50px;
    background-color: transparent !important;
    box-shadow: none !important;
}
}