/* Minimalist Premium Carousel Styles - No Icons Edition */
.modern-carousel-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin: 15px 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
    /* Adjust for margin */
}

/* Ensure Owl Carousel items are equal height */
.service-carousel-home-two.owl-carousel .owl-stage {
    display: flex !important;
}

.service-carousel-home-two.owl-carousel .owl-item {
    display: flex !important;
    float: none !important;
}

.service-carousel-home-two .item {
    display: flex !important;
    width: 100%;
}

.modern-carousel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(128, 0, 32, 0.1);
    border-color: rgba(128, 0, 32, 0.15);
}

.card-image-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.modern-carousel-card:hover .card-image-wrap img {
    transform: scale(1.08);
}

.card-category-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(128, 0, 32, 0.9);
    backdrop-filter: blur(4px);
    color: #E6B325;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 2;
}

.card-content-wrap {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content-wrap h4 {
    margin-bottom: 12px;
}

.card-content-wrap h4 a {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 700;
    color: #111;
    transition: color 0.3s ease;
}

.modern-carousel-card:hover .card-content-wrap h4 a {
    color: #800020;
}

.card-text {
    font-family: "Roboto", sans-serif;
    color: #777;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-footer-cta {
    margin-top: auto;
}

.learn-more-link {
    font-size: 13px;
    font-weight: 700;
    color: #800020;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.learn-more-link:hover {
    gap: 12px;
}

/* Updated Navigation */
.service-carousel-home-two.owl-carousel .owl-nav {
    margin-top: 20px;
    text-align: center;
}

.service-carousel-home-two.owl-carousel .owl-nav button {
    background: #f8f8f8 !important;
    color: #333 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    border: none !important;
    margin: 0 5px !important;
}

.service-carousel-home-two.owl-carousel .owl-nav button:hover {
    background: #800020 !important;
    color: #fff !important;
}