#homeSection .slider-box {
    background: url(../img/home-bg.webp);
    background-size: cover;
    background-position: center top;
    height: 100vh; }

#homeSection .slider-box:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    background: url(../img/layer.webp);
    background-repeat: no-repeat;
    background-position: right top; }

#homeSection .slider-box2 {
    background: url(../img/home-bg01.webp);
    background-size: cover;
    background-position: center center; }

#homeSection .owl-carousel {
    position: relative;
    z-index: 0; }

#serviceSection .service-box .txt-area h3 {
      color: #9ca3a94d;
      margin-bottom: 50px;
      transition: .4s; }

#serviceSection .service-box .txt-area h4 {
      color: #9ca3a9;
      margin-bottom: 0;
      font-size: 20px;
      transition: .4s; }

#serviceSection .service-box:hover .txt-area h3 {
      color: #fff; }

#serviceSection .service-box:hover .txt-area h4 {
      color: #1d1e22; }

/* --- PRESENTATION SECTION --- */
.presentation-section {
  background-color: #222429;
  padding: 100px 0;
}

.presentation-section h2 {
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: none;
}

.presentation-subtitle {
  color: #9ca3a9;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  margin: 0 auto 60px;
}

.presentation-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.presentation-card {
  display: flex;
  align-items: center;
  width: calc(50% - 15px);
}

.presentation-card.centered-card {
  width: calc(65% - 15px);
  margin-top: 15px;
}

.presentation-card .card-number {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  flex-shrink: 0;
  font-family: 'Rubik', sans-serif;
}

.presentation-card .card-number::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  width: 20px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}

.presentation-card .card-content {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 18px 24px; 
  color: #fff;
  font-size: 16px;
  text-align: left;
  flex-grow: 1;
  background: transparent;
  min-height: 85px;
  display: flex;
  align-items: center;
  margin-left: 20px;
  font-family: 'Rubik', sans-serif;
  line-height: 1.5;
}

.presentation-footer {
  color: #9ca3a9;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  margin-top: 60px;
}

/* --- INDUSTRIES GRID SECTION --- */
.fv-industries-grid {
  background-color: #fafafa;
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 24px 24px;
  position: relative;
  overflow: hidden;
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  background-color: #e5e5e3;
  border: 1px solid #e5e5e3;
  gap: 1px;
}
@media (max-width: 991px) {
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .niches-grid { grid-template-columns: 1fr; }
}

.niche-card {
  background-color: #fafafa;
  position: relative;
  padding: 40px 30px;
  z-index: 1;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.niche-card:hover {
  text-decoration: none;
}

.niche-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.02), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.niche-card:hover::before {
  opacity: 1;
}

.niche-title-wrapper {
  position: relative;
  margin-bottom: 10px;
}

.niche-accent {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0px;
  background-color: #fb383b;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  transition: all 0.3s ease;
}

.niche-card:hover .niche-accent {
  height: 24px;
}

.niche-title {
  color: #1d1e22;
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.3s ease;
  display: inline-block;
}

.niche-card:hover .niche-title {
  transform: translateX(8px);
}

.niche-icon {
  font-size: 24px;
  color: #6f7075;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.niche-card:hover .niche-icon {
  color: #1d1e22;
}

.niche-desc {
  color: #6f7075;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

}

/* --- MODERN FAQ SECTION --- */
.fv-faq-modern-accordion .fv-faq-modern-item {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #e5e7eb !important;
  border-radius: 0 !important;
  padding: 24px 0 !important;
  margin-bottom: 0 !important;
  box-shadow: none !important;
}
.fv-faq-modern-accordion .fv-faq-modern-item:last-child {
  border-bottom: none !important;
}
.fv-faq-modern-header h3 {
  color: #111827 !important;
  font-family: 'Rubik', sans-serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  margin: 0 !important;
}
.fv-faq-modern-header {
  cursor: pointer;
}

.fv-faq-modern-header .fal {
  color: #111827 !important;
  font-size: 16px !important;
  transition: transform 0.3s ease !important;
}
.fv-faq-modern-accordion .fv-faq-item.active .fv-faq-header h3,
.fv-faq-modern-accordion .fv-faq-item.active .fv-faq-header .fal {
  color: #111827 !important;
  opacity: 1 !important;
}
.fv-faq-modern-accordion .fv-faq-item.active .fv-faq-header .fal {
  transform: rotate(180deg) !important;
}
.fv-faq-modern-content p {
  color: #6b7280 !important;
  font-size: 16px !important;
  padding-top: 12px !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* --- BENTO CAPABILITIES GRID --- */
.fv-capabilities-section h2 {
  color: #ffffff !important;
  font-family: 'Rubik', sans-serif !important;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -1.5px;
  max-width: 850px;
  margin: 0 auto 50px;
}
.fv-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #1f2937;
  border-left: 1px solid #1f2937;
}
.fv-bento-item {
  border-right: 1px solid #1f2937;
  border-bottom: 1px solid #1f2937;
  padding: 40px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.fv-bento-item h3 {
  color: #ffffff !important;
  font-family: 'Rubik', sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0;
}
.fv-bento-item p {
  color: #9ca3af !important;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.fv-bento-item:hover {
  background-color: rgba(255, 255, 255, 0.02);
}
@media (max-width: 991px) {
  .fv-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

.fv-bento-item {
    padding: 30px 20px;
  }

}

/* --- MODERN LOGO CLOUD --- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e5e7eb;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.logo-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
}
.logo-grid-item.bg-light { background-color: #f9fafb; }
.logo-grid-item.bg-white { background-color: #ffffff; }
.logo-grid-item.border-right { border-right: 1px solid #e5e7eb; }
.logo-grid-item.border-bottom { border-bottom: 1px solid #e5e7eb; }
.logo-grid-item img {
  height: 24px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.8);
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.logo-grid-item:hover img {
  filter: grayscale(0%) opacity(1);
}
.crosshair {
  position: absolute;
  font-size: 10px;
  color: #9ca3af;
  font-weight: 300;
  z-index: 10;
}
.crosshair.bottom-right {
  bottom: -5.5px;
  right: -5px;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

.logo-grid-item.border-right {
    border-right: none;
  }

/* simple overrides for 2 columns */
  .logo-grid-item:nth-child(odd) { border-right: 1px solid #e5e7eb; }

}
.service-icon {
  color: #fff;
  font-size: 40px;
  margin-bottom: auto;
}
.service-text h3 {
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.service-text p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
/* Owl Next/Prev Buttons styled like the demo */
.services-carousel .owl-nav {
  position: absolute;
  top: -95px;
  right: 0;
  display: flex;
  gap: 10px;
}
.services-carousel .owl-nav button.owl-prev,
.services-carousel .owl-nav button.owl-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(29,30,34,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(29,30,34,0.1) !important;
  transition: all 0.3s ease;
  font-size: 18px;
  color: #1d1e22 !important;
}
.services-carousel .owl-nav button.owl-prev:hover,
.services-carousel .owl-nav button.owl-next:hover {
  background: rgba(29,30,34,0.1);
}

/* Mobile responsive for split section */
@media (max-width: 991px) {
  .fv-split-content {
    padding: 80px 30px;
  }

/* Extracted from global.css */

#homeSection {
    position: relative;
    margin-bottom: 0
    }

#homeSection .slider-box .overlay {
    background: rgba(34, 34, 34, 0.7);
    height: 100%
    }

#homeSection .slider-box .txt-box {
    height: 100vh;
    position: relative
    }

#homeSection .slider-box .txt-box .txt-area {
    position: absolute;
    top: 50%;
    transform: translatey(-50%)
    }

#homeSection .slider-box .txt-box .txt-area p {
    color: #fff;
    font-size: 24px
    }

#homeSection .slider-box .txt-box .txt-area h1 {
    color: #fff;
    font-weight: 600;
    letter-spacing: 5px;
    line-height: 0.9;
    margin-bottom: 50px
    }

#homeSection .owl-dots {
    display: none
    }

#homeSection .owl-nav {
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translatey(-50%);
    transition: 0.4s;
    pointer-events: none
    }

#homeSection .owl-nav button {
    width: 50px;
    height: 100px;
    display: block;
    background: none !important;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    transition: 0.4s;
    pointer-events: auto
    }

#homeSection .owl-nav button:hover {
    opacity: 0.7
    }

#homeSection .owl-nav .owl-prev {
    left: 20px
    }

#homeSection .owl-nav .owl-prev span {
    display: none
    }

#homeSection .owl-nav .owl-next {
    right: 20px
    }

#homeSection .owl-nav .owl-next span {
    display: none
    }

#homeSection .owl-nav .owl-prev::before, #homeSection .owl-nav .owl-next::before {
    font-size: 50px;
    font-weight: 300;
    text-align: center;
    color: #fff;
    content: "";
    font-family: "Font Awesome 5 pro", "FontAwesome", sans-serif;
    transition: 0.4s
    }

#homeSection .owl-nav .owl-next::before {
    content: "";
    padding: 0
    }

#homeSection .owl-nav .owl-prev:focus, #homeSection .owl-nav .owl-next:focus {
    outline: none
    }

#featureSection {
    margin-bottom: 100px
    }

#featureSection .img-box .img01 {
    display: block;
    margin-left: auto;
    margin-right: 50px;
    max-width: 470px
    }

#featureSection .part2 {
    display: flex;
    align-items: center;
    justify-content: space-between
    }

#featureSection .part2 ul {
    margin-top: 50px;
    margin-bottom: 45px
    }

#featureSection .part2 ul li {
    list-style: none;
    margin-bottom: 10px;
    color: #666;
    font-family: "Rubik", sans-serif;
    font-size: 16px
    }

#featureSection .part2 ul li .fal {
    margin-right: 10px;
    font-weight: 500;
    color: #fb383b
    }

#featureSection .part2 .since {
    background: #1d1e22;
    position: relative;
    text-align: center;
    width: 80px;
    height: 80px;
    padding-top: 13px;
    border-radius: 100px
    }

#featureSection .part2 .since span {
    color: #fff
    }

#featureSection .part2 .since:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    background: #e8eae9;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    z-index: -1
    }

#workSection {
    background: url(../img/work-bg.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    filter: grayscale(100%)
    }

#workSection .overlay {
    background: rgba(34, 34, 34, 0.7);
    padding: 80px 0
    }

#workSection .work-box {
    margin: 30px 0
    }

#workSection .work-box h2 {
    color: #fff
    }

#workSection .work-box p {
    font-size: 22px;
    color: #fff;
    margin-bottom: 0
    }

#workSection .box-4 {
    border-right: none
    }

#premiumHeroSection {
    position: relative;
    background-color: #1a1b1f;
    background-image: radial-gradient(circle at 50% -20%, rgba(251, 56, 59, 0.15), transparent 60%);
    padding: 160px 0 100px 0;
    overflow: hidden
    }

#premiumHeroSection .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto
    }

#premiumHeroSection .hero-eyebrow {
    color: var(--fv-red);
    font-family: "Rubik", sans-serif;
    letter-spacing: 3px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    background: rgba(251, 56, 59, 0.1);
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(251, 56, 59, 0.2)
    }

#premiumHeroSection h1 {
    font-family: "Teko", sans-serif;
    color: #fff;
    font-size: 90px;
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5)
    }

#premiumHeroSection .hero-lead {
    font-size: 20px;
    color: #9ca3a9;
    max-width: 600px
    }

#premiumHeroSection {
    position: relative;
    background-color: #1a1b1f;
    background-image: radial-gradient(circle at 50% -20%, rgba(251, 56, 59, 0.15), transparent 60%);
    padding: 160px 0 100px 0;
    overflow: hidden
    }

#premiumHeroSection .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto
    }

#premiumHeroSection .hero-eyebrow {
    color: var(--fv-red);
    font-family: "Rubik", sans-serif;
    letter-spacing: 3px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    background: rgba(251, 56, 59, 0.1);
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(251, 56, 59, 0.2)
    }

#premiumHeroSection h1 {
    font-family: "Teko", sans-serif;
    color: #fff;
    font-size: 90px;
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5)
    }

#premiumHeroSection .hero-lead {
    font-size: 20px;
    color: #9ca3a9;
    max-width: 600px
    }