@charset "UTF-8";
:root {
  --yellow: #f3c400;
  --yellow-deep: #efc000;
  --black: #050505;
  --soft: #f3f0e6;
  --cream: #efe4bf;
  --text: #111111;
  --dark-grey: #565656;
  --light-grey: #939598;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: "Gilroy", "Montserrat", sans-serif;
}

body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: "Gilroy", "Gilroy-Bold", "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--dark-grey);
}
body p, body a {
  font-family: "Gilroy", "Gilroy-Regular", "Montserrat", sans-serif;
  color: var(--dark-grey);
}

a {
  text-decoration: none;
}

.container-rigid {
  max-width: 1750px;
  margin: 0 auto;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 30;
}
.site-header .main-logo {
  width: 100%;
  max-width: 200px;
}
.site-header .social-mini {
  width: 200px;
}
.site-header .social-mini a {
  color: #434343;
  font-size: 1.5rem;
}

/* Sticky state */
.site-header.header-scrolled {
  position: fixed;
  top: 0;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.45s ease forwards;
}
.site-header.header-scrolled .navbar {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  align-items: center !important;
}
.site-header.header-scrolled .navbar-expand-lg .navbar-collapse {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.site-header.header-scrolled .main-logo {
  max-width: 180px;
}
.site-header.header-scrolled .social-mini {
  width: 160px;
  padding-top: 0 !important;
}

/* Initial hidden state */
.site-header.header-scrolled .navbar-nav .nav-item,
.site-header.header-scrolled .navbar-brand,
.site-header.header-scrolled .social-mini a {
  opacity: 0;
  transform: translateY(-15px);
}

/* Animate when header is active */
.site-header.header-scrolled .navbar-brand {
  animation: fadeSlideDown 0.5s ease forwards;
}

.site-header.header-scrolled .nav-item {
  animation: fadeSlideUp 0.5s ease forwards;
}

.site-header.header-scrolled .social-mini a {
  animation: fadeSlideUp 0.5s ease forwards;
}

/* Stagger effect */
.site-header.header-scrolled .nav-item:nth-child(1) {
  animation-delay: 0.1s;
}

.site-header.header-scrolled .nav-item:nth-child(2) {
  animation-delay: 0.2s;
}

.site-header.header-scrolled .nav-item:nth-child(3) {
  animation-delay: 0.3s;
}

.site-header.header-scrolled .nav-item:nth-child(4) {
  animation-delay: 0.4s;
}

.site-header.header-scrolled .nav-item:nth-child(5) {
  animation-delay: 0.5s;
}

.site-header.header-scrolled .social-mini a:nth-child(1) {
  animation-delay: 0.3s;
}

.site-header.header-scrolled .social-mini a:nth-child(2) {
  animation-delay: 0.4s;
}

.site-header.header-scrolled .social-mini a:nth-child(3) {
  animation-delay: 0.5s;
}

.site-header.header-scrolled .social-mini a:nth-child(4) {
  animation-delay: 0.6s;
}

/* Keyframes */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Smooth slide animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.main-container {
  margin-top: -80px;
}

.brand {
  font-weight: 800;
  font-size: 2rem;
  color: #000;
}

.nav-pill-wrap {
  background: var(--yellow);
  border-radius: 999px;
  padding: 0.6rem 0.6rem;
  gap: 0.25rem;
}

.nav-pill-wrap .nav-link {
  color: #111;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.95rem 1rem !important;
  transition: all 0.5s ease;
}

.nav-pill-wrap .nav-link.active,
.nav-pill-wrap .nav-link:hover {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.nav-pill-wrap .nav-link.active {
  background: #f7e9c2;
}

.social-mini,
.footer-social {
  display: flex;
  gap: 0.35rem;
}

.footer-social a {
  font-size: 1.5rem;
  transition: all 0.5s ease;
}
.footer-social a:hover {
  color: var(--yellow);
}

.footer-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 500px;
}

.social-mini span,
.footer-social span {
  width: 12px;
  height: 12px;
  background: #111;
  display: inline-block;
  border-radius: 2px;
}

.hero-section {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
  position: absolute;
  left: 7%;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  max-width: 1050px;
  color: #fff;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  line-height: 0.99;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-content p {
  font-size: 1.3rem;
  line-height: 1.45;
  max-width: 1000px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: #f5f3ee;
}

.btn-cta,
.badge-link {
  background: var(--yellow);
  color: var(--dark-grey);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.7rem 1.2rem;
  display: inline-block;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  border: 1px solid transparent;
  transition: all 0.5s ease;
}
.btn-cta i,
.badge-link i {
  line-height: 0;
  font-size: 0.75rem;
}
.btn-cta:hover,
.badge-link:hover {
  color: white;
  border: 1px solid white;
  background: transparent;
}

.home-banner-sliders {
  position: relative;
}
.home-banner-sliders .slick-dots {
  position: absolute;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
}
.home-banner-sliders .slick-dots li {
  display: block;
  margin: 0;
  width: 8px;
  height: 18px;
  transition: all 0.4s ease;
}
.home-banner-sliders .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  transition: all 0.4s ease;
}
.home-banner-sliders .slick-dots li button:before {
  display: none;
}
.home-banner-sliders .slick-dots li.slick-active {
  height: 35px;
}
.home-banner-sliders .slick-dots li.slick-active button {
  background: var(--yellow);
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.6);
}

.services-hero {
  min-height: 800px;
  overflow: hidden;
}
.services-hero .hero-content {
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  color: #fff;
  transform: unset !important;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.services-hero .hero-content p {
  max-width: 600px;
}
.services-hero .hero-bg {
  width: 100%;
  height: 800px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.services-hero .service-hero-item i {
  font-size: 2.5rem;
  color: var(--yellow);
  color: #fff000;
  line-height: 0;
}
.services-hero .service-hero-item h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
  margin-bottom: 0;
  padding-top: 8px;
  padding-bottom: 3px;
}
.services-hero .service-hero-item p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 0;
}

.section,
.theme-head,
.theme-body,
.why-section,
.vision-section,
.site-footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.bg-yellow {
  background: var(--yellow);
}

.dark-block {
  background: #000;
  color: #fff;
}

.light-block {
  background: #f2f2f2;
}

.section-about h2,
.theme-head h2,
.why-section h2,
.vision-section h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
  color: #fff;
}

.section-about h2, .vision-section h2 {
  color: #434343;
}

.section-intro,
.theme-head p,
.vision-intro {
  max-width: 1000px;
  font-size: 1.05rem;
  line-height: 1.45;
}

.theme-block .theme-head p {
  color: #fff;
}

.mini-title,
.theme-body h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-top: 1.5rem;
  margin-bottom: 1.2rem;
}

.cap-card,
.value-card,
.info-box,
.mini-box {
  background: #f5ebcf;
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.cap-card {
  background: #f7e9c2;
  min-height: 215px;
}

.cap-card h4,
.value-card h4,
.info-box h4,
.why-point h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.cap-card p,
.value-card p,
.info-box p,
.mini-box p,
.why-point p,
.footer-text,
.site-footer p,
.footer-links a {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #222;
  color: var(--dark-grey);
}

.value-card p {
  margin-bottom: 2px;
}

.flag-badge-text i {
  line-height: 0;
  font-size: 0.95rem;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.icon-circle i {
  font-size: 1.8rem;
  color: var(--yellow);
  color: #939598;
  color: var(--dark-grey);
  line-height: 0;
}

.slider-arrows {
  text-align: center;
  color: #d7b100;
  padding: 0.45rem 0;
  letter-spacing: 0.6rem;
  font-size: 0.9rem;
  display:none;
}

.theme-head small {
  color: var(--yellow);
  display: inline-block;
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
}

.theme-head .badge-link {
  float: right;
  margin-top: -1.8rem;
}

.small-note {
  color: #565656;
  margin-bottom: 1rem;
}

.value-card {
  background: #efe4bf;
  background: #faeec6;
  position: relative;
}

.value-card-icon {
  width: 100%;
  max-width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  background: var(--dark-grey);
  background: #444;
  display: grid;
  place-items: center;
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.value-card-icon i {
  font-size: 1.3rem;
  color: var(--yellow-deep);
  color: #cddb49;
  color: #faeec6;
  line-height: 0;
}

.flagship-badge span {
  color: var(--dark-grey);
  font-weight: 600;
  font-family: "Gilroy", "Gilroy-Medium", sans-serif;
}

.value-card.featured {
  background: var(--yellow);
}
.value-card.featured .value-card-icon {
  position: unset;
  transform: unset;
}

.flag {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.five-cols > .col {
  flex: 1 0 20%;
}

.wide-card {
  max-width: 620px;
}

.why-section .row {
  min-height: 360px;
}

.why-point span {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: #434343;
}

.why-section h2 {
  max-width: 360px;
  margin: 0 auto;
  line-height: 0.95;
  color: #444;
}

.vision-section {
  background: #f1ecdb;
  background: #fffae7;
}
.vision-section .icon-circle {
  width: 100%;
  max-width: 75px;
  height: 75px;
  margin-bottom: 0;
  background: var(--yellow);
}
.vision-section .icon-circle img {
  max-width: 40px;
  opacity: 0.89;
}

.info-box,
.mini-box {
  background: #efe7d4;
}

.mini-box h5 {
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.mini-box p {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.site-footer {
  background: #050505;
  color: #fff;
  padding-bottom: 1rem;
}

.site-footer h4,
.site-footer a,
.site-footer p,
.footer-bottom,
.footer-bottom a {
  color: #fff;
}

.footer-logo {
  font-size: 6rem;
  line-height: 0.8;
  font-weight: 800;
  text-transform: lowercase;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 200px;
}
.footer-logo img {
  width: 100%;
  max-width: 180px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
}

.footer-bottom a {
  margin-left: 1.4rem;
}

.services-wrapper {
  background: #f1ecdb;
  background: #f5f0df;
}
.services-wrapper .services-list-intro h2 {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 1px;
}
.services-wrapper .services-list-intro h3 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #434343;
}
.services-wrapper .services-list-intro p {
  font-size: 1.05rem;
  line-height: 1.45;
  max-width: 900px;
  color: var(--dark-grey);
}
.services-wrapper .service-list-item {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-wrapper .service-list-item p.service-tag {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--yellow);
  color: #8a6c00;
  margin-bottom: 0.5rem;
}
.services-wrapper .service-list-item a {
  color: #d7b100;
  font-weight: 600;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
.services-wrapper .service-list-item a i {
  line-height: 0;
  padding: 0 !important;
}
.services-wrapper .service-list-item a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}
.services-wrapper .service-list-item a:hover:after {
  transform: scaleX(1);
}
.services-wrapper .featured-service-item {
  background: var(--black);
}
.services-wrapper .featured-service-item h3 {
  color: #fff;
}
.services-wrapper .featured-service-item p {
  color: rgba(255, 255, 255, 0.86);
}
.services-wrapper .featured-service-item p.service-tag {
  color: #fff;
  color: #cddb49;
}

.services-approach-wrapper .services-approach h2 {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 1px;
}
.services-approach-wrapper .services-approach h3 {
  font-size: 2.4rem;
  font-weight: 800;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 1 0.5rem;
  color: #fff;
}
.services-approach-wrapper .services-approach p {
  font-size: 1.05rem;
  line-height: 1.45;
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
}
.services-approach-wrapper .strategy-to-legacy i {
  color: #cddb49;
  color: var(--yellow);
  font-size: 2rem;
  display: flex;
  align-items: center;
}
.services-approach-wrapper .strategy-to-legacy .strategy-to-legacy-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.8rem;
  width: 100%;
  max-width: 300px;
}
.services-approach-wrapper .strategy-to-legacy .strategy-to-legacy-item .strategy-to-legacy-item-icon {
  width: 100%;
  max-width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.services-approach-wrapper .strategy-to-legacy .strategy-to-legacy-item .strategy-to-legacy-item-icon i {
  font-size: 2rem;
  color: var(--dark-grey);
  color: var(--yellow);
  color: #cddb49;
  color: white;
  line-height: 0;
}
.services-approach-wrapper .strategy-to-legacy .strategy-to-legacy-item .strategy-to-legacy-item-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  color: #cddb49;
  margin-top: 1rem;
}
.services-approach-wrapper .strategy-to-legacy .strategy-to-legacy-item .strategy-to-legacy-item-content p {
  font-size: 1rem;
  line-height: 1.45;
  max-width: 900px;
  color: var(--dark-grey);
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0;
}

.why-services-wrapper .why-services-content h2 {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--yellow);
  color: #8a6c00;
  letter-spacing: 1px;
}
.why-services-wrapper .why-services-content h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  margin-top: 0.8rem;
  color: #434343;
  max-width: 500px;
  line-height: 1.2;
}
.why-services-wrapper .why-services-content p {
  font-size: 1.15rem;
  line-height: 1.45;
  max-width: 900px;
  color: var(--dark-grey);
}
.why-services-wrapper .why-services-list-item {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.why-services-wrapper .why-services-list-item h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  margin-top: 0.5rem;
  color: #222;
}
.why-services-wrapper .why-services-list-item p {
  font-size: 1rem;
  line-height: 1.45;
  color: #444;
  margin-bottom: 0.5rem;
}

.cta-section-wrapper .cta-section-content h2 {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--yellow);
  color: #8a6c00;
  letter-spacing: 1px;
}
.cta-section-wrapper .cta-section-content h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  margin-top: 0.8rem;
  color: #434343;
  max-width: 550px;
  line-height: 1.2;
}
.cta-section-wrapper .cta-section-content p {
  font-size: 1.15rem;
  line-height: 1.45;
  max-width: 900px;
  color: var(--dark-grey);
}
.cta-section-wrapper .cta-section-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-section-wrapper .cta-section-links a.btn-cta {
  font-size: 1rem;
  line-height: 1.45;
  max-width: 900px;
  color: var(--dark-grey);
  border-color: var(--light-grey);
  padding: 0.8rem 2rem;
  transition: all 0.5s ease-in-out;
}
.cta-section-wrapper .cta-section-links a.btn-cta:hover {
  background: #fff;
  color: var(--black);
  border: 1px solid var(--yellow);
}
.cta-section-wrapper .cta-section-links a.btn-cta-dark {
  background: var(--black);
  color: #fff;
  border: 1px solid var(--black);
  transition: all 0.5s ease-in-out;
}
.cta-section-wrapper .cta-section-links a.btn-cta-dark:hover {
  background: #fff;
  color: var(--black);
  border: 1px solid var(--yellow);
}

.single-service-hero {
  min-height: 500px;
  overflow: hidden;
}
.single-service-hero .hero-bg {
  height: 500px;
}
.single-service-hero .hero-overlay {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.53) 55%, rgba(0, 0, 0, 0.21) 75%, rgba(0, 0, 0, 0.5) 100%);
}
.single-service-hero .hero-content p.hero-text {
  font-size: 1.35rem;
  line-height: 1.75;
  max-width: 800px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
}

.hospitality-hero {
  min-height: 700px;
}
.hospitality-hero .hero-bg {
  height: 700px;
}
.hospitality-hero .hero-overlay-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 55%, rgba(0, 0, 0, 0.21) 75%, rgb(0, 0, 0) 100%);
}
.hospitality-hero .hero-content {
  padding-bottom: 5rem;
}

.hospitality-challenge-wrapper {
  background: #000;
}
.hospitality-challenge-wrapper .hospitality-challenge {
  padding: 2rem;
  border-radius: 12px;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}
.hospitality-challenge-wrapper .hospitality-challenge h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #434343;
}
.hospitality-challenge-wrapper .hospitality-challenge p {
  font-size: 1.15rem;
  line-height: 1.45;
  max-width: 900px;
  margin-bottom: 0.2rem;
  color: var(--dark-grey);
}

.challenge-wrapper {
  background: #fdfaf0;
}
.challenge-wrapper .challenge-list-item {
  background: #fceed3;
  border-radius: 12px;
  padding: 2rem 1.8rem;
  height: 100%;
}
.challenge-wrapper .challenge-list-item .challenge-list-item-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #2b2b2b;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
}
.challenge-wrapper .challenge-list-item .challenge-list-item-icon i {
  font-size: 1.5rem;
  color: var(--yellow);
  line-height: 0;
}
.challenge-wrapper .challenge-list-item h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: #434343;
  margin-top: 1rem;
}
.challenge-wrapper .challenge-list-item p {
  font-size: 0.95rem;
  line-height: 1.45;
  color: #636363;
  margin-bottom: 0;
}
.challenge-wrapper .challenge-list-intro2 h2 {
  font-size: 1.85rem;
  max-width: 750px;
  line-height: 1.5;
}
.challenge-wrapper .solution-item {
  padding: 1rem 0 0;
}
.challenge-wrapper .solution-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #434343;
  margin-bottom: 0.4rem;
}
.challenge-wrapper .solution-item p {
  font-size: 1.1rem;
  color: var(--dark-grey);
  margin-bottom: 0.8rem;
  font-weight: 400;
}
.challenge-wrapper .solution-item ul {
  list-style-type: none;
  padding-left: 0;
}
.challenge-wrapper .solution-item ul li {
  font-size: 0.95rem;
  color: var(--dark-grey);
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1rem;
}
.challenge-wrapper .solution-item ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333;
}

.benefits-wrapper .stakeholder-benefits h2 {
  font-size: 2.2rem;
  color: #fff;
  color: var(--yellow);
}
.benefits-wrapper .stakeholder-benefits p {
  color: #fff;
  font-size: 1.15rem;
}
.benefits-wrapper .benefits-list-item {
  align-items: flex-start;
}
.benefits-wrapper .benefits-list-item .benefits-list-item-number {
  margin-right: 1.2rem;
  border-right: 1px solid var(--yellow);
  padding-right: 1.2rem;
}
.benefits-wrapper .benefits-list-item .benefits-list-item-number p {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0;
  padding-bottom: 10px;
}
.benefits-wrapper .benefits-list-item .benefits-list-item-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.benefits-wrapper .benefits-list-item .benefits-list-item-content h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.benefits-wrapper .benefits-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  width: 100%;
  margin: 1.5rem 0;
}

.led-sln-list-item {
  align-items: flex-start;
}
.led-sln-list-item .led-sln-list-item-icon {
  margin-right: 1.2rem;
  padding-top: 0.2rem;
}
.led-sln-list-item .led-sln-list-item-icon i {
  font-size: 1.8rem;
  color: var(--yellow) !important;
  line-height: 1;
}
.led-sln-list-item .led-sln-list-item-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--yellow) !important;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.led-sln-list-item .led-sln-list-item-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: 0;
  line-height: 1.4;
  font-family: "Gilroy", sans-serif; /* typically they used standard body text, making sure */
}

.led-components-wrapper .led-components-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #434343;
  margin-bottom: 1rem;
  text-align: center;
}
.led-components-wrapper .led-components-item .led-components-item-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #434343;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.led-components-wrapper .led-components-item .led-components-item-content p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark-grey);
  margin-bottom: 0;
  line-height: 1.4;
  margin-bottom: 0;
}

.led-map-wrapper {
  background: #f3f4f6;
}
.led-map-wrapper h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #434343;
  margin-bottom: 0.8rem;
}
.led-map-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #434343;
  margin-bottom: 1rem;
}
.led-map-wrapper p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark-grey);
  margin-bottom: 0;
  line-height: 1.4;
  margin-bottom: 0;
}
.led-map-wrapper .led-map-content img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
}

.differentiation-kpis .differentiation h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #000;
  padding-top: 1rem;
  margin-bottom: 1rem !important;
}
.differentiation-kpis .success-kpis h2 {
  font-size: 2rem;
}
.differentiation-kpis .success-kpis h3 {
  margin-bottom: 0.5rem !important;
}
.differentiation-kpis .diff-kpi-item {
  background: #faeec6;
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
}
.differentiation-kpis .diff-kpi-item .diff-kpi-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: #000;
  display: grid;
  place-items: center;
  margin-right: 1.5rem;
}
.differentiation-kpis .diff-kpi-item .diff-kpi-icon i {
  font-size: 1.3rem;
  color: var(--yellow);
  line-height: 0;
}
.differentiation-kpis .diff-kpi-item .diff-kpi-icon-large {
  width: 60px;
  height: 60px;
  min-width: 60px;
}
.differentiation-kpis .diff-kpi-item .diff-kpi-icon-large i {
  font-size: 1.6rem;
}
.differentiation-kpis .diff-kpi-item .diff-kpi-content {
  align-self: center;
}
.differentiation-kpis .diff-kpi-item .diff-kpi-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
  color: #434343;
}
.differentiation-kpis .diff-kpi-item .diff-kpi-content p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 0;
}
.differentiation-kpis .diff-kpi-item .diff-kpi-content ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.differentiation-kpis .diff-kpi-item .diff-kpi-content ul li {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 0.2rem;
  position: relative;
  padding-left: 0.9rem;
}
.differentiation-kpis .diff-kpi-item .diff-kpi-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333;
}

.business-model h2 {
  text-align: center;
  color: #434343 !important;
}
.business-model .business-model-content {
  border-radius: 16px;
  background: #faeec6;
  padding: 2rem 1.8rem;
  text-align: center;
}
.business-model .business-model-content .large-text {
  font-size: 1.35rem;
  font-weight: 600;
  color: #434343;
  margin-bottom: 0rem;
  line-height: 1.4;
  padding: 0.7rem 0;
}
.business-model .business-model-content .small-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark-grey);
  margin-bottom: 0;
  line-height: 1.4;
  margin-bottom: 0;
  padding-bottom: 0.4rem;
  padding-top: 0.5rem;
}
.business-model .business-model-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.business-model .business-model-content p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark-grey);
  margin-bottom: 0;
  line-height: 1.4;
  margin-bottom: 0;
}

.differentiation-kpis .business-model h2 {
  text-align: center;
  margin-bottom: 0.5rem !important;
}

.differentiation-list .differentiation-list-content {
  background: #faeec6;
  border-radius: 16px;
  padding: 2rem 1.8rem;
}
.differentiation-list .differentiation-list-content ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.differentiation-list .differentiation-list-content ul li {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 0.9rem;
  font-weight: 500;
}
.differentiation-list .differentiation-list-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333;
}

.challenge-list-item ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.challenge-list-item ul li {
  font-size: 1.15rem;
  color: #333;
  margin-top: 0.6rem;
  position: relative;
  padding-left: 0.9rem;
  font-weight: 400;
}
.challenge-list-item ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333;
}

.merchandising-hero {
  height: 100%;
  min-height: 100%;
}
.merchandising-hero .hero-bg {
  height: 100%;
  min-height: 1000px;
}
.merchandising-hero .hero-overlay-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 35%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0.8) 100%);
}
.merchandising-hero .hero-content {
  padding-bottom: 1.5rem;
}
.merchandising-hero .hero-challenge {
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}
.merchandising-hero .hero-challenge h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: #fff;
}
.merchandising-hero .hero-challenge .hero-challenge-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.merchandising-hero .hero-challenge .hero-challenge-item h4 {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 1.25rem;
}
.merchandising-hero .hero-challenge .hero-challenge-item p {
  font-size: 1rem;
  line-height: 1.45;
  max-width: 900px;
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

.team-hero {
  min-height: 640px;
}
.team-hero .hero-bg {
  height: 640px;
  object-position: center;
}
.team-hero .hero-content {
  padding-bottom: 3.5rem;
}
.team-hero .hero-content h1 {
  max-width: 760px;
}
.team-hero .hero-text {
  max-width: 820px !important;
}
.team-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 820px;
  margin-top: 1.5rem;
}
.team-hero-points div {
  border-left: 3px solid var(--yellow);
  padding-left: 1rem;
}
.team-hero-points span {
  display: block;
  color: var(--yellow);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
}
.team-hero-points p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.35;
}
.team-wrapper {
  background: #fdfaf0;
}
.team-content h2,
.network-intro h2,
.network-summary-content h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #434343;
}
.team-content > p {
  font-size: 1.15rem;
  line-height: 1.55;
  max-width: 1180px;
  color: var(--dark-grey);
}
.team-intro {
  margin-bottom: 2rem;
}
.team-member-grid {
  align-items: stretch;
}
.team-member-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(5, 5, 5, 0.1);
  display: flex;
  flex-direction: column;
}
.team-member-photo {
  background: #faeec6;
  min-height: 420px;
  display: grid;
  place-items: center;
}
.team-member-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-member-placeholder {
  border-bottom: 8px solid var(--yellow);
}
.team-member-placeholder span {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: #2c292a;
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
}
.team-member-content {
  flex: 1;
  background: #faeec6;
  padding: 2rem;
  border-left: 8px solid var(--yellow);
}
.team-member-content .team-role {
  color: #8a6c00;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}
.team-member-content h3 {
  color: #434343;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}
.team-member-content p:last-child {
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 0;
  color: var(--dark-grey);
}

.network-wrapper .network-intro h2 {
  color: var(--yellow);
}
.network-wrapper .network-intro p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.55;
}
.network-coverage {
  background: #f9fafb;
  border-radius: 18px;
  padding: 2rem;
}
.network-coverage-header {
  margin-bottom: 1.5rem;
}
.network-coverage-header h3 {
  color: #2c292a;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.network-coverage-header h3 span {
  color: var(--yellow);
}
.network-coverage-header p {
  color: var(--dark-grey);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0;
}
.network-hub-card {
  background: #2c292a;
  border-radius: 16px;
  border-bottom: 8px solid var(--yellow);
  padding: 1.5rem;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  
  min-width:0;
}
.network-hub-card .network-hub-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
}
.network-hub-card .network-hub-icon i {
  color: var(--yellow);
  font-size: 1.55rem;
  line-height: 0;
}
.network-hub-card .network-hub-label {
  /*width: fit-content;*/
  /*background: #fff;*/
  /*border-radius: 999px;*/
  /*color: #2c292a;*/
  /*font-size: 0.78rem;*/
  /*line-height: 1.2;*/
  /*font-weight: 800;*/
  /*padding: 0.45rem 0.75rem;*/
  /*margin-bottom: 1.1rem;*/
  /*white-space: nowrap;*/
  /*  overflow: hidden;*/
  /*  text-overflow: ellipsis;*/
display: inline-block;
    max-width: 180px;

    color: rgb(44, 41, 42);
    font-size: 0.78rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.1rem;
    background: rgb(255, 255, 255);
    border-radius: 999px;
    padding: 0.45rem 0.75rem;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.network-hub-card h4 {
  color: var(--yellow);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.network-hub-card .network-location {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.4rem;
}
.network-hub-card span {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.45;
  margin-top: auto;
  display: block;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.network-hub-global {
  background: #1c1b1b;
}

.network-summary-wrapper {
  background: #f9fafb;
  border-top: 1px solid rgba(5, 5, 5, 0.08);
}
.network-summary-content h2 {
  max-width: 970px;
  margin-bottom: 0;
  line-height: 1.15;
}
.network-summary-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.network-summary-stats div {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  padding: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.network-summary-stats i {
  color: #434343;
  font-size: 1.8rem;
  line-height: 0;
}
.network-summary-stats span {
  color: #434343;
  font-weight: 800;
  font-size: 1.15rem;
}

.services-nav-item {
      position: relative;
    }

    .services-nav-item::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 0.9rem;
    }

    .services-nav-link {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
    }

    .services-nav-link i {
      font-size: 0.7rem;
      transition: transform 0.25s ease;
    }

    .services-dropdown {
      position: absolute;
      top: calc(100% + 0.35rem);
      left: 0;
      min-width: 320px;
      padding: 0.75rem;
      margin: 0;
      list-style: none;
      background: #fffdf7;
      border: 1px solid rgba(17, 17, 17, 0.08);
      border-radius: 24px;
      box-shadow: 0 24px 60px rgba(5, 5, 5, 0.14);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
      z-index: 20;
    }

    .services-dropdown::before {
      content: "";
      position: absolute;
      top: -8px;
      left: 2rem;
      width: 16px;
      height: 16px;
      background: #fffdf7;
      border-top: 1px solid rgba(17, 17, 17, 0.08);
      border-left: 1px solid rgba(17, 17, 17, 0.08);
      transform: rotate(45deg);
    }

    .services-dropdown li + li {
      margin-top: 0.3rem;
    }

    .services-dropdown a {
      display: block;
      padding: 0.85rem 1rem;
      border-radius: 16px;
      color: var(--black);
      font-size: 0.92rem;
      font-weight: 600;
      line-height: 1.4;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .services-dropdown a:hover {
      background: rgba(243, 196, 0, 0.18);
      color: var(--black);
      transform: translateX(3px);
    }

    .services-nav-item:hover .services-dropdown,
    .services-nav-item:focus-within .services-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .services-nav-item:hover .services-nav-link i,
    .services-nav-item:focus-within .services-nav-link i {
      transform: rotate(180deg);
    }



@media (max-width: 1199.98px) {
  .five-cols > .col {
    flex: 1 0 50%;
  }
  .site-header .main-logo {
    max-width: 160px;
  }
}
@media (max-width: 991.98px) {
  .services-nav-item::after {
        display: none;
      }

      /*.services-dropdown {*/
      /*  position: static;*/
      /*  min-width: 100%;*/
      /*  padding: 0.4rem 0 0;*/
      /*  background: transparent;*/
      /*  border: 0;*/
      /*  border-radius: 0;*/
      /*  box-shadow: none;*/
      /*  opacity: 1;*/
      /*  visibility: visible;*/
      /*  transform: none;*/
      /*}*/
      .services-dropdown {
        display: none;
    }

    .services-nav-item.active .services-dropdown {
        display: block;
        position:static;
          min-width: 100%;
        padding: 0.4rem 0 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .services-nav-link{
        width:100%;
    }

      .services-dropdown::before {
        display: none;
      }

      .services-dropdown a {
        padding: 0.65rem 1rem 0.65rem 1.3rem;
      }
      
  .hero-section,
  .hero-bg {
    min-height: 560px;
    height: 560px;
  }
  .services-hero {
    min-height: 650px;
    height: 650px;
  }
  .services-hero .hero-bg {
    min-height: 650px;
    height: 650px;
  }
  .services-hero .hero-content {
    padding: 1.5rem;
  }
  .hero-content {
    left: 5%;
    max-width: 88%;
  }
  .theme-head .badge-link {
    float: none;
    margin-top: 1rem;
  }
  .nav-pill-wrap {
    border-radius: 1rem;
    margin-top: 1rem;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .footer-bottom a {
    margin-left: 0;
    margin-right: 1rem;
  }
  .main-container {
    margin-top: 0;
  }
  .services-hero .service-hero-item i {
    font-size: 2rem;
  }
  .team-hero,
  .team-hero .hero-bg {
    min-height: 850px;
    height: 850px;
  }
  .team-hero-points {
    grid-template-columns: 1fr;
  }
  .network-summary-stats {
    max-width: 520px;
  }
}
@media (max-width: 767.98px) {
  .hero-section,
  .hero-bg {
    min-height: 500px;
    height: 500px;
  }
  .section,
  .theme-head,
  .theme-body,
  .why-section,
  .vision-section,
  .site-footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .cap-card,
  .value-card,
  .info-box,
  .mini-box {
    padding: 1.25rem;
  }
  .five-cols > .col {
    flex: 1 0 100%;
  }
  .brand {
    font-size: 1.6rem;
  }
  .team-hero,
  .team-hero .hero-bg {
    min-height: 900px;
    height: 900px;
  }
  .team-hero .hero-content {
    padding: 1.25rem;
    justify-content: flex-end;
  }
  .team-member-photo,
  .team-member-photo img {
    min-height: 340px;
    height: 340px;
  }
  .team-member-content,
  .network-coverage {
    padding: 1.35rem;
  }
  .network-summary-stats {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=style.css.map */
