html, body {
    background-color: white;
    color: #363636;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slider-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.slider-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.slider-inner {
    display: flex;
    width: max-content;
}

.slider-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
}

.slider-track > .platform-card:last-child {
    margin-right: 1rem; /* ✅ ensures gap after final card */
}

.platform-card {
    min-width: 160px;
    max-width: 200px;
    min-height: 180px;
    max-height: 180px;
    flex: 0 0 auto;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.platform-card img {
    max-height: 64px;
    object-fit: contain;
}

.platform-card figure {
    display: flex;
    justify-content: center;
}

.platform-card .card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical centering */
    align-items: center;     /* horizontal centering */
    text-align: center;
  }

.ff-button {
    border: none;
    border-radius: 8px;
    padding: 0.75em 1.5em;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08)!important; 
    transition: all 0.2s ease-in-out;
    position: relative;
}

.ff-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12)!important;
}

.ff-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.ff-hero-main-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ff-pricing-text-descrete {
    font-size: 1.25rem;
}

.ff-underline-dotted {
    text-decoration: underline dotted;

}

.ff-burnt-orange {
    color: #ff5722;
}

.ff-deep-blue {
    color: #1e40af;
}

.ff-light-boxshadow-text {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* .ff-hr-thin */