/* ============================================================
   LUMA WEB SOLUTIONS — Shared Stylesheet
   Class naming convention: block, block__element, block--modifier
   ============================================================ */

:root {
  --luma-navy-950: #070c26;
  --luma-navy-900: #0a1440;
  --luma-navy-600: #101c56;
  --luma-blue-600: #2f5bff;
  --luma-blue-500: #4d7bff;
  --luma-purple-600: #6a3bd6;
  --luma-teal-500: #17b6c4;
  --luma-green-500: #1fae63;
  --luma-ink-900: #0d1230;
  --luma-ink-600: #3c4260;
  --luma-ink-500: #6b7190;
  --luma-fog-100: #f4f6fc;
  --luma-fog-200: #eaeefb;
  --orange: #FFAA00;
  --luma-line: #e3e7f5;
  --luma-white: #ffffff;
  --luma-radius-lg: 18px;
  --luma-radius-md: 12px;
  --luma-radius-sm: 8px;
  --luma-shadow-card: 0 10px 30px rgba(13, 18, 48, .06);
  --luma-shadow-pop: 0 20px 45px rgba(13, 18, 48, .14);
  /* --font-display: 'Plus Jakarta Sans', sans-serif; */
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--luma-ink-900);
  background: var(--luma-white);
  -webkit-font-smoothing: antialiased;
  font-family: "Poppins", sans-serif !important;
}

h1,
h2,
h3,
h4,
.font-display {}

a {
  text-decoration: none;
}

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

.p-20-10 {
  padding: 20px 30px !important;
}

/* ---------- Utility ---------- */
.text-accent-blue {
  color: #0052fb;
}

.text-accent-green {
  color: var(--luma-green-500);
}

.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .14em;
  color: #0152f8;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

:focus-visible {
  outline: 3px solid #0152f8;
  outline-offset: 2px;
}

/* Desktop Active Navbar Link */
.navbar {
  background-color: var(--luma-ink-900);
}

.navbar-nav .nav-link {
  position: relative;
  color: #fff;
  padding-bottom: 12px;
}

/* Active underline */
.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #2f8cff;
  border-radius: 2px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  background: var(--luma-navy-900);
  padding: .65rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--luma-white);
}

.brand__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: .03em;
}

.brand__tag {
  font-size: .55rem;
  letter-spacing: .22em;
  color: #0152f8;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.main-nav__link {
  color: rgba(255, 255, 255, .82);
  font-weight: 600;
  font-size: .92rem;
  padding: .4rem 0;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.main-nav__link:hover,
.main-nav__link:focus-visible {
  color: var(--luma-white);
}

.main-nav__link.is-active {
  color: var(--luma-white);
  border-color: #0152f8;
}

.btn-luma-primary {
  text-decoration: none;
  background: #0152f8;
  color: var(--luma-white);
  font-weight: 500;
  font-size: .92rem;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: none;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
}

.btn-luma-primary:hover {
  background: #252bc4;
  color: var(--luma-white);
  /* transform: translateY(-1px); */
}

.btn-luma-primary__icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.btn-luma-outline {
  text-decoration: none;
  background: transparent;
  color: var(--luma-white);
  border: 1.5px solid rgba(255, 255, 255, .5);
  font-weight: 600;
  font-size: .92rem;
  padding: .68rem 1.3rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: background .2s ease, border-color .2s ease;
}

.btn-luma-outline:hover {
  background: rgba(255, 255, 255, .1);
  color: var(--luma-white);
  border-color: var(--luma-white);
}

.btn-luma-outline__icon {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

.navbar-toggler-luma {
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 6px;
  padding: .35rem .55rem;
  background: transparent;
}

.navbar-toggler-luma__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
}

.navbar-nav .nav-link {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: all .3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: .3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Desktop */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
}

/* Mobile (991px and below) */
@media (max-width: 991.98px) {

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: #000 !important;
  }
}

/* Default link color */
.navbar-nav .nav-link {
  color: #ffffff !important;
}

/* Desktop hover & active */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
}

/* Mobile */
@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    color: #858585 !important;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: #000 !important;
  }
}

.offcanvas-header {
  background: var(--luma-navy-900);
}

.btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* ============================================================
   HERO BANNER (bg image, left = content, right = image)
   ============================================================ */
.hero {
  position: relative;
  background-image: url('/new-version/imgs/main-page/home_page_BG_desktop.png');
  background-size: cover;
  background-position: center;
  color: var(--luma-white);
  overflow: hidden;

}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 31%, rgba(79, 123, 255, -11.65), transparent 89%);
  pointer-events: none;
}

.hero__row {
  display: flex;
  /* align-items: center; */
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero__col--content {
  flex: 1 1 50%;
  min-width: 0;
}

.hero__col--media {
  flex: 1 1 50%;
  min-width: 0;
}

.hero__eyebrow {
    color: #0152f8;
    margin-left: 10px;
}

.hero__title {
  font-weight: 600;
  font-size: 60px;
  line-height: 1.12;
  margin-bottom: 1.1rem;
}

.hero__title-accent {
  color: #0152f8;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .78);
  max-width: 34rem;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 2.5rem;
}

.hero-section-feature {
  position: relative;
  text-align: center;
  padding: 20px 15px;
  height: 100%;
}

.hero-section-feature::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background: rgba(255, 255, 255, .2);
}

.hero-section-feature.border-0::after {
  display: none;
}

.hero-section-feature__icon {
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto 12px;
}

.hero-section-feature__label {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.hero-features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  /* padding: 25px 0; */
  margin: 0;
  width: 100%;
}

.hero-features__item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Vertical Divider */
.hero-features__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  width: 1px;
  height: 70%;
  background: rgba(255, 255, 255, .18);
}

.hero-features__icon {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.hero-features__label {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 20px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}

.play-icon {
  width: 25px;
  height: 25px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon i {
  font-size: 13px;
  margin-left: 2px;
  color: #fff;
}

.watch-btn:hover {
  border-color: #fff;
  color: #fff;
}

.watch-btn:hover .play-icon {
  transform: scale(1.05);
}

/* Tablet */

@media (max-width:991px) {

  .hero-features {
    flex-wrap: wrap;
  }

  .hero-features__item {
    flex: 0 0 50%;
    margin-bottom: 25px;
  }

  .hero-features__item:nth-child(2)::after {
    display: none;
  }
}

/* Mobile */

@media (max-width:575px) {

  .hero-features {
    flex-direction: column;
    gap: 20px;
  }

  .hero-features__item {
    width: 100%;
    padding: 15px 0;
  }

  .hero-features__item::after {
    display: none;
  }

  .hero-features__label {
    white-space: normal;
  }
}

.hero__media-frame {
  position: relative;
  border-radius: var(--luma-radius-lg);
  overflow: hidden;
  /* box-shadow: var(--luma-shadow-pop);
  border: 1px solid rgba(255, 255, 255, .12); */
}

.hero__media-frame img {
  width: 100%;
  height: auto;
}

.hero__badge {
  position: absolute;
  background: var(--luma-white);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .9rem .5rem .5rem;
  box-shadow: var(--luma-shadow-card);
  font-size: .75rem;
  font-weight: 600;
  color: var(--luma-ink-900);
}

.hero__badge-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
}

.hero__badge--design {
  top: 6%;
  left: -4%;
}

.hero__badge--develop {
  top: 0;
  right: 12%;
}

.hero__badge--grow {
  bottom: 22%;
  left: -6%;
}

.hero__badge--support {
  bottom: 8%;
  right: -2%;
}

/* ============================================================
   CORE SERVICES
   ============================================================ */
.services-section {
  background: #fff;
}

.services-title {
  font-size: 42px;
  font-weight: 600;
  color: #231942;
}

.services-subtitle {
  color: #090024;
  font-size: 16px;
}

.service-card {
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: .3s;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card p {
  flex-grow: 1;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 600;
}

.service-icon {
  width: 70px;
  height: 70px;
  display: block;
  margin: 0 auto 20px;
}

.service-card h5 {
  font-size: 20px;
  font-weight: 600;
  color: #231942;
  margin-bottom: 15px;
  /* min-height:55px; */
}

.service-card p {
  color: #43415d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-link {
  text-decoration: none;
  font-weight: 600;
}

.text-purple {
  color: #b100ff;
}

@media(max-width:991px) {

  .services-title {
    font-size: 32px;
  }

}

@media(max-width:576px) {

  .services-title {
    font-size: 28px;
  }

}

/* ============================================================
   HIGHLIGHT COLUMNS (Marketing / IT Department / Why Choose / Hosting)
   ============================================================ */
/*=============================
    SECTION
=============================*/

.luma-features {
  background: #fff;
  /* padding:70px 0; */
}

.feature-wrapper {
  background: #fff;
  border: 1px solid #f5f4f4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .04);
}

.feature-col {
  position: relative;
  padding: 28px;
}

/* Vertical Divider */
.feature-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  /* Starts 10% from top */
  right: 0;
  width: 1px;
  height: 80%;
  /* Divider height */
  background: #faf4ed;
}

/*=============================
    COLUMN
=============================*/


/*=============================
    TITLE
=============================*/

.feature-title {
  font-size: 34px;
  font-weight: 600;
  color: #221547;
  line-height: 1.25;
  margin-bottom: 18px;
}

.feature-text {
  color: #555;
  line-height: 1.8;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}

.feature-note {
  display: block;
  color: rgb(67, 65, 93);
  line-height: 1.7;
  font-size: 16px;
  margin-top: 20px;
}

/*=============================
    LIST
=============================*/

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.feature-list img {
  width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/*=============================
    IMAGES
=============================*/

.marketing-images {
  position: relative;
  height: 170px;
  margin: 25px 0;
}

.mobile-img {
  width: 120px;
  display: block;
  margin: auto;
}

.facebook-img {
  position: absolute;
  right: 10px;
  top: 0;
  width: 55px;
}

.instagram-img {
  position: absolute;
  right: 15px;
  top: 65px;
  width: 55px;
}

.google-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65px;
}

/*=============================
    COLUMN 2
=============================*/

.shield-img {
  /* width:85px; */
  margin-right: 10px;
}

.server-img {
  width: 85px;
}

/*=============================
    COLUMN 3
=============================*/

.team-img {
  width: 360px !important;
  max-width: 100%;
}

/*=============================
    COLUMN 4
=============================*/

.cloud-img {
  /* width:90px; */
  margin-bottom: 10px;
}

.server-big {
  width: 120px;
}



/*=============================
      Laptop
=============================*/

@media (max-width:1199px) {

  .feature-title {
    font-size: 28px;
  }

  .feature-col {
    padding: 24px;
  }

  .team-img {
    width: 180px;
  }

}

/*=============================
      Tablet
=============================*/

@media (max-width:991px) {

  .feature-col {
    border-right: none;
    border-bottom: 1px solid #f1e0cb;
  }

  .feature-col:nth-child(2n) {
    border-bottom: 1px solid #f1e0cb;
  }

  .feature-col:last-child {
    border-bottom: none;
  }

  .feature-title {
    font-size: 26px;
  }

  .marketing-images {
    height: 150px;
  }

  .mobile-img {
    width: 100px;
  }

  .facebook-img,
  .instagram-img {
    width: 45px;
  }

  .server-big {
    width: 100px;
  }

}

/*=============================
      Mobile
=============================*/

@media (max-width:767px) {

  .feature-col {
    padding: 22px;
    border-bottom: 1px solid #f1e0cb;
  }

  .feature-col:last-child {
    border-bottom: none;
  }

  .feature-title {
    font-size: 24px;
  }

  .feature-text {
    font-size: 14px;
  }

  .feature-list li {
    font-size: 14px;
  }

  .marketing-images {
    height: 140px;
  }

  .mobile-img {
    width: 90px;
  }

  .facebook-img {
    right: 20px;
  }

  .instagram-img {
    right: 20px;
  }

  .google-img {
    width: 55px;
  }

  .team-img {
    width: 170px;
  }

  .server-big {
    width: 90px;
  }

  /* .cloud-img{
    width:70px;
} */

}

/*=============================
      Small Mobile
=============================*/

@media (max-width:480px) {

  .feature-wrapper {
    border-radius: 12px;
  }

  .feature-col {
    padding: 18px;
  }

  .feature-title {
    font-size: 22px;
  }

  .feature-text,
  .feature-list li {
    font-size: 13px;
  }

  .mobile-img {
    width: 80px;
  }

  .facebook-img,
  .instagram-img {
    width: 40px;
  }

  .server-big {
    width: 80px;
  }

  .team-img {
    width: 150px;
  }

}

/* ============================================================
   ADDITIONAL SERVICES GRID (Services page)
   ============================================================ */
.mini-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.mini-service-card {
  background: var(--luma-white);
  border: 1px solid var(--luma-line);
  border-radius: var(--luma-radius-sm);
  padding: 1.2rem 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.mini-service-card__icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #e7edff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-service-card__icon {
  width: 20px;
  height: 20px;
}

.mini-service-card__label {
  font-weight: 600;
  font-size: .85rem;
  line-height: 1.35;
}

/* ============================================================
   FEATURE STRIP (Why LUMA page — 6 icon columns)
   ============================================================ */
.feature-strip {
  background: var(--luma-white);
  border: 1px solid var(--luma-line);
  border-radius: var(--luma-radius-lg);
  box-shadow: var(--luma-shadow-card);
  padding: 2.25rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: -4.5rem;
  position: relative;
  z-index: 5;
}

.feature-strip__item {
  text-align: center;
}

.feature-strip__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #e7edff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .8rem;
}

.feature-strip__icon {
  width: 24px;
  height: 24px;
}

.feature-strip__title {
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: .3rem;
}

.feature-strip__desc {
  font-size: .78rem;
  color: var(--luma-ink-500);
  line-height: 1.5;
}

/* ============================================================
   TRUST STRIP (photo + 5 icon items)
   ============================================================ */
.trust-strip {
  background: var(--luma-fog-100);
  border-radius: var(--luma-radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: .85fr 2.15fr;
  align-items: center;
}

.trust-strip__media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  min-height: 280px;
}

.trust-strip__content {
  padding: 2.25rem;
}

.trust-strip__heading {
  text-align: center;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1.75rem;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.trust-item {
  text-align: center;
}

.trust-item__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--luma-white);
  box-shadow: var(--luma-shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .75rem;
}

.trust-item__icon {
  width: 24px;
  height: 24px;
}

.trust-item__title {
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: .3rem;
}

.trust-item__desc {
  font-size: .75rem;
  color: var(--luma-ink-500);
  line-height: 1.45;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  /* background: linear-gradient(90deg, #0052fb, var(--luma-purple-600)); */
   background: linear-gradient(90deg, #0748bd, var(--luma-purple-600));
  border-radius: var(--luma-radius-lg);
  padding: 25px 30px;
}

.stat-item {
  min-height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  border-right: 1px solid #d9dce3;
}

/* Remove border from last item */
.row>div:last-child .stat-item {
  border-right: 0;
}

.stat-item {
  min-height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  border-right: 1px solid #d9dce3;
}

/* Last item - no border */
.row>div:last-child .stat-item {
  border-right: 0;
}


/* Responsive - remove all borders */
@media (max-width: 991px) {

  .stat-item,
  .row>div:last-child .stat-item {
    border: 0;
  }

}

.stat-item__icon {
  width: 70px;
  height: 70px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.stat-item__value {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.stat-item__label {
  font-size: 18px;
  margin-top: 5px;
  color: #fff;
}


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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
}

.tick-icon {
  width: 18px;
  height: 18px;
  background: #003df3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.tick-icon i {
  font-size: 10px;
  font-weight: 900;
}


.hero-features__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  /* border-right:1px solid rgba(255,255,255,.2); */
  height: 100%;
}

.hero-features__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.hero-features__label {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

/* Mobile */
@media (max-width:767px) {

  .hero-features__item {
    justify-content: flex-start;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    padding: 10px 5px;
  }

  .hero-features__label {
    font-size: 13px;
  }

  .hero-features__icon {
    width: 20px;
    height: 20px;
  }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-right-img {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.cta-left-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cta-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Left to Right Light Grey Gradient */
.cta-left-img::before {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;
  z-index: -1;
}

.cta-right-img img {
  width: 100%;
  height: 100%;
  max-width: 350px;
  object-fit: cover;
  display: block;
}

/* Left blur/fade effect */
.cta-right-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  /* Adjust width */
  height: 100%;

  z-index: 2;
}

.cta-banner-main {
  /* background:#fff9eb; */
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #fffcf8;
  background-image: url(../imgs/main-page/main=-footer.png);
}

.cta-left-img {
  padding: 20px;
}



.cta-content {
  padding: 40px 25px;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #21194a;
  margin-bottom: 15px;
}

.cta-content h2 span {
  color: #0152f8;
}

.cta-content p {
  color: #555;
  font-size: 16px;
  margin-bottom: 25px;
}

.cta-content .btn {
  background: #355BFF;
  border: none;
  font-weight: 600;
  border-radius: 10px;
}

.cta-right-img {
  height: 100%;
}

.cta-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--luma-navy-950);
  color: rgba(255, 255, 255, .92);
  padding-top: 3.5rem;
}

.site-footer__grid {
  display: grid;
  /* grid-template-columns: 3.4fr 2fr 2fr 2.1fr; */
  grid-template-columns: 3.4fr 1.2fr 1.2fr 1.9fr 1.8fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
}

.footer-brand__desc {
  font-size: 16px;
  line-height: 1.7;
  margin: .9rem 0 1.3rem;
  max-width: 500px;
}

.footer-brand__social {
  display: flex;
  gap: .6rem;
}

.footer-brand__social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  /* background: rgba(255, 255, 255, .08); */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
}

.footer-brand__social-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.footer-col__title {
  color: var(--luma-white);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 1.1rem;
}

.footer-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-col__link {
  color: rgba(255, 255, 255, .92);
  /* font-size: 16px; */
  font-size: .95rem;
  text-decoration: none;
}

.footer-col__link:hover {
  color: var(--luma-white);
}

.footer-contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  /* font-size: 16px; */
  font-size: .95rem;
}

.footer-contact__icon {
  width: 16px;
  height: 16px;
  margin-top: .2rem;
  filter: brightness(0) invert(1) opacity(.8);
}

.footer-news__desc {
  font-size: .85rem;
  margin-bottom: 1rem;
}

.footer-contact__link {
  /* color: #fff; */
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
  transition: 0.3s;
}

.footer-contact__link:hover {
  color: #4d7bff;
  text-decoration: underline;
}

.footer-news__form {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.footer-news__input {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  padding: .65rem .9rem;
  color: var(--luma-white);
  font-size: .85rem;
}

.newsletter-box {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 320px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
}

.newsletter-input {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  height: 48px;
  padding: 0 16px;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, .6);
}

.newsletter-btn {
  width: 50px;
  height: 48px;
  border: 0;
  background: #3563ff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.newsletter-btn:hover {
  background: #244ee8;
}

.newsletter-btn i {
  font-size: 18px;
}

.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-news__input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, 6.55);
}

.site-footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.site-footer__bottom-links a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
}

.footer-border{
  border-color: rgba(255, 255, 255, .1) !important;

}

@media (max-width:991px) {
   .footer-border{
  border: none;

}
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1199.98px) {
  .highlight-cols--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:991.98px) {
  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--luma-navy-600);
    margin-top: 1rem;
    border-radius: 10px;
    padding: .5rem 1rem;
  }

  .main-nav__link {
    width: 100%;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .main-nav .btn-luma-primary {
    margin: .85rem 0 .5rem;
  }

  .hero__row {
    flex-direction: column;
  }

  .hero__col--content,
  .hero__col--media {
    flex: 1 1 100%;
  }

  .hero__title {
    font-size: 2.15rem;
  }

  .hero-features {
    gap: 1.25rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-cols--3 {
    grid-template-columns: 1fr;
  }

  .highlight-cols--2 {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1.5rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip__media img {
    min-height: 200px;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-banner__media {
    min-height: 180px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__badge {
    display: none;
  }
}

@media (max-width:767.98px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .highlight-cols--4 {
    grid-template-columns: 1fr;
  }

  .mini-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .stat-item {
    flex-direction: column;
    gap: .35rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .hero__title {
    font-size: 1.85rem;
  }

  .cta-banner__content {
    padding: 1.75rem;
  }
}

@media (max-width:575.98px) {
  .mini-services-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 2.75rem;
  }

  .hero {
    padding-block: 3rem;
  }
}

.service-highlight-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  background: #fff;
  border: 1px solid #fffaef;
  border-radius: 18px;
  padding: 18px;
}

.service-highlight-item {
  background: #fff;
  border: 1px solid #fffaef;
  border-radius: 12px;
  padding: 18px 10px;
  text-align: center;
  transition: .3s;
  cursor: pointer;
}


.service-highlight-item__icon-wrap {
  width: 50px;
  height: 50px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-highlight-item__icon {
  width: 40px;
  height: 40px;
}

.service-highlight-item__label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: #20244b;
}

.service-highlight-card {
  background: #fff;
  border: 1px solid #fff9eb;
  border-radius: 18px;
  padding: 10px 30px;
  height: 100%;
  position: relative;
}

.service-highlight__title {
  font-size: 26px;
  font-weight: 600;
  color: #140836;
  margin-bottom: 25px;
}

.service-highlight__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 30px;
}

.service-highlight__list-item {
  display: flex;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 600;
  color: #20244b;
}

.service-highlight__list-icon {
  width: 18px;
  margin-right: 10px;
  margin-top: 2px;
}

@media (max-width:991px) {

  .service-highlight-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-highlight__list {
    grid-template-columns: 1fr;
  }

}

@media(max-width:767px) {

  .service-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-highlight__title {
    font-size: 24px;
    text-align: center;
  }

}

@media(max-width:480px) {

  .service-highlight-grid {
    grid-template-columns: 1fr;
  }

}

/*==============================
Service CTA
==============================*/

.service-cta {
  padding: 60px 0;
}

.service-cta-box {
  border: 1px solid #f7f7f7;
  background: linear-gradient(90deg, #2448de 5%, #ffffff 25%, #ffffff 60%, #a8acfa 70%, #5f30d5 88%);
  border-radius: 20px;
  padding: 20px 35px;
  overflow: hidden;
  position: relative;
}

.service-cta__img {
  max-width: 220px;
  width: 100%;
}

.service-cta__title {
  font-size: 32px;
  font-weight: 600;
  color: #1B1B1B;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-cta__title span {
  color:  #003df3;
}

.service-cta__text {
  font-size: 18px;
  color: #555;
  margin-bottom: 0;
}

.btn-service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: #fff;
  color: #003df3;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: .3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.btn-service-cta:hover {
  background: #0152f8;
  color: #fff;
}

@media(max-width:991px) {

  .service-cta-box {
    padding: 35px 25px;
    text-align: center;
  }

  .service-cta__img {
    max-width: 180px;
    margin-bottom: 20px;
  }

  .service-cta__title {
    font-size: 30px;
  }

  .service-cta__text {
    margin-bottom: 25px;
  }

}

@media(max-width:576px) {

  .service-cta-box {
    padding: 25px 20px;
  }

  .service-cta__title {
    font-size: 24px;
  }

  .service-cta__text {
    font-size: 16px;
  }

  .btn-service-cta {
    width: 100%;
    padding: 15px 20px;
  }

}

@media (min-width: 992px) {
  .custom-col-lg {
    flex: 0 0 20%;
    max-width: 20% !important;
  }
}

.hero-title-IT {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: #15133a;
  letter-spacing: -0.5px;
}

@media (max-width: 991px) {
  .hero-title-IT {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .hero-title-IT {
    font-size: 1.6rem;
  }
}

.gradient-text-green {
  background: linear-gradient(90deg, #36c96b 0%, #0f8a5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.gradient-text-blue {
  background: linear-gradient(90deg, #5a6cff 0%, #2f5bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

/* .client-trust-section{
    background:#fff;
} */

.client-trust-card {
  /* background:linear-gradient(180deg,#fffdf4,#fff7dd); */
  border-radius: 22px;
  padding: 22px;
  border: 1px solid #fff9eb;
  /* box-shadow:0 12px 30px rgba(0,0,0,.08); */
}

.trust-image {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.trust-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1d1b4d;
}

.trust-title span {
  color: #0052fb;
}

.trust-item {
  text-align: center;
  height: 100%;
  padding: 0 12px;
  position: relative;
}

.trust-item::after {
  content: "";
  position: absolute;
  top: 5%;
  right: 0;
  width: 1px;
  height: 90%;
  background: #eadfb7;
}

.trust-item:last-child::after {
  display: none;
}


.trust-item h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1d1b4d;
  margin-bottom: 10px;
}

.trust-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

@media(max-width:991px) {

  .trust-title {
    text-align: center;
    font-size: 1.7rem;
  }

  .trust-item {
    padding: 20px 10px;
  }

  .trust-item::after {
    display: none;
  }
}

@media(max-width:576px) {

  .client-trust-card {
    padding: 18px;
  }

  .trust-title {
    font-size: 1.4rem;
  }

  .trust-item h5 {
    font-size: 16px;
  }

  .trust-item p {
    font-size: 13px;
  }
}

.trust-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/*==================================================
                WHY TESTIMONIALS
==================================================*/
.testimonial-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #fdeed8;
  color: #19194a;
  transition: .3s;
}

.testimonial-arrow:hover {
  background: #2f5bff;
  color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
  display: none;
}

/*==================================================
                    CTA
==================================================*/

/* .why-cta {
  background: linear-gradient(180deg, #fff8e8, #fffdf8);
} */

.cta-box {

  /* background:
    linear-gradient(rgba(17, 20, 70, .90), rgba(17, 20, 70, .90)),
    url("../imgs/cta-bg.jpg") center center/cover no-repeat; */

   background-image: url(../imgs/bg-img2.png);  
  border-radius: 18px;
  background-position: right;
  padding: 20px 50px;

  overflow: hidden;
}

.cta-box h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cta-box p {
  color: #f2f2f2;
  font-size: 18px;
  margin-bottom: 0;
}

.cta-btn {

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 18px 38px;

  background: #fff;

  color: #2f5bff;

  border-radius: 12px;

  text-decoration: none;

  font-size: 18px;

  font-weight: 600;

  transition: .3s;
}

.cta-btn:hover {
  background: #2f5bff;
  color: #fff;
}

.cta-btn i {
  margin-left: 12px;
}



/*==================================================
            Tablet
==================================================*/

@media (max-width:991px) {

  .why-testimonials {
    padding: 60px 0 30px;
  }

  .section-title {
    font-size: 34px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-text {
    min-height: auto;
  }

  .cta-box {
    padding: 35px 30px;
    text-align: center;
  }

  .cta-box h2 {
    font-size: 30px;
  }

  .cta-box p {
    margin-bottom: 25px;
    font-size: 16px;
  }

}



/*==================================================
                Mobile
==================================================*/

@media (max-width:767px) {

  .why-testimonials {
    padding: 50px 0 20px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .testimonial-card {
    padding: 22px;
  }

  .stars {
    font-size: 18px;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .testimonial-footer h6 {
    font-size: 18px;
  }

  .testimonial-footer span {
    font-size: 14px;
  }

  .client-img {
    width: 65px;
    height: 65px;
  }

  .cta-box {
    padding: 25px 20px;
  }

  .cta-box h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .cta-box p {
    font-size: 15px;
  }

  .cta-btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
  }

}

.testimonial-section {

  /* background: linear-gradient(180deg, #FFFCE8, #FFF8D7); */
  overflow: hidden;

}

.testimonial-title {

  font-size: 40px;
  font-weight: 600;
  color: #1c1c1c;

}

.testimonial-card {

  background: var(--card);
  border: 1px solid var(--luma-line);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .3s;

}


.stars {

  color: var(--orange);
  font-size: 22px;
  margin-bottom: 20px;

}

.testimonial-text {

  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;

}

.testimonial-footer {

  display: flex;
  align-items: center;
  justify-content: space-between;

}

.testimonial-footer h5 {

  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;

}

.testimonial-footer span {

  font-size: 15px;
  color: #666;

}

.testimonial-footer img {

  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;

}

.swiper {

  padding: 10px 45px 40px;

}

.swiper-button-next,
.swiper-button-prev {

  width: 52px;
  height: 52px;
  background: #FCE7C5;
  border-radius: 50%;
  color: #222;

}

.swiper-button-next:after,
.swiper-button-prev:after {

  font-size: 20px;
  font-weight: bold;

}

@media(max-width:991px) {

  .testimonial-title {

    font-size: 34px;

  }

}

@media(max-width:767px) {

  .testimonial-title {

    font-size: 28px;

  }

  .testimonial-card {

    padding: 25px;

  }

  .swiper {

    padding: 0 15px 40px;

  }

}

.testimonial-section {
  overflow: hidden;
}

.testimonialSwiper {
  overflow: hidden;
  position: relative;
  padding: 10px 60px;
}

.swiper-wrapper {
  overflow: hidden;
  /* keep this */
}

.swiper-slide {
  height: auto;
}

.testimonial-section {
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  /* Hide left & right cards */
  width: 100%;
}

.testimonialSwiper {
  overflow: visible;
  padding: 0 70px;
  /* Space for arrows */
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  height: auto;
}




.service-hero {
  background-image: url(/new-version/imgs/service-pages/Services\ Page.png) !important;
}

.text-green {
  color: #1d8e9d !important;
}

.luma-text {
  color: #2460f8 !important;
}

/* Hero default */
.hero {
  min-height: auto;
}

/* 1380px to 1450px */
@media (min-width: 1380px) and (max-width: 1450px) {
  .hero {
    height: 550px;
    min-height: 550px;
  }

  .hero__row {
    height: 100%;
  }

  .hero__title {
    font-size: 45px;
  }
}

/* Below 1380px - responsive */
@media (max-width: 1379px) {
  .hero {
    height: auto;
    min-height: auto;
  }
}

/* Above 1450px */
@media (min-width: 1451px) {
  .hero {
    height: auto;
    min-height: auto;
  }
}

.cta-left-img img,
.cta-right-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}




.feature-col .team-img {
  margin-top: auto;
}

.feature-col {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-col>.row {
  flex: 1;
  height: 100%;
}

.feature-col .col-5 {
  display: flex;
  align-items: flex-end;
}

.hosting-images {
  width: 100%;
  display: flex;
  align-items: flex-end;
}

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



.cta-first-img,
.cta-main-content,
.cta-second-img {
  order: initial;
}


.cta-banner-main {
  position: relative;
  overflow: hidden;
}


.cta-right-img {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.cta-right-img img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {

  .cta-banner-main .row {
    display: flex !important;
    flex-direction: column !important;
  }

  /* LEFT IMAGE */
  .cta-first-img {
    order: 1 !important;
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    justify-content: center;
  }

  /* CONTENT */
  .cta-main-content {
    order: 2 !important;
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    z-index: 2;
  }

  .cta-content {
    text-align: center;
    padding: 30px 20px;
  }

  /* LAST IMAGE */
  .cta-second-img {
    order: 3 !important;

    /* IMPORTANT */
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;

    width: 100% !important;
    max-width: 100% !important;

    display: flex !important;
    justify-content: center;
    margin-top: 20px;
  }

  .cta-right-img {
    position: relative !important;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .cta-right-img img {
    position: relative !important;
    width: 70%;
    max-width: 300px;
    height: auto;
    display: block;
  }
}

@media (max-width: 1280px) {
    .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
        color: #000 !important;
    }
        .navbar-nav .nav-link {
        color: #858585 !important;
    }
}

/* 1280px - 1200px */
@media (min-width: 1200px) and (max-width: 1380px) {

    .services-section .row.g-4 > .col-12 {
        width: 33.333333%;
        flex: 0 0 33.333333%;
    }

}

/* =========================================
   1280px - 992px
   2 columns per row
========================================= */
@media (min-width: 992px) and (max-width: 1380px) {

    .feature-wrapper .feature-col {
        width: 50%;
        flex: 0 0 50%;
    }

}

/* Desktop - image at bottom right */
@media (min-width: 992px) {

    .feature-col {
        position: relative;
    }

    .hosting-images {
        position: absolute;
        right: 15px;
        bottom: 15px;
        width: 120px;
        text-align: right;
    }

    .hosting-images .cloud-img {
        width: 100%;
        height: auto;
        display: block;
    }

}
    

        /* =========================
           MAIN SECTION
        ========================= */

        .services-section-highlight-highlight {
            width: 100%;
            padding: 20px;
        }

        .services-grid-highlight {
            width: 100%;
            max-width: 1840px;
            margin: 0 auto;

            display: grid;
            grid-template-columns: repeat(4, 1fr);

            background: #fff;

            border: 1px solid #e9edf4;
            border-radius: 18px;

            overflow: hidden;

            box-shadow: 0 8px 30px rgba(18, 42, 75, 0.06);
        }

        /* =========================
           CARD
        ========================= */

        .service-card-highlight {
            position: relative;

            min-height: 590px;

            padding: 28px 30px 30px;

            background: #fff;

            border-right: 1px solid #edf0f5;

            overflow: hidden;
        }

        .service-card-highlight:last-child {
            border-right: 0;
        }

        /* =========================
           CONTENT
        ========================= */

        .card-content {
            position: relative;
            z-index: 2;
        }

        .service-card-highlight h2 {
            margin: 0 0 24px;

            color: #101a50;

            font-size: clamp(25px, 2vw, 32px);

            font-weight: 600;

            line-height: 1.3;

            letter-spacing: -0.7px;
        }

        .service-card-highlight h2 span {
            color: #2468ff;
        }

        .service-card-highlight p {
            margin: 0 0 25px;

            max-width: 430px;

            font-size: 15px;

            line-height: 1.75;

            color: #17233d;
        }

        /* =========================
           LIST
        ========================= */

        .service-list {
            list-style: none;

            padding: 0;
            margin: 0;

            display: flex;
            flex-direction: column;

            gap: 13px;
        }

        .service-list li {
            position: relative;

            padding-left: 28px;

            font-size: 14px;

            line-height: 1.5;
        }

        .service-list li::before {
            content: "✓";

            position: absolute;

            left: 0;
            top: 1px;

            width: 18px;
            height: 18px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background: #0758f5;

            color: white;

            font-size: 11px;

            font-weight: 700;
        }

        /* =========================
           NOTE
        ========================= */

        .card-note {
            max-width: 280px !important;

            margin-top: 25px !important;

            font-size: 14px !important;

            line-height: 1.7 !important;
        }

        /* =========================
           IMAGE
        ========================= */

        .card-image {
            position: absolute;

            right: 12px;
            bottom: 0;

            z-index: 3;

            height: auto;

            object-fit: contain;

            pointer-events: none;
        }

        /* Marketing */
        .image-marketing {
            width: 125px;
        }

        /* IT */
        .image-it {
            width: 125px;
        }

        /* Team */
        .image-luma {
            width: 330px;

            right: 0;
        }

        /* Hosting */
        .image-hosting {
            width: 180px;
        }

        /* =========================
           CONTENT SPACE
        ========================= */

        .card-marketing .card-content {
            padding-right: 120px;
        }

        .card-it .card-content {
            padding-right: 120px;
        }

        .card-hosting .card-content {
            padding-right: 120px;
        }

        .card-luma .card-content {
            padding-bottom: 180px;
        }

        /* =========================
           TABLET
        ========================= */

        @media (max-width: 1380px) {

            .services-grid-highlight {
                grid-template-columns: repeat(2, 1fr);
            }

            .service-card-highlight {
                min-height: 540px;
            }

            .service-card-highlight:nth-child(2) {
                border-right: 0;
            }

            .service-card-highlight:nth-child(3),
            .service-card-highlight:nth-child(4) {
                border-top: 1px solid #edf0f5;
            }

            .service-card-highlight:nth-child(3) {
                border-right: 1px solid #edf0f5;
            }

            .image-marketing,
            .image-it {
                width: 120px;
            }

            .image-luma {
                width: 280px;
            }

            .image-hosting {
                width: 210px;
            }
        }

        /* =========================
           MOBILE
        ========================= */

        @media (max-width: 767px) {

            .services-section-highlight {
                padding: 10px;
            }

            .services-grid-highlight {
                grid-template-columns: 1fr;

                border-radius: 14px;
            }

            .service-card-highlight {
                min-height: 500px;

                padding: 25px 22px;

                border-right: 0 !important;

                border-bottom: 1px solid #edf0f5;
            }

            .service-card-highlight:last-child {
                border-bottom: 0;
            }

            .service-card-highlight h2 {
                font-size: 24px;

                line-height: 1.35;
            }

            .service-card-highlight p {
                font-size: 14px;
            }

            .service-list li {
                font-size: 13px;
            }

            /*
                Reserve bottom space for images
                while keeping images absolute.
            */

            .card-marketing .card-content,
            .card-it .card-content,
            .card-hosting .card-content {
                padding-right: 90px;

                padding-bottom: 125px;
            }

            .card-luma .card-content {
                padding-bottom: 170px;
            }

            .image-marketing {
                width: 115px;

                right: 10px;
                bottom: 0;
            }

            .image-it {
                width: 115px;

                right: 10px;
                bottom: 0;
            }

            .image-luma {
                width: 260px;

                right: 50%;

                transform: translateX(50%);

                bottom: 0;
            }

            .image-hosting {
                width: 105px;

                right: 10px;
                bottom: 0;
            }
        }

        /* =========================
           SMALL MOBILE
        ========================= */

        @media (max-width: 480px) {

            .service-card-highlight {
                min-height: 470px;

                padding: 22px 18px;
            }

            .service-card-highlight h2 {
                font-size: 21px;
            }

            .service-card-highlight p {
                font-size: 13px;
            }

            .service-list li {
                font-size: 12px;
            }

            .image-marketing {
                width: 100px;
            }

            .image-it {
                width: 100px;
            }

            .image-luma {
                width: 225px;
            }

            .image-hosting {
                width: 210px;
            }
        }
