.btn-white {
  background: #fff;
  color: #00054a;
  font-size: 15px;
  line-height: 25px;
  font-weight: 700;
  padding: 11px 30px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  position: relative;
  border: 1px solid;
}

.btn-white {
    /* your normal button styles */
}

.btn-white a {
    /* your normal link styles */
}

.btn-white:hover {
    background: transparent !important;
}

.btn-white:hover a {
    background: transparent !important;
    color: #fff !important;
}
.logobar-items img {
  width: 200px;
}
.btn-default {
  color: #fff;
}
ul.dropdown-menu {
    height: 350px;
    overflow-y: auto;
}
ul.dropdown-menu li a {
    font-size: 15px;
}
ul.dropdown-menu li a:hover {
    color: #fff !important;
    text-decoration: underline;
}

.home-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.home-banner video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay */
.home-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.home-banner .content {
  position: relative;
  z-index: 1;
}

.home-banner .content h1 {
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
}

.home-banner .content p {
  font-size: 25px;
  color: #fff;
}

.home-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.home-featured .media {
  align-items: center;
}

.home-featured .media h4 {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .home-featured {
    grid-template-columns: repeat(1, 1fr);
  }
}

.it-goals-section {
  background: #ffffff;
}

.it-goals-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 50px;
  border-radius: 28px;
  background: #00054a;
  color: #ffffff;
}

.it-goals-content {
  position: relative;
  z-index: 2;
  width: 60%;
  max-width: 680px;
}

.it-goals-content h2 {
  margin: 0 0 25px;
  color: #ffffff;
  line-height: 1.02;
  letter-spacing: -2.5px;
}

.it-goals-content p {
  max-width: 600px;
  margin: 0 0 35px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
}

/* ========================================
   Decorative Circles
======================================== */

.it-goals-decoration {
  position: absolute;
  right: -80px;
  top: 50%;
  width: 500px;
  height: 500px;
  transform: translateY(-50%);
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.25);
}

.circle-large {
  width: 500px;
  height: 500px;
  right: 0;
  top: 0;
}

.circle-medium {
  width: 340px;
  height: 340px;
  right: 80px;
  top: 80px;
  background: rgba(37, 99, 235, 0.08);
}

.circle-small {
  width: 180px;
  height: 180px;
  right: 160px;
  top: 160px;
  background: rgba(37, 99, 235, 0.15);
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 900px) {
  .it-goals-card {
    padding: 60px 45px;
  }

  .it-goals-content {
    width: 75%;
  }

  .it-goals-decoration {
    right: -180px;
  }
}

@media (max-width: 600px) {
  .it-goals-card {
    min-height: auto;
    padding: 50px 30px;
    border-radius: 20px;
  }

  .it-goals-content {
    width: 100%;
  }

  .it-goals-content h2 {
    font-size: 42px;
    letter-spacing: -1.5px;
  }

  .it-goals-content p {
    font-size: 16px;
  }

  .it-goals-decoration {
    opacity: 0.5;
    right: -260px;
  }
}
.feature-box-wrap.f-box-style-4 h4 {
  font-size: 25px;
  font-weight: bold;
}

.values-card:hover {
  transform: scale(1.05);
}

.feature-box-wrap.f-box-style-4:hover .feature-icon span,
.feature-box-wrap.f-box-style-4:hover h4,
.feature-box-wrap.f-box-style-4:hover p {
  color: #fff !important;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.values-card {
    box-shadow: 2px 0px 20px 10px #f9f9f9;
    text-align: center;
    margin: 20px 0;
    padding: 35px;
    border: 1px solid #e4e9f0;
    border-radius: 18px;
    background: #f7f9fc;
    transition: all 0.25s ease;
}

.values-card:hover {
    background: #ffffff;
    border-color: #14213d;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(20, 33, 61, 0.08);
}

  background: #fff;
  box-shadow: 2px 0px 20px 10px #f9f9f9;
  border-radius: 10px;
  text-align: center;
  padding: 40px 20px;
  margin: 20px 0;
}
.values-card h4 {
  font-size: 25px;
  font-weight: bold;
}
.values-card i {
  font-size: 50px;
  color: #00054a;
}

/* =========================================
   SERVICES LAYOUT
========================================= */

.services-page {
  background: #f7f9fc;
  padding: 100px 0;
}

.service-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.services-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

/* =========================================
   SIDEBAR
========================================= */

.services-sidebar {
  position: sticky;
  top: 30px;
}

.services-sidebar-inner {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e3e8ef;
  border-radius: 16px;
}

.services-sidebar-title {
  padding: 28px 25px;
  background: #00054a;
}

.services-sidebar-title span {
  display: block;
  margin-bottom: 8px;
  color: #60a5fa;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.services-sidebar-title h3 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.3;
}

/* =========================================
   SERVICE NAV
========================================= */

.services-nav {
  padding: 8px 0;
}

.service-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  color: #596579;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.service-nav-item:hover {
  background: #f5f8fc;
  color: #00054a;
  border-left-color: #00054a;
}

.service-nav-item.active {
  background: #eff6ff;
  color: #00054a;
  border-left-color: #00054a;
}

.service-nav-title {
  flex: 1;
}

/* =========================================
   SERVICE CONTENT
========================================= */

.service-content {
  min-width: 0;
}

.service-block {
  padding: 0;
}

/* =========================================
   HEADER
========================================= */

.service-header {
  margin-bottom: 25px;
}

.service-header h1 {
  margin: 0 0 15px;
  color: #00054a;
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-header h4 {
  margin: 0;
  color: #00054a;
  font-size: 20px;
  line-height: 1.08;
}

/* =========================================
   INTRODUCTION
========================================= */

.service-introduction {
  margin-bottom: 60px;
}

.service-introduction p {
  margin: 0 0 22px;
  color: #596579;
  font-size: 17px;
  line-height: 1.8;
}

.service-introduction p:last-child {
  margin-bottom: 0;
}

/* =========================================
   SERVICES LIST
========================================= */

.service-list-section {
  margin-bottom: 65px;
}

.service-list-section h3 {
  margin: 0 0 25px;
  color: #00054a;
  font-size: 28px;
  line-height: 1.3;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e3e8ef;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.service-item:hover {
  border-color: #00054a;
  transform: translateX(3px);
  box-shadow: 0 8px 25px rgba(20, 33, 61, 0.06);
}

.service-icon {
  flex: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-top: 1px;
  border-radius: 50%;
  background: #00054a;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
}

.service-item p {
  margin: 0;
  color: #596579;
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================
   CLOSING
========================================= */

.service-closing {
  position: relative;
  overflow: hidden;
  padding: 45px;
  border-radius: 20px;
  background: #00054a;
}

.service-closing h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -1px;
}

.service-closing p {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.8;
}

.service-cta {
  position: relative;
  z-index: 1;
  margin-top: 25px;
  color: #60a5fa;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.service-closing::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -150px;
  top: -150px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 50%;
}

.service-closing::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  top: -90px;
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: 50%;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .services-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 35px;
  }

  .service-nav-item {
    padding: 13px 15px;
    font-size: 13px;
  }

  .service-header h2 {
    font-size: 44px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .services-page {
    padding: 60px 0;
  }

  .service-container {
    width: min(100% - 30px, 1180px);
  }

  .services-layout {
    display: block;
  }

  .services-sidebar {
    position: static;
    margin-bottom: 45px;
  }

  .services-sidebar-title {
    padding: 22px 20px;
  }

  .services-sidebar-title h3 {
    font-size: 20px;
  }

  .services-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 5px;
    gap: 2px;
  }

  .service-nav-item {
    border-left: 0;
    border-radius: 8px;
    padding: 12px;
    font-size: 12px;
  }

  .service-nav-item.active {
    border-left: 0;
  }

  .service-nav-arrow {
    display: none;
  }

  .service-header h2 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }

  .service-introduction p {
    font-size: 16px;
  }

    .service-closing {
        padding: 30px 25px;
    }

}

.markets-section {
    padding: 120px 0;
    background: #ffffff;
    color: #14213d;
}

.markets-header {
    max-width: 850px;
    margin-bottom: 65px;
}

.section-label {
    display: block;
    margin-bottom: 20px;
    color: #14213d;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.markets-header h2 {
    margin: 0 0 25px;
    line-height: 1.05;
    letter-spacing: -2px;
}

.markets-header > p {
    margin: 0;
    color: #596579;
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================
   MARKET CARDS
========================================= */

.markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.market-card {
    padding: 35px;
    border: 1px solid #e4e9f0;
    border-radius: 18px;
    background: #f7f9fc;
    transition: all 0.25s ease;
}

.market-card:hover {
    background: #ffffff;
    border-color: #14213d;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(20, 33, 61, 0.08);
}

.market-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #14213d;
    color: #ffffff;
    font-size: 22px;
}

.market-card h3 {
    margin: 0 0 15px;
    color: #14213d;
    font-size: 21px;
    line-height: 1.3;
}

.market-card p {
    margin: 0;
    color: #596579;
    font-size: 15px;
    line-height: 1.75;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .service-block,
    .markets-section {
        padding: 85px 0;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-header h2 {
        font-size: 48px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
    .service-block,
    .markets-section {
        padding: 65px 0;
    }

    .service-header {
        margin-bottom: 40px;
    }

    .service-header h2 {
        font-size: 39px;
        letter-spacing: -1.5px;
    }

    .service-introduction {
        margin-bottom: 55px;
    }

    .service-introduction p {
        font-size: 16px;
        line-height: 1.75;
    }

    .service-list-section {
        margin-bottom: 60px;
    }

    .service-list-section h3 {
        font-size: 26px;
    }

    .service-item {
        padding: 20px;
    }

    .service-item p {
        font-size: 15px;
    }

    .service-closing {
        padding: 35px 25px;
        border-radius: 18px;
    }

    .service-closing h2 {
        font-size: 32px;
    }

    .markets-header h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .markets-header > p {
        font-size: 16px;
    }

    .markets-grid {
        grid-template-columns: 1fr;
    }

    .market-card {
        padding: 28px;
    }
}

.market-we-support-cta {
    margin-top: 50px;
}
.market-we-support-cta .it-goals-content {
    width: 100%;
    max-width: 100%;
}

.market-we-support-cta .it-goals-content p {
    max-width: 100%;
}
  .service-closing {
    padding: 30px 25px;
  }

.post-desc {
  height: 330px !important;
}
.f-box-style-2 .f-box-inner {
  height: 400px;
}
.bg-custom-gray {
  background-color: #0e1319;
}

/* Cookie policy page */
.cookie-policy-page {
  background: #f5f7f9;
  color: #53616d;
}
.cookie-policy-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 92px;
  background: #071d33;
}
.cookie-policy-hero:after {
  position: absolute;
  right: 8%;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}
.cookie-policy-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.cookie-policy-kicker {
  display: block;
  margin-bottom: 18px;
  color: #00054a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}
.cookie-policy-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}
.cookie-policy-content {
  padding: 80px 0 110px;
}
/* .cookie-policy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 78px;
  justify-content: center;
} */
.cookie-policy-index {
  align-self: start;
  position: sticky;
  top: 30px;
  padding-top: 8px;
  color: #071d33;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.cookie-policy-index-line {
  width: 42px;
  height: 3px;
  margin: 16px 0 18px;
  background: #00054a;
}
.cookie-policy-index p {
  max-width: 160px;
  margin: 0;
  color: #86929c;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.65;
}
.cookie-policy-article {
  min-width: 0;
  padding: 48px 56px 60px;
  background: #fff;
  box-shadow: 0 14px 45px rgba(7, 29, 51, 0.07);
}
.cookie-policy-introduction {
  padding-bottom: 18px;
  border-bottom: 1px solid #e5eaee;
  color: #071d33;
  font-size: 17px;
  line-height: 1.8;
}
.cookie-policy-section {
  padding: 38px 0 2px;
}
.cookie-policy-section h2 {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 21px;
  color: #071d33;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}
.cookie-policy-section h2 span {
  color: #00054a;
  font-size: 12px;
  letter-spacing: 1px;
}
.cookie-policy-section h3 {
  margin: 28px 0 12px;
  color: #071d33;
  font-size: 20px;
  font-weight: 700;
}
.cookie-policy-section p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.8;
}
.cookie-policy-section ul {
  margin: -2px 0 18px;
  padding: 0;
  list-style: none;
}
.cookie-policy-section li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.6;
}
.cookie-policy-section li:before {
  position: absolute;
  top: 10px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00054a;
  content: "";
}
.cookie-policy-type {
  padding: 1px 0 13px 20px;
  border-left: 2px solid #e8edf0;
}
.cookie-policy-contact {
  margin-top: 20px;
  padding-bottom: 0;
  border-top: 1px solid #e5eaee;
}
@media (max-width: 991px) {
  .cookie-policy-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cookie-policy-index {
    position: static;
  }
  .cookie-policy-index p {
    max-width: 420px;
  }
}
@media (max-width: 575px) {
  .cookie-policy-hero {
    padding: 76px 0 62px;
  }
  .cookie-policy-hero h1 {
    font-size: 36px;
  }
  .cookie-policy-content {
    padding: 42px 0 65px;
  }
  .cookie-policy-article {
    padding: 30px 22px 38px;
  }
  .cookie-policy-introduction {
    font-size: 15px;
  }
  .cookie-policy-section {
    padding-top: 30px;
  }
  .cookie-policy-section h2 {
    font-size: 20px;
  }
}

/* Cookie preferences modal */
#cookieModal .modal-dialog {
  max-width: 520px;
  padding: 16px;
}
.cookie-modal-content {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 70px rgba(4, 18, 38, 0.24);
}
.cookie-content {
  position: relative;
  background: linear-gradient(145deg, #f5f8fb 0%, #fff 48%);
  border-top: 4px solid #00054a;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 1;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid #dce3e9;
  border-radius: 50%;
  color: #53616d;
  font-size: 22px;
  font-weight: 400;
  line-height: 27px;
  opacity: 1;
}
.cookie-modal-close:hover {
  background: #fff;
  color: #071d33;
}
.cookie-modal-body {
  padding: 42px 42px 32px;
}
.cookie-modal-intro {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-right: 32px;
}
.cookie-modal-icon {
  display: flex;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #071d33;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 9px 18px rgba(7, 29, 51, 0.18);
}
.cookie-modal-eyebrow {
  display: block;
  margin: 1px 0 5px;
  color: #00054a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.cookie-modal-intro h3 {
  margin: 0 0 10px;
  color: #071d33;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.cookie-modal-intro p {
  margin: 0;
  color: #5c6873;
  font-size: 15px;
  line-height: 1.7;
}
.cookie-modal-actions {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}
.cookie-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.cookie-action:hover {
  transform: translateY(-1px);
}
.cookie-action-primary {
  background: #00054a;
  color: #fff;
  box-shadow: 0 8px 16px rgba(191, 10, 48, 0.18);
}
.cookie-action-primary:hover {
  background: ##00054a;
  color: #fff;
}
.cookie-action-secondary {
  border-color: #cbd5dd;
  background: #fff;
  color: #071d33;
}
.cookie-action-secondary:hover {
  border-color: #071d33;
  background: #f7f9fa;
  color: #071d33;
}
.cookie-action-tertiary {
  justify-content: center;
  min-height: auto;
  padding: 7px;
  background: transparent;
  color: #65717c;
  font-size: 12px;
}
.cookie-action-tertiary:hover {
  color: #00054a;
}
.cookie-modal-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 23px 0 0;
  color: #87919a;
  font-size: 11px;
}
.cookie-modal-note i {
  color: #00054a;
}
@media (max-width: 575px) {
  #cookieModal .modal-dialog {
    margin: 0 auto;
  }
  .cookie-modal-body {
    padding: 34px 24px 24px;
  }
  .cookie-modal-intro {
    gap: 14px;
    padding-right: 18px;
  }
  .cookie-modal-icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
    font-size: 23px;
  }
  .cookie-modal-intro h3 {
    font-size: 21px;
  }
}
.menu-footer ul li a, .menu-footer ul li span  {
  color: #fff !important;
}
.footer-widgets .widget{
  color:#fff;
}

.menu-footer ul li a:hover {
    text-decoration: underline;
    padding-left: 10px;
}

img.footer-logo {
    width: 220px;
    margin: 0 0 20px;
}