:root {
    --brand-red: #d91f26;
    /* primary red */
    --brand-black: #0d0d0d;
    --muted: #6c757d;
    --container-max: 1200px;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

/* GENERAL */
body {
    font-family: var(--font-family, Inter), sans-serif;
    color: #111;
    line-height: 1.45;
}

a {
    text-decoration: none;
}

/* NAVBAR */
.navbar-brand .brand-text {
    font-weight: 700;
    color: var(--brand-black);
    letter-spacing: 0.5px;
}

.logo-img {
    object-fit: contain;
}

/* HERO */
.hero-section {
    padding-top: 40px;
    padding-bottom: 40px;
    background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%);
}

.hero-section h1 {
    color: var(--brand-black);
}

.hero-section p.lead {
    color: var(--muted);
}

/* CARDS */
.card {
    border: 1px solid #eef0f2;
    border-radius: 10px;
}

.card .card-body {
    padding: 1.25rem;
}

/* PARTNER LOGOS */
.partner-logo {
    max-height: 40px;
    opacity: 0.95;
    filter: grayscale(0.1);
}

.partner-hero {
    max-height: 60px;
    object-fit: contain;
}

/* SERVICES */
.service-card {
    border-radius: 10px;
    background: #fff;
    border: 1px solid #eee;
}

/* FOOTER */
footer {
    background: var(--brand-black);
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
}


.software-logo {
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
    opacity: 0.95;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25D366;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.4);
}

.software-card {
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.software-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.software-logo-wrap {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f1f1f1;
    background: #fff;
}

.software-logo-wrap img {
    max-height: 45px;
    max-width: 200px;
    object-fit: contain;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.logo-track img {
  max-height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Pause on hover */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* RESPONSIVE TWEAKS */
@media (max-width: 991px) {
    .navbar .btn {
        display: inline-block;
    }
}

/* small UI polish */
.btn-primary {
    background: var(--brand-red);
    border: 0;
    box-shadow: 0 6px 18px rgba(217, 31, 38, 0.12);
}

.btn-outline-dark {
    border-color: #111;
    color: #111;
}