/* =========================================
   GLOBAL STYLES & RESET
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

html, body {
    width: 100%;
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Navbar Layout */
/* Sahi kiya hua Navbar Layout */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 4% 15px 4%;
    background-color: transparent; /* Piche ka white background hataya */
    position: absolute; /* Isse banner upar tak chala jayega */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10; /* Taaki buttons aur links banner ke upar click ho sakein */
}

.logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #000000;
}
.logo img { width: 130px;;
   
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
        text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-family: 'Switzer', Arial, sans-serif;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.3px;
    transition: color .2s;
}

.nav-links a.active {
    color: #ffffff;
    
}

.phone-link {
    font-weight: 600 !important;
    color: #ffffff !important;
}

.request-btn {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 9px 24px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.request-btn:hover{
    background: #ffffff;
    color: #000000;
}

/* Main Section Container */
.container {
    padding: 0 4%;
    margin-bottom: 60px;
}

.breadcrumb {
    font-size: 12px;
    font-weight: 400;
    color: #8e8e8e;
    margin-bottom: 15px;
}

/* Large Page Heading */
.main-heading {
    font-size: 40px;
    font-weight: 600;
    color: #000000;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Category Grid Tabs Buttons */
.tabs-container {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background-color: #000000;
    color: #ffffff;
    border: none;
}

.tab-btn.inactive {
    background-color: transparent;
    color: #111111;
    border: 1px solid #e0e0e0;
}

/* Property Grid Layout & Toggle Feature */
.property-grid {
    display: none; 
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 24px;
}
.property-grid a{
    text-decoration: none;
}

/* JavaScript toggled class */
.property-grid.active-grid {
    display: grid;
}

/* ALL tab clicks column set to 3 */
.container.all-active .property-grid.active-grid {
    grid-template-columns: repeat(2, 1fr) !important;
}

/* Individual Card Design */
.property-card {
    position: relative;
    width: 100%;
    height: 480px; 
    background-color: #1a2530; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;     
    padding: 40px;
    cursor: pointer;
    transition: 0.9s ease;
}

/* Background Image Layout */
.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85; 
    z-index: 1;
    transition: opacity 0.4s ease;
}

/* Soft gradient overlay for text readability */
.property-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    z-index: 2;
    transition:  0.4s ease;
}

/* Text Content Overlay Layer (Default layout) */
.card-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    text-align: center;
    transition: color 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; 
    width: 100%;
    height: 100%;
    font-style: inherit;
}

/* ==========================================================
   ADDED: ONLY FOR "ALL" SECTION - CONTENT CENTER & ICON TOP
   ========================================================== */
.all-card-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    text-align: center;
    transition: color 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Saara content bich me fit karne ke liye */
    gap: 20px; /* Icon, Title, Description ke bich space setup */
    width: 100%;
    height: 100%;
}

.card-icon {
    font-size: 48px; /* Icon size bada kiya */
    color: inherit;
    opacity: 0.95;
    margin-bottom: 10px;
}

/* ALL cards text color effects on Hover */
.property-card:hover .all-card-content {
    color: #000000 !important;
}

/* LOGO SIZE KO BADA KIYA IMAGE KE JESE */
.card-logo-placeholder {
    font-size: 56px;             
    margin-top: auto;            
    margin-bottom: 15px;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
}

/* BADA AUR PREMIUM FONT STYLE AND SPACING LIKE SCREENSHOT 1 */
.card-title {
    font-size: 38px;             
    font-weight: 500;            
    letter-spacing: 4px;         
    text-transform: uppercase;
    line-height: 1.3;
}

/* Grid layout fix for all sections titles default rules */
.card-content .card-title {
    margin-bottom: auto;         
}

/* Bold accent lines styling (TOWER, RESIDENCES) */
.title-main-bold {
    font-weight: 700;
    letter-spacing: 6px;
}
.title-sub-bold {
    font-weight: 600;
    font-size: 34px;
    letter-spacing: 5px;
}
.title-brand-small {
    font-size: 20px;
    letter-spacing: 8px;
    opacity: 0.8;
}
.title-location {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 3px;
    opacity: 0.85;
}

/* Description style at the bottom */
.card-desc {
    font-size: 11.5px;
    font-weight: 400;
    color: #dddddd;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
}

.card-content .card-desc {
    padding-top: 30px;
}

/* =========================================
   HOVER EFFECT STYLES (Pure White Layout)
   ========================================= */
.property-card:hover {
    background-color: #a89c9c !important;
}

.property-card:hover .card-bg {
    opacity: 0 !important;
}

.property-card:hover::after {
    background: rgba(255, 255, 255, 1) !important;
}

.property-card:hover .card-content {
    color: #000000 !important;
}

.property-card:hover .card-desc {
    color: #555555 !important;
}

/* =========================================
   FOOTER STYLES
   ========================================= */
.footer {
    border-top: 1px solid #e2e2e2;
    padding: 40px 4% 30px 4%;
    background-color: beige;
    margin-top: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #000000;
    font-size: 16px;
    text-decoration: none;
}

.footer-details {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-address {
    font-size: 15px;
    color: #222222;
    font-weight: 500;
}

.footer-contact-row {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 15px;
    color: #222222;
    font-weight: 500;
}

.footer-contact-row a {
    color: #222222;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 12px;
    color: #888888;
    line-height: 1.6;
}

.copyright {
    max-width: 60%;
}

.created-by {
    margin-bottom: 5px;
    color: #a0a0a0;
}

.created-by span {
    color: #555555;
    font-weight: 600;
}

.legal-text {
    font-size: 11px;
    color: #a0a0a0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 12px;
}

.footer-links a:hover {
    color: #000000;
}

/* =========================================
   HERO BANNER STYLES
   ========================================= */
.hero-banner {
    position: relative;
    width: 100%;
    height: 400px; /* Banner ki height aap yahan se choti-badi kar sakte hain */
    margin-bottom: 40px; /* Niche ke content se gap */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* 👇 BANNER IMAGE LINK YAHAN LAGANI HAI 👇 */
    background-image: url('../image/project-images/project-banner.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
}

/* Dark overlay taaki text white color me saaf dikhe */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 0.5 ko badha kar dark ya kam karke light kar sakte hain */
    z-index: 1;
}

/* Banner ka text content */
.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 0 20px;
    max-width: 800px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #e0e0e0;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* Mobile responsive karne ke liye */
@media (max-width: 768px) {
    .hero-banner {
        height: 300px; /* Mobile par height thodi kam ho jayegi */
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 14px;
    }

    .card-title {
    font-size: 29px;             
    font-weight: 500;            
    letter-spacing: 4px;         
    text-transform: uppercase;
    line-height: 1.2;
}

}
/* Mobile responsive layout controls */
@media (max-width: 1024px) {
    .container.all-active .property-grid.active-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 768px) {
    .container.all-active .property-grid.active-grid,
    .property-grid.active-grid {
        grid-template-columns: 1fr !important;
    }
}
/* ### 2. CSS me badlav (Remove Border Radius & Add Full Width)
Ab apni CSS file me purane `.hero-banner` wale code ko isse replace kar dijiye. Isme se humne `border-radius` hata diya hai taaki edges ekdum sharp aur corners se chipke hue dikhein:

```css */
/* =========================================
   HERO BANNER STYLES (FULL WIDTH FIX)
   ========================================= */
.hero-banner {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    height: 500px;
    padding-top: 115px;
    margin-bottom: 40px; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    background-image: url('../image/property/project-banner.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay and Text remains the same */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Image ko thoda aur clear rakhne ke liye 0.4 kiya hai */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 0 20px;
    max-width: 900px;
}

.hero-title {
    font-size: 52px; /* Font size pehle wale jesa bada kiya */
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #e5e5e5;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* Mobile responsive screen adjustments */
@media (max-width: 768px) {
    .hero-banner {
        height: 350px;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 15px;
    }
.main-heading{
    font-size: 30px;
    font-weight: 600px;

}
}