.elementor-7 .elementor-element.elementor-element-bb494c3{--display:flex;}/* Start custom CSS for html, class: .elementor-element-aca9919 *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif !important;
    scroll-behavior: smooth;
}

:root {
    --bg-dark: #070b14; /* Pehle se thoda aur dark taaki text khil ke dikhe */
    --navy-blue: #0f172a; 
    --gold: #ffb830; /* Bright Premium Gold */
    --white: #ffffff;
    --text-muted: #cbd5e1; /* Pure white ke close soft grey taaki reading easy ho */
}

body {
    background-color: var(--bg-dark) !important;
    color: var(--white) !important;
    padding-bottom: 70px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Bright Gold Text styling for clear visibility */
.gold-text {
    color: var(--gold) !important;
    display: inline-block;
}

.white-text {
    color: var(--white) !important;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #070b14 !important; /* Full solid background */
    border-bottom: 2px solid rgba(255, 184, 48, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    letter-spacing: 1px;
}

.nav-btn {
    background: transparent !important;
    border: 2px solid var(--gold) !important;
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600 !important;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: var(--gold) !important;
    color: #000000 !important;
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--bg-dark) !important;
}

.badge {
    background: rgba(255, 184, 48, 0.15) !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600 !important;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 2.6rem !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    color: var(--white) !important;
    margin-bottom: 20px;
}

.hero-content p {
    color: var(--text-muted) !important; /* High contrast text */
    font-size: 1.05rem !important;
    max-width: 600px;
    margin: 0 auto 35px auto;
    line-height: 1.7 !important;
}

/* Features List in Hero */
.hero-features {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features li {
    font-weight: 600 !important;
    font-size: 1rem !important;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Pulse Download Button */
.btn-container {
    margin: 40px 0;
}

.cta-btn {
    display: inline-block;
    background-color: var(--gold) !important;
    color: #000000 !important; /* Pure black text on gold for sharp visibility */
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 20px rgba(255, 184, 48, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 184, 48, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 184, 48, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 184, 48, 0); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: var(--navy-blue) !important;
}

.section-title {
    text-align: center;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 100%));
    gap: 25px;
}

.feature-card {
    background-color: var(--bg-dark) !important;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 184, 48, 0.2) !important; /* Light gold border for clear box visibility */
}

.icon-box {
    font-size: 2.8rem !important;
    color: var(--gold) !important;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3rem !important;
    margin-bottom: 12px;
    font-weight: 600 !important;
    color: var(--white) !important;
}

.feature-card p {
    color: var(--text-muted) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

/* Sticky Footer for Mobile */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #070b14 !important;
    padding: 12px 20px;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.8);
    border-top: 2px solid var(--gold) !important;
    display: none;
    z-index: 999;
}

.sticky-btn {
    display: block;
    background-color: var(--gold) !important;
    color: #000000 !important;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700 !important;
    text-decoration: none !important;
    font-size: 1.05rem !important;
}

/* Responsive Queries */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .sticky-footer {
        display: block !important;
    }
}/* End custom CSS */