/* ================= GOLDPLAY FONT ================= */
@font-face {
  font-family: "Goldplay";
  src:
    url("../fonts/goldplay/Goldplay-Regular.woff2") format("woff2"),
    url("../fonts/goldplay/Goldplay-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Goldplay";
  src:
    url("../fonts/goldplay/Goldplay-Medium.woff2") format("woff2"),
    url("../fonts/goldplay/Goldplay-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Goldplay";
  src:
    url("../fonts/goldplay/Goldplay-Bold.woff2") format("woff2"),
    url("../fonts/goldplay/Goldplay-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Goldplay", sans-serif;
}

.cc-window {
    font-family: 'Goldplay', sans-serif !important;
}

footer a:hover{
color:#d4f5e9 !important;
}
/* HERO */
.hero {
  position: relative;
  color: #fff;
  padding: 120px 0;
  overflow: hidden;
}

/* background slider layer */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: heroSlider 18s infinite;
}

/* keep your content above */
.hero .container {
  position: relative;
  z-index: 1;
}

.hero::before,
.hero::after {
  z-index: 0;
}

/* SLIDER KEYFRAMES */
@keyframes heroSlider {
  0% {
    background-image: url("../images/hero1.jpg");
  }
  33% {
    background-image: url("../images/hero2.jpg");
  }
  66% {
    background-image: url("../images/hero3.jpg");
  }
  100% {
    background-image: url("../images/hero1.jpg");
  }
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 2px;
  z-index: 10;
  position: relative;
}

/* keep navbar above hero layers */
.navbar {
  z-index: 10;
  position: relative;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    /* background: rgba(0, 80, 40, 0.85); */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px;
  }

  #mockup1 {
    display: none;
  }
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  color: #d8e9df;
}

.btn-green {
  background: #6edc5f;
  border: none;
  color: #0b3d1f;
  font-weight: 600;
}

.btn-green:hover {
  background: #5cc74e;
}

/* cards */
.info-card {
  border: 1px solid #28a745;
  border-radius: 12px;
  padding: 25px;
  background: #fff;
  height: 100%;
}

.info-card-problem {
  border: 1px solid #ff6b6b;
  border-radius: 12px;
  padding: 25px;
  background: #fff;
  height: 100%;
}

.section-light {
  background: #fff;
  padding: 60px 0;
}


.bullet {
  color: #ff6b6b;
  margin-right: 8px;
}

.bullet-green {
  color: #28a745;
  margin-right: 8px;
}

/* ===== ICON BADGE ===== */
.icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

.icon-badge img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

/* red + green variants */
.icon-problem {
  background-color: #ff6b6b;
}

.icon-solution {
  background-color: #28a745;
}

/* align text nicely */
.list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.service-icon-box {
  width: 70px;
  height: 70px;
  background: #0f6b45;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(15, 107, 69, 0.25);
  transition: 0.25s ease;
}

.service-icon-box img {
  width: 32px; /* controls icon size */
  height: 32px;
  object-fit: contain;
}

.service-icon-box:hover {
  transform: translateY(-3px) scale(1.05);
}

.card-peek-wrapper {
  position: relative;
}

.card-peek-bar {
  position: absolute;
  top: -5px; /* controls how much shows */
  left: 50%;
  transform: translateX(-50%);
  width: 25%;
  height: 20px;
  background-color: #28a745;
  border-radius: 4px;
  z-index: 0;
}

.card-peek {
  position: relative;
  z-index: 1;
}

.card-bg {
  background-color: #f2f3f5;
}

.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 80px; /* 🔥 increased spacing */
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

/* uniform logo box */
.logo-item {
  width: 140px; /* controls uniform width */
  height: 50px; /* controls uniform height */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* filter: grayscale(100%); */
  /* opacity: 0.8; */
  transition: all 0.3s ease;
}

.logo-item img:hover {
  /* filter: grayscale(0%); */
  opacity: 1;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* components or main style.css */
.floating {
    animation: float 4s ease-in-out infinite;
}

.floating2 {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-15px); } /* how much it floats up */
    100% { transform: translateY(0px); }
}

/* * {
  outline: 1px solid red;
} */