.elementor-74 .elementor-element.elementor-element-c35e2ac{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-74 .elementor-element.elementor-element-b0b268b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-6dad9e9 *//* Container Background */
.spc-luxury-container {
    background: #f4f7f9;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

/* Header Styling */
.projects-intro {
    text-align: center;
    margin-bottom: 50px;
}
.projects-intro h1 {
    color: #0b1528;
    font-size: 2.5rem;
    font-weight: 700;
}
.projects-intro p {
    color: #666;
    max-width: 600px;
    margin: 10px auto;
}

/* Grid System */
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Luxury Look */
.luxury-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Image Aspect Ratio - Isse size shai rahega */
.card-image-wrap {
    position: relative;
    width: 100%;
    height: 250px; /* Fixed height for all images */
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image stretch nahi hogi, crop hogi to fill area */
    transition: transform 0.5s ease;
}

.luxury-card:hover .card-image-wrap img {
    transform: scale(1.1);
}

.site-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #c5a059;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Card Details */
.card-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-details h3 {
    font-size: 1.3rem;
    color: #0b1528;
    margin-bottom: 10px;
    height: 3rem; /* Taki title alignment barabar rahe */
    line-height: 1.4;
}

.price {
    font-size: 1.8rem;
    color: #c5a059;
    font-weight: 700;
    margin-bottom: 15px;
}

.price small {
    font-size: 14px;
    color: #888;
}

.features {
    margin-bottom: 25px;
}

.features span {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

/* Premium Buttons */
.cta-button {
    display: block;
    text-align: center;
    background: #0b1528;
    color: #fff !important;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    margin-top: auto;
}

.cta-button.gold {
    background: #c5a059;
}

.cta-button:hover {
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Mobile Friendly */
@media (max-width: 480px) {
    .luxury-grid {
        grid-template-columns: 1fr;
    }
    .projects-intro h1 {
        font-size: 1.8rem;
    }
    .card-image-wrap {
        height: 200px;
    }
}/* End custom CSS */