 body {
        font-family: 'Inter', sans-serif;
        background: #121212;
        color: #fff;
        margin: 0;
        padding: 0;
    }
    .navbar, a {
    text-decoration: none !important;
}
    .hero-new {
        background: url('assets/images/tv-hero.jpg') no-repeat center center/cover;
        height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
    }
    .hero-new {
    position: relative;
}
.hero-new::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

    .hero-content {
        background: rgba(0, 0, 0, 0.6);
        padding: 40px;
        border-radius: 10px;
    }
    .btn-new {
        background: #ff3b30;
        color: white;
        padding: 12px 20px;
        font-size: 18px;
        border-radius: 8px;
        transition: all 0.3s ease-in-out;
    }
    .btn-new:hover {
        background: #ff1e00;
        transform: scale(1.1);
    }
    .service-grid, .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

    .services, .product-section, .brand-section, .support-section, .welcome-section, .why-choose-section {
        text-align: center;
        padding: 60px 20px;
    }
    .service-grid, .why-grid {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    .service-item, .why-item {
        background: #222;
        padding: 20px;
        border-radius: 10px;
        transition: transform 0.3s;
    }
    .service-item:hover, .why-item:hover {
        transform: scale(1.05);
    }
    .content-container, .device-content {
        text-align: center;
        padding: 40px;
    }
    img {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
}

    @media (max-width: 768px) {
        .service-grid, .why-grid {
            flex-direction: column;
        }
    }