/*primary color*/
.bg-cream {
    background-color: #FFF7F2;
}

/*font*/
body {
    font-family: 'Poppins', sans-serif;
}

.bg-yellow-500 {
    background-color: #A8243D;
}
.text-yellow-500 {
    color: #A8243D;
}
.floating { 
    animation-name: floating; 
    animation-duration: 3s; 
    animation-iteration-count: infinite; 
    animation-timing-function: ease-in-out;
} 
@keyframes floating { 
    0% { transform: translate(0, 0px); } 
    50% { transform: translate(0, 8px); } 
    100% { transform: translate(0, -0px); }  
} 
.floating-4 { 
    animation-name: floating; 
    animation-duration: 4s; 
    animation-iteration-count: infinite; 
    animation-timing-function: ease-in-out;
} 
@keyframes floating-4 { 
    0% { transform: translate(0, 0px); } 
    50% { transform: translate(0, 8px); } 
    100% { transform: translate(0, -0px); }  
}
.text-darken {
    color: #641121;
}

.section-card {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(100, 17, 33, 0.10);
    border: 1px solid rgba(168, 36, 61, 0.10);
}

.image-frame {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-pill {
    background: #fff;
    border: 1px solid rgba(88, 86, 86, 0.16);
    color: #575656;
}

.site-logo {
    height: 72px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
}

.footer-accent {
    color: #f4d9df;
}

.service-carousel-shell {
    position: relative;
    padding: 0.25rem 0;
}

.service-carousel-track {
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.service-carousel-track::-webkit-scrollbar {
    display: none;
}

.service-card {
    scroll-snap-align: start;
    min-height: 10.5rem;
    border: 1px solid rgba(168, 36, 61, 0.14);
    box-shadow: 0 16px 36px rgba(100, 17, 33, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 46px rgba(100, 17, 33, 0.16);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #A8243D 0%, #641121 100%);
    box-shadow: 0 10px 24px rgba(100, 17, 33, 0.25);
    flex-shrink: 0;
}

.svc-nav-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(168, 36, 61, 0.25);
    background: #ffffff;
    color: #641121;
    font-weight: 700;
    line-height: 1;
    transition: all 0.2s ease;
    box-shadow: 0 8px 18px rgba(100, 17, 33, 0.12);
}

.svc-nav-btn:hover {
    background: #A8243D;
    color: #ffffff;
    border-color: #A8243D;
}