/* Hero Section */
.tv-hero {
    position: relative;
    display: flex;
    min-height: 90vh;
    background: url('images/xiomo.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 130px 50px 80px;
    align-items: center;
}



.hero-overlay {
    display: none;
}

.tv-hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    margin-right: auto;
    color: #222020;
    padding-bottom: 30px;
}

.tv-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #131212;
}

.tv-hero-content .accent-text {
    color: #3b82f6;
    position: relative;
    display: inline-block;
}

.tv-hero-content .accent-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(59, 130, 246, 0.3);
    z-index: -1;
}

.tv-hero-content p {
    font-size: 1rem;
    max-width: 550px;
    margin-bottom: 1.5rem;
    color: rgba(46, 45, 45, 0.9);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 2rem 0;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.hero-feature-item i {
    font-size: 1rem;
    margin-right: 8px;
    color: #3b82f6;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Interaction Section */
.interaction-section {
    padding: 50px 50px 30px;
    background-color: #f8fafc;
    overflow: hidden;
}

.interaction-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.interaction-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-top: 30px;
}

.interaction-icon {
    width: 100px;
    height: 100px;
    background-color: #f0fff4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.chat-icon {
    width: 50px;
    height: 50px;
}

.interaction-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 50px;
    position: relative;
}

.interaction-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 120px;
    height: 4px;
    background-color: #10b981;
}

.interaction-graphic {
    width: 100%;
    position: relative;
    z-index: 1;
}

.interaction-img {
    width: 100%;
    max-width: 768px;
    display: block;
}

.interaction-right {
    flex: 1;
    padding-top: 30px;
}

.interaction-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 30px;
    font-weight: 500;
}

.interaction-details {
    font-size: 1rem;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 20px;
}

.interaction-features {
    margin-top: 40px;
}

.interaction-feature {
    padding: 12px 0;
    border-bottom: none;
    font-size: 1rem;
    font-weight: 500;
    color: #334155;
    position: relative;
    padding-left: 10px;
}

.interaction-feature i {
    margin-right: 12px;
    color: #10b981;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.interaction-feature:before {
    display: none;
}

.interaction-feature:first-child {
    border-top: none;
}

.graphic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.center-text {
    position: absolute;
    top: 53%;
    left: 56%;
    transform: translate(-50%, -50%);
    z-index: 100;
    font-weight: lighter;
    align-items: center;
}

/* Hover text styling*/
.hover-text {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    background-color: #ffffff;
    color: #333333;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border: 1px solid #e5e7eb;
    display: none;
}

.hover-text:after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ffffff;
}

.overlay-icon:hover .hover-text {
    display: block;
}

.overlay-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 20;
    pointer-events: auto;
    animation: pulse 2s infinite;
}

.overlay-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.7);
}

.overlay-icon i {
    font-size: 1.5rem;
}

.logo-img {
    width: 70%;
    height: auto;
    object-fit: contain;
}

/* Glowing effect */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Icon colors */
.google-icon i {
    color: #4285F4;
}

.alexa-icon i {
    color: #00CAFF;
}

.android-icon i {
    color: #3DDC84;
}

.bluetooth-icon i {
    color: #0082FC;
}

.voice-icon {
    top: 7%;
    left: 56%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    z-index: 5;
}

.voice-icon i {
    color: #10b981;
    font-size: 1.8rem;
}

/* Override hover behavior for center icon */
.voice-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.voice-icon .hover-text {
    margin-top: 20px;
}

/* Outer circle icons - second line of circle */
.google-icon {
    top: 20%;
    right: 10%;
}

.google-icon i {
    color: #4285F4;
}

.alexa-icon {
    top: 16%;
    left: 25%;
}

.alexa-icon i {
    color: #00CAFF;
}

/* Inner circle icons - bottom positions */
.android-icon {
    bottom: 40%;
    right: 8%;
}

.android-icon i {
    color: #3DDC84;
}

.bluetooth-icon {
    bottom: 41%;
    left: 21%;
}

.bluetooth-icon i {
    color: #0082FC;
}

/* Middle circle icons */
.search-icon {
    top: 35%;
    right: 32%;
}

.search-icon i {
    color: #f59e0b;
}

.touch-icon {
    top: 35%;
    left: 32%;
}

.touch-icon i {
    color: #6640BF;
}

.remote-icon {
    bottom: 35%;
    right: 32%;
}

.remote-icon i {
    color: #0F766E;
}

.wifi-icon {
    bottom: 35%;
    left: 32%;
}

.wifi-icon i {
    color: #0369A1;
}

.rdk-icon {
    bottom: 20%;
    right: 40%;
    transform: translate(50%, 0);
}

.rdk-icon span {
    color: #0088CC;
    font-weight: bold;
    font-size: 1rem;
}

.center-icon {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
}

.center-icon i {
    color: #10b981;
}

@media (max-width: 992px) {
    .interaction-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .interaction-left {
        width: 100%;
    }
    
    .interaction-graphic {
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .interaction-img {
        max-width: 600px;
    }
    
    .overlay-icon {
        width: 45px;
        height: 45px;
    }
    
    .voice-icon {
        width: 55px;
        height: 55px;
    }
    
    .hover-text {
        font-size: 11px;
        padding: 4px 8px;
        margin-top: 8px;
    }
    
    /* Adjust outer circle positions for medium screens */
    .google-icon {
        top: 22%;
        right: 10%;
    }
    
    .alexa-icon {
        top: 32%;
        left: 18%;
    }
    
    .android-icon {
        bottom: 35%;
        right: 28%;
    }
    
    .bluetooth-icon {
        bottom: 35%;
        left: 28%;
    }
}

@media (max-width: 768px) {
    .interaction-section {
        padding: 30px 20px;
    }
    
    .interaction-container {
        gap: 0;
    }
    
    .interaction-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .interaction-description {
        font-size: 1.1rem;
    }

    .interaction-graphic {
        max-width: 110%;
        text-align: center;
        display: flex;
        justify-content: center;
        margin-bottom: 0;
        margin-top: 10px;
    }
    
    .interaction-img {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }

    .overlay-icon {
        width: 38px;
        height: 38px;
        animation: pulse 3s infinite;
    }
    
    .overlay-icon i {
        font-size: 1.1rem;
    }
    
    .voice-icon {
        width: 50px;
        height: 50px;
    }
    
    .voice-icon i {
        font-size: 1.4rem;
    }
    
    .hover-text {
        font-size: 10px;
        padding: 3px 6px;
        margin-top: 6px;
    }
    
    .overlay-icon:hover .hover-text {
        bottom: -25px;
    }
    
    .voice-icon .hover-text {
        bottom: -45px;
    }
    
    .voice-icon:hover .hover-text {
        bottom: -35px;
    }
    
    /* Adjust outer circle positions for small screens */
    .google-icon {
        top: 32%;
        right: 16%;
    }
    
    .alexa-icon {
        top: 32%;
        left: 16%;
    }
    
    .android-icon {
        bottom: 35%;
        right: 25%;
    }
    
    .bluetooth-icon {
        bottom: 35%;
        left: 25%;
    }

    .tv-hero {
        padding: 120px 20px 60px;
        min-height: auto;
        flex-direction: column;
        text-align: center;
        background-position: 75% center;
    }

    .tv-hero-content p {
        font-size: 1rem;
        max-width: 50%;
        margin-left: 0;
        padding-right: 40px;
        text-align: left;
    }

    .hero-features {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .hero-feature-item {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .interaction-graphic {
        max-width: 100%;
    }
    
    .interaction-img {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }

    .overlay-icon {
        width: 42px;
        height: 42px;
    }
    
    .overlay-icon i {
        font-size: 0.9rem;
    }
    
    .voice-icon {
        width: 42px;
        height: 42px;
        top: 15px;
        left: 53%;
    }
    
    .voice-icon i {
        font-size: 1.2rem;
    }
    
    .hover-text {
        font-size: 9px;
        padding: 2px 5px;
        margin-top: 5px;
    }
    
    .overlay-icon:hover .hover-text {
        bottom: -22px;
    }
    
    .voice-icon .hover-text {
        bottom: -40px;
    }
    
    .voice-icon:hover .hover-text {
        bottom: -32px;
    }
    
    /* Adjust outer circle positions for extra small screens */
    .google-icon {
        top: 20%;
        right: 16%;
    }
    
    .alexa-icon {
        top: 17%;
        left: 16%;
    }
    
    .android-icon {
        bottom: 39%;
        right: 12%;
    }
    
    .bluetooth-icon {
        bottom: 40%;
        left: 16%;
    }

    .tv-hero {
        padding: 100px 20px 40px;
        background-position: 80% center;
    }
}

/* Design Features Section */
.design-features {
    padding: 100px 50px;
    background-color: #fff;
}

.design-features .section-header {
    margin-bottom: 60px;
    text-align: center;
}

.design-features .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    position: relative;
}

.design-features .section-header p {
    /* max-width: 700px; */
    margin: 0 auto;
    color: #64748b;
    font-size: 1.1rem;
}

.design-features .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.design-features .feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.design-features .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-image {
    margin-bottom: 20px;
}

.feature-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dbeafe, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.feature-circle i {
    font-size: 1.8rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
}

.feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Technology Options Section */
.tech-options {
    background-color: #f5f5f5;
    position: relative;
    padding: 3rem 2rem;
}

.wave-divider {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.tech-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.tech-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eff6ff, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.tech-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.tech-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0f172a;
}

.tech-info p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Smart Features Section */
.smart-features {
    padding: 100px 50px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.smart-features::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0));
    z-index: 0;
}

.smart-features .section-header {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.smart-features .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.smart-features .feature-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.smart-features .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.smart-features .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.smart-features .feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background-color: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.smart-features .feature-card:hover .feature-icon {
    background-color: #3b82f6;
}

.smart-features .feature-card:hover .feature-icon i {
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .design-features .features-grid,
    .smart-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .tv-hero {
        padding: 120px 30px 70px;
    }
    
    .tv-hero-content h1 {
        font-size: 2.3rem;
    }
    
    .design-features,
    .tech-options,
    .smart-features {
        padding: 80px 30px;
    }
}

@media (max-width: 768px) {
    .tv-hero {
        padding: 120px 20px 60px;
        min-height: auto;
        flex-direction: column;
        text-align: center;
        background-position: 65% center;
    }
    
    .tv-hero-content {
        padding: 0;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .tv-hero-content h1 {
        font-size: 2rem;
    }
    
    /* .tv-hero-content p {
        font-size: 0.95rem;
    } */
    
    .design-features .features-grid,
    .smart-features .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .design-features,
    .tech-options,
    .smart-features {
        padding: 60px 20px;
    }
    
    .hero-feature-item {
        padding: 8px 15px;
    }
}

@media (max-width: 576px) {
    .tv-hero {
        padding: 100px 20px 40px;
        padding-bottom: 0;
        background-position: 72% center;
    }
    
    .tv-hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-features {
        gap: 10px;
        margin-top: 60px;
    }
    
    .hero-feature-item {
        font-size: 0.8rem;
        background-color: white;
    }
    
    .design-features .section-header h2,
    .tech-options .section-header h2,
    .smart-features .section-header h2 {
        font-size: 1.8rem;
    }
    
    .design-features .section-header p,
    .tech-options .section-header p,
    .smart-features .section-header p {
        font-size: 0.9rem;
    }
}

/* Partners Section */
.partners {
    padding: 60px 0;
    background-color: var(--light-background);
    text-align: center;
}

.logos-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 30px 0;
    overflow: hidden;
}

/* Static grid for desktop view */
.clients-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    position: relative;
    z-index: 2;
    margin: 30px auto;
}

.clients-grid.static {
    animation: none;
    justify-content: center;
    padding: 30px 0;
    max-width: 1000px;
}

.home-logo-left-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 5;
    display: none; /* Hide by default, show only on mobile */
}

.home-logo-left-gradient.right {
    left: auto;
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

/* Our Happy Clients Slider - Mobile Animation */
.clients-logos-slider {
    display: none; /* Hidden on desktop */
    align-items: center;
    position: relative;
    margin: 40px auto;
    max-width: 100%;
    padding: 20px 20px;
    white-space: nowrap;
    will-change: transform;
}

.logo-slide {
    flex: 0 0 auto;
    margin: 0 30px;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 120px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-slide:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Styles for both static grid and slider */
.client-logo {
    max-height: 100px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.85;
}

.client-logo.featured {
    max-height: 65px;
    max-width: 150px;
    opacity: 1;
}

.client-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
    opacity: 1;
}

/* Specific logo adjustments */
img[alt="Mi"] {
    height: 45px;
}

/* Mobile styles */
@media (max-width: 768px) {
    /* Show slider, hide grid on mobile */
    .clients-logos-slider {
        display: flex;
    }
    
    .clients-grid.static {
        display: none;
    }
    
    /* Show gradient overlays on mobile */
    .home-logo-left-gradient {
        display: block;
    }
    
    .logo-slide {
        margin: 0 25px;
        width: 140px;
    }
    
    .client-logo {
        max-height: 50px;
        max-width: 120px;
    }
    
    .client-logo.featured {
        max-height: 55px;
        max-width: 130px;
    }
    
    img[alt="Mi"] {
        height: 40px;
    }
    
    .clients-grid {
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .logo-slide {
        margin: 0 20px;
        width: 120px;
    }
    
    .client-logo {
        max-height: 45px;
        max-width: 110px;
    }
    
    .client-logo.featured {
        max-height: 50px;
        max-width: 120px;
    }
    
    .clients-grid {
        gap: 20px;
    }
} 