  body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: #1e1d24;
        }
        .serif-title {
            font-family: 'Cormorant Garamond', serif;
        }
        /* Custom styled luxury blueprint-style placeholder */
        .luxury-placeholder {
            background: linear-gradient(135deg, #0e0d30 0%, #15133c 100%);
            border: 1px solid rgba(197, 168, 128, 0.2);
            position: relative;
            overflow: hidden;
        }
        .luxury-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 200%;
            height: 100%;
            background: linear-gradient(
                to right,
                rgba(197, 168, 128, 0) 0%,
                rgba(197, 168, 128, 0.05) 50%,
                rgba(197, 168, 128, 0) 100%
            );
            transform: skewX(-25deg);
            animation: shine 6s infinite linear;
        }
        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        /* Custom Scrollbar for Luxury Vibe */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0a0928;
        }
        ::-webkit-scrollbar-thumb {
            background: #c5a880;
            border-radius: 4px;
        }
        /* Glassmorphism Navigation */
        .glass-nav {
            background-color: rgba(10, 9, 40, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(197, 168, 128, 0.15);
        }
        /* Dynamic gold button shine */
        .gold-btn {
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease-in-out;
        }
        .gold-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s ease;
        }
        .gold-btn:hover::after {
            left: 100%;
        }



@media screen and (min-width: 992px) {
.bottom_whatsapp_nummber_hide{
    display: none !important;
}
}
@media screen and (max-width: 992px) {
.top-margin-top{
        margin-top: -16px;
}
.logo-width {
    width: 35% !important;
}
.floating_button{
    display: none !important;
}
}
.hero_img img{
    border-radius: 15px;
}
.portfolio img{
    border-top-left-radius: 15px;
     border-top-right-radius: 15px;
}
.address_img img{
    border-radius: 15px;
}

.logo-width{
    width: 12%;
}

.navabr_button_text{
       font-size: 12px !important;
    padding: 8px 10px;
}
.space-x-8 > :not([hidden]) ~ :not([hidden]) {
       margin-left: 22px !important;
}






/* 3-Column Grid Container */
.portfolio-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1240px;
    width: 100%;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

/* Image Container Styles */
.image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.image-wrapper:hover {
    transform: translateY(-4px);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Content Container (Matching card-heading.jpg layout) */
.info-wrapper {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}

/* Row containing Title and VIEW link */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.project-title {
 
    font-weight: 700;
    color: #0b132b; /* Deep premium blue-black */
    line-height: 1.3;
    transition: color 0.25s ease;
}

/* VIEW Link Style */
.view-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #c49a6c; /* Elegant metallic gold/copper accent tone */
    text-decoration: none;
    letter-spacing: 1px;
    white-space: nowrap;
    padding-top: 4px;
    transition: opacity 0.2s ease;
}

/* HOVER EFFECT: Jab arrow line/link pe hover hoga, toh title high-light hoga */
.view-link:hover {
    opacity: 0.8;
}

.header-row:has(.view-link:hover) .project-title {
    color: #c49a6c; /* Arrow toggle matches title color on focus */
}

/* Sub-details formatting */
.project-location {
 
    color: #7f8c8d;
    margin-top: 4px;
    font-weight: 400;
}

.project-desc {

    color: #95a5a6;
    margin-top: 12px;
    line-height: 1.5;
}

/* --- POPUP MODAL STYLES --- */
.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 900px;
    width: 90%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 42px;
    cursor: pointer;
    z-index: 1010;
}

/* Navigation System */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 24px;
   padding: 6px 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: black;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    .portfolio-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .portfolio-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .project-title {
        font-size: 1.15rem;
    }
}