
:root {
  --accent-color: #0b63ce;
  --nav-hover-color: #2f8cff;
  --heading-color: #071a33;
}

.header {
  padding: 10px 0;
  background: rgba(2, 15, 34, 0.72);
  backdrop-filter: blur(10px);
}

.scrolled .header {
  background: rgba(2, 15, 34, 0.96);
}

.header .logo img {
  max-height: 54px;
  width: auto;
  border-radius: 2px;
}

.navmenu .nav-cta a {
  background: var(--accent-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  margin-left: 12px;
}

.navmenu .nav-cta a:hover {
  background: #2f8cff;
  color: #fff;
}

.hero .carousel {
  min-height: 82vh;
}

.hero .carousel-container {
  align-items: flex-start;
  text-align: left;
  inset: 90px 9% 70px 9%;
}

.hero h2 {
  max-width: 720px;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero h2 span {
  color: #4ea2ff;
}

.hero p {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.65;
}

.hero .btn-outline-light-custom {
  border: 1px solid rgba(255,255,255,.72);
  color: #fff;
  background: transparent;
}

.hero .btn-outline-light-custom:hover {
  background: #fff;
  color: #071a33;
}

.featured-services .service-item .title,
.services .service-item .title a,
.product-card h3,
.client-card h4,
.insight-card h4 {
  color: #071a33;
}

.featured-services .service-item .icon,
.services .service-item .icon,
.stats .stats-icon,
.client-card i,
.why-card i {
  color: var(--accent-color);
}

.about .about-images img,
.insight-card img,
.product-card img {
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(7, 26, 51, 0.12);
}

.stats {
  background: linear-gradient(90deg, #02142e, #073b79);
  color: #fff;
}

.stats .stats-item span,
.stats .stats-item p {
  color: #fff;
}

.stats .stats-icon {
  font-size: 38px;
  margin-bottom: 10px;
  display: inline-block;
}

.call-to-action img {
  object-position: center;
}

.product-card,
.client-card,
.why-card,
.insight-card {
  background: #fff;
  border: 1px solid #e8eef8;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(7, 26, 51, 0.06);
  transition: all .3s ease;
}

.product-card:hover,
.client-card:hover,
.why-card:hover,
.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(7, 26, 51, 0.1);
}

.product-card img,
.insight-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  margin-bottom: 18px;
}

.client-card i,
.why-card i {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.brand-footer-logo {
  max-width: 220px;
  border-radius: 4px;
}

.footer .footer-about .logo img {
  max-height: none;
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border-radius: 4px 0 0 4px;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  background: var(--accent-color);
}

@media (max-width: 992px) {
  .hero .carousel-container {
    align-items: center;
    text-align: center;
  }
  .hero p,
  .hero h2 {
    max-width: 100%;
  }
  .navmenu .nav-cta a {
    margin-left: 0;
  }
}
