.elementor-79 .elementor-element.elementor-element-a29e240{--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-ba69303 *//* =========================================
   1. GLOBAL HEADER (TOP MENU BAR) - FIXED
   ========================================= */

/* Header Background ko WHITE karein (Taaki Logo saaf dikhe) */
header, .elementor-location-header, .site-header, .elementor-section.elementor-top-section {
    background-color: #ffffff !important; /* White Background */
}

/* Menu Text ko DARK BLUE karein */
.elementor-nav-menu a, .main-navigation a {
    color: #0b2559 !important; /* Dark Blue Text */
}

/* Menu Hover par Gold Colour */
.elementor-nav-menu a:hover, .main-navigation a:hover {
    color: #dcb21f !important;
}

/* Mobile Menu Hamburger Icon ko Dark Blue karein */
.elementor-menu-toggle i {
    color: #0b2559 !important;
}

/* =========================================
   2. COMMERCIAL PAGE STYLING (SAME AS BEFORE)
   ========================================= */

:root {
    --c-blue: #0b2559;
    --c-gold: #dcb21f;
    --c-dark: #051b42;
    --c-light: #f4f7fb;
    --c-white: #ffffff;
}

.commercial-page {
    font-family: 'Poppins', sans-serif;
    background-color: var(--c-light);
    overflow-x: hidden;
}

/* --- Hero Section (Fixed Text Visibility) --- */
.comm-hero {
    position: relative;
    height: 500px;
    background: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Dark Overlay taaki Text Saaf Dikhe */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(5, 27, 66, 0.85), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
    max-width: 900px;
}

/* Heading - White Color */
.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff; /* Pure White */
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    line-height: 1.2;
}

/* Highlighted Text - Gold Color */
.hero-content h1 span {
    color: var(--c-gold) !important;
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #f0f0f0;
    font-weight: 400;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.hero-btn {
    display: inline-block;
    background: var(--c-gold);
    color: var(--c-blue);
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(220, 178, 31, 0.4);
    border: 2px solid var(--c-gold);
}

.hero-btn:hover {
    background: transparent;
    color: var(--c-gold);
}

/* --- Stats Bar --- */
.comm-stats-bar {
    display: flex;
    justify-content: space-around;
    background: #fff;
    width: 90%;
    max-width: 1100px;
    margin: -50px auto 0;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 5;
    flex-wrap: wrap;
    gap: 20px;
}

.c-stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.c-stat-item h3 {
    font-size: 32px;
    color: var(--c-blue);
    font-weight: 800;
    margin: 0;
}

.c-stat-item span {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- Projects Container --- */
.comm-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--c-dark);
    margin-bottom: 10px;
}

.title-line {
    width: 60px;
    height: 4px;
    background: var(--c-gold);
    margin: 0 auto 15px;
    border-radius: 2px;
}

/* --- Grid & Cards --- */
.comm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.comm-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}

.comm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 37, 89, 0.15);
    border-bottom-color: var(--c-gold);
}

.comm-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.comm-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.comm-card:hover .comm-img-box img {
    transform: scale(1.1);
}

/* --- Badge Style with Dark Blue Support --- */
.comm-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--c-gold);
    color: var(--c-blue);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 2;
}

/* Naya Code: Dark Blue Badge ke liye */
.comm-badge.dark {
    background: var(--c-blue) !important;
    color: var(--c-gold) !important;
}

.comm-content {
    padding: 25px;
}

.comm-content h3 {
    font-size: 22px;
    color: var(--c-blue);
    margin-bottom: 5px;
    font-weight: 700;
}

.comm-content .loc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.comm-specs {
    display: flex;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.spec strong {
    display: block;
    font-size: 14px;
    color: var(--c-dark);
}

.spec span {
    font-size: 12px;
    color: #777;
}

.comm-price {
    font-size: 18px;
    color: var(--c-blue);
    font-weight: 700;
    margin-bottom: 20px;
}

/* --- WhatsApp Button --- */
.comm-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #25D366;
    color: #fff;
    padding: 12px 0;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.comm-btn:hover {
    background: #1ebc57;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.comm-btn.secondary {
    background: var(--c-blue);
}

/* --- CTA Section --- */
.comm-cta {
    background: linear-gradient(45deg, var(--c-blue), var(--c-dark));
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.comm-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.comm-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--c-gold);
}

.cta-btn {
    display: inline-block;
    background: var(--c-gold);
    color: var(--c-blue);
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 25px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 36px; }
    .comm-stats-bar { width: 85%; flex-direction: column; }
    .comm-grid { grid-template-columns: 1fr; }
}/* End custom CSS */