#header.cloned.sticky .head-tr ul .activate {
    color: #fff !important;
    background-color: #D4A34F !important;
}

#navigation.style-1 ul .activate {
    background-color: #D4A34F !important;
}



.video-container {
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
  z-index: -1 !important;
}

.video-container video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; /* 👈 THIS is the key */
  object-position: center center !important;
}

.welcome-text p{
    font-size: 16px !important;
}

main.services-home {
  background-image: url("../../images/bg/kitchen-pro-dallas-kitchen-remodeling-installation-in-progress.webp") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}

.lightcase-contentInner img{
    width: 666px !important;
    height: 500px !important;
}

#kp-lightcase-style{
    width: 666px !important;
    height: 500px !important;
}

/* marquee */

/* ===== Marquee Section ===== */
.marquee-section {
    padding: 40px 0;
    overflow: hidden;
}

/* Viewport */
.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Track */
.marquee-track {
    display: flex;
    width: max-content;
    gap: 40px;
    animation: marquee-scroll 28s linear infinite;
}

/* Pause on hover */
.marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Links */
.marquee-track a {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #1f2937;
    white-space: nowrap;
    border-radius: 50px;
    background: linear-gradient(135deg, #f8f9fb, #ffffff);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

/* Hover effect */
.marquee-track a:hover {
    transform: translateY(-4px);
    background: #111827;
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

/* Animation */
@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .marquee-track {
        gap: 20px;
        animation-duration: 22s;
    }

    .marquee-track a {
        font-size: 14px;
        padding: 12px 22px;
    }
}


/* footer contact btn */

.kp-btn {
  appearance: none;
  border: none;
  outline: none;
  cursor: pointer;

  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  color: #ffffff;
  background: linear-gradient(135deg, #D4A34F, #c3923f);
  border-radius: 50px;

  box-shadow: 0 10px 30px rgba(212, 163, 79, 0.35);
  transition: all 0.35s ease;
}

/* Hover */
.kp-btn:hover {
  background: #333333;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

/* Active (click) */
.kp-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* Focus (accessibility) */
.kp-btn:focus-visible {
  outline: 2px solid #D4A34F;
  outline-offset: 4px;
}


.contactus ul li a,
.second-footer p a{
    color: #000;
    text-decoration: none;
}

.contactus ul li a:hover,
.second-footer p a:hover{
    color: #D4A34F;
}


@media (max-width: 678px) {

  /* Turn the row into a flex column */
  .kp-project-grid {
    display: flex !important;
    flex-direction: column;
    gap: 20px; /* spacing between cards */
  }

  /* Force each project item to full width */
  .kp-project-grid .kp-project-item {
    max-width: 100% !important;
    width: 100% !important;
    flex: 0 0 100% !important;
  }

  /* Optional: improve image/card proportions on mobile */
  .kp-card {
    border-radius: 14px;
    overflow: hidden;
  }

}

