/* Ease of Connection Block Styles */

.ease-of-connection-block {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Background Image */
.ease-of-connection-block .eoc-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Content Container */
.ease-of-connection-block .eoc-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

/* Text Section */
.ease-of-connection-block .eoc-text-section {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 60px 0 60px;
    box-sizing: border-box;
    margin: 0;
    margin-bottom: 80px;
}

/* Inner Container - Text Content */
.ease-of-connection-block .eoc-inner-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

/* Panel Section */
.ease-of-connection-block .eoc-panel-section {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 60px 0 60px;
    box-sizing: border-box;
    margin: 0;
    margin-top: 0;
    margin-bottom: 100px;
    display: block;
}

/* Main Heading */
.ease-of-connection-block .eoc-heading {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 30px 0;
    color: #ffffff;
    text-align: center;
    width: 100%;
}

.ease-of-connection-block .eoc-heading strong {
    font-weight: 700;
}

/* Description */
.ease-of-connection-block .eoc-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    text-align: center;
    width: 100%;
}

.ease-of-connection-block .eoc-description p {
    margin: 0 0 16px 0;
}

.ease-of-connection-block .eoc-description p:last-child {
    margin-bottom: 0;
}

.ease-of-connection-block .eoc-description strong {
    font-weight: 600;
    color: #ffffff;
}

/* Panel Container */
.ease-of-connection-block .eoc-panel-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    max-height: 60vh;
    margin: 0 auto;
    padding: 0;
}

.ease-of-connection-block .eoc-panel-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 950px;
    height: 100%;
    max-height: 100%;
}

.ease-of-connection-block .eoc-panel-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
    object-position: center center;
}

/* Wi-Fi Animation */
.ease-of-connection-block .eoc-wifi-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ease-of-connection-block .eoc-wifi-animation svg {
    width: 630px;
    height: 420px;
    max-width: 105%;
    max-height: 136.5%;
    min-width: 420px;
    min-height: 273px;
}

/* Wi-Fi CSS Animation - starts immediately */
.ease-of-connection-block .wifi-pulse {
    opacity: 0.5;
    animation: wifiPulse 2200ms ease-in-out infinite;
}

.ease-of-connection-block .wifi-pulse-dot {
    animation-delay: 0s;
}

.ease-of-connection-block .wifi-pulse-1 {
    animation-delay: 550ms;
}

.ease-of-connection-block .wifi-pulse-2 {
    animation-delay: 1100ms;
}

.ease-of-connection-block .wifi-pulse-3 {
    animation-delay: 1650ms;
}

@keyframes wifiPulse {
    0% {
        opacity: 0.5;
    }
    22.7% {
        opacity: 1;
    }
    45.4% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 1440px) {
    .ease-of-connection-block .eoc-text-section {
        padding: 60px 40px 0 40px;
        margin-bottom: 70px;
    }
    
    .ease-of-connection-block .eoc-panel-section {
        padding: 0 40px 0 40px;
        margin-bottom: 80px;
    }
    
    .ease-of-connection-block .eoc-heading {
        font-size: 48px;
    }
    
    .ease-of-connection-block .eoc-panel-container {
        max-height: 55vh;
    }
    
    .ease-of-connection-block .eoc-wifi-animation svg {
        max-width: 94.5%;
        max-height: 126%;
        min-width: 378px;
        min-height: 252px;
    }
}

@media (max-width: 1024px) {
    .ease-of-connection-block .eoc-text-section {
        padding: 50px 30px 0 30px;
        margin-bottom: 60px;
    }
    
    .ease-of-connection-block .eoc-panel-section {
        padding: 0 30px 0 30px;
        margin-bottom: 70px;
    }
    
    .ease-of-connection-block .eoc-panel-container {
        max-height: 50vh;
    }
    
    .ease-of-connection-block .eoc-heading {
        font-size: 40px;
    }
    
    .ease-of-connection-block .eoc-description {
        font-size: 16px;
    }
    
    .ease-of-connection-block .eoc-panel-container {
        max-height: 50vh;
    }
    
    .ease-of-connection-block .eoc-wifi-animation svg {
        max-width: 84%;
        max-height: 115.5%;
        min-width: 315px;
        min-height: 210px;
    }
}

@media (max-width: 768px) {
    .ease-of-connection-block {
        height: auto;
        overflow: visible;
    }
    
    .ease-of-connection-block .eoc-text-section {
        padding: 40px 20px 0 20px;
        margin-bottom: 50px;
    }
    
    .ease-of-connection-block .eoc-panel-section {
        padding: 0 20px 0 20px;
        margin-bottom: 60px;
    }
    
    .ease-of-connection-block .eoc-panel-container {
        max-height: 45vh;
    }
    
    .ease-of-connection-block .eoc-heading {
        font-size: 32px;
    }
    
    .ease-of-connection-block .eoc-description {
        font-size: 16px;
    }
    
    .ease-of-connection-block .eoc-panel-container {
        max-height: 45vh;
        min-height: 150px;
    }
    
    .ease-of-connection-block .eoc-wifi-animation svg {
        max-width: 73.5%;
        max-height: 105%;
        min-width: 252px;
        min-height: 168px;
    }
}

@media (max-width: 480px) {
    .ease-of-connection-block .eoc-text-section {
        padding: 30px 15px 0 15px;
        margin-bottom: 40px;
    }
    
    .ease-of-connection-block .eoc-panel-section {
        padding: 0 15px 0 15px;
        margin-bottom: 50px;
    }
    
    .ease-of-connection-block .eoc-panel-container {
        max-height: 40vh;
    }
    
    .ease-of-connection-block .eoc-heading {
        font-size: 24px;
    }
    
    .ease-of-connection-block .eoc-description {
        font-size: 14px;
    }
    
    .ease-of-connection-block .eoc-panel-container {
        max-height: 40vh;
        min-height: 120px;
    }
    
    .ease-of-connection-block .eoc-wifi-animation svg {
        max-width: 63%;
        max-height: 94.5%;
        min-width: 210px;
        min-height: 136.5px;
}
}
