.navakriti-services {
    background-color: #faf9f6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.navakriti-services .header-wrap {
    max-width: 700px;
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.navakriti-services .section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #8c8c8c;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.navakriti-services .section-label::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #C7A05A;
}
.navakriti-services .main-title {
    font-size: 44px;
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 24px;
    color: #111;
    letter-spacing: -0.01em;
}
.navakriti-services .serif-gold {
    font-family: "Playfair Display", "Didot", "Georgia", serif;
    font-style: italic;
    color: #C7A05A;
}
.navakriti-services .section-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #555;
    font-weight: 300;
}
.navakriti-services .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    max-width: 1200px;
    width: 100%;
}
.navakriti-services .service-card {
    background: #ffffff;
    border: 1px solid #EAEAEA;
    border-radius: 24px;
    overflow: hidden;
    height: 440px;
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.015);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
}
.navakriti-services .service-card.reveal {
    opacity: 1;
    transform: translateY(0);
}
.navakriti-services .card-media {
    height: 55%;
    position: relative;
    overflow: hidden;
}
.navakriti-services .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.navakriti-services .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}
.navakriti-services .card-content {
    height: 45%;
    padding: 28px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    position: relative;
    z-index: 2;
}
.navakriti-services .card-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}
.navakriti-services .service-num {
    font-size: 13px;
    font-weight: 500;
    color: #C7A05A;
    opacity: 0.8;
}
.navakriti-services .service-title {
    font-size: 21px;
    font-weight: 400;
    color: #111;
    margin: 0;
}
.navakriti-services .service-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0 0 14px 0;
    font-weight: 300;
}
.navakriti-services .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navakriti-services .badge {
    background: #f5f5f5;
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #555;
}
.navakriti-services .learn-more {
    font-size: 13.5px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}
.navakriti-services .arrow-icon {
    font-size: 16px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-block;
}

.navakriti-services .hidden-includes {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 24px 36px 28px 36px;
    opacity: 0;
    transition: bottom 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    z-index: 3;
}
.navakriti-services .includes-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8c8c8c;
    margin-bottom: 12px;
    font-weight: 500;
}
.navakriti-services .includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}
.navakriti-services .includes-item {
    font-size: 13.5px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 300;
}
.navakriti-services .includes-item::before {
    content: "•";
    color: #C7A05A;
}

/* Luxurious Hover interactions */
.navakriti-services .service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.navakriti-services .service-card:hover .card-image {
    transform: scale(1.05);
}
.navakriti-services .service-card:hover .card-overlay {
    opacity: 1;
}
.navakriti-services .service-card:hover .arrow-icon {
    transform: translate(3px, -3px);
}
.navakriti-services .service-card:hover .hidden-includes {
    bottom: 0;
    opacity: 1;
    pointer-events: auto;
}

/* Responsive grid overrides */
@media (max-width: 1024px) {
    .navakriti-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}
@media (max-width: 767px) {
    .navakriti-services .services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .navakriti-services .main-title {
        font-size: 32px;
    }
    .navakriti-services .service-card {
        height: 440px;
    }
}
