/* ATM Solution Page Specific Styles */

.hero-section {
    padding-top: 80px;
}

.atm-image-wrapper .image-placeholder {
    width: 100%;
    height: 450px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #103536;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    /* background-image: radial-gradient(at bottom right, #023D3FA3 0%, #0D0E12 60%); */
    background-color: transparent;
    background-image: radial-gradient(at bottom right, #023D3FA3 0%, #0D0E12 60%);
}

.atm-image-wrapper .image-placeholder:hover {
    /* border-color: #32B7BA;
    box-shadow: 0 2px 20px rgba(50, 183, 186, 0.3); */
    box-shadow: 0 1px 2px rgba(0, 212, 255, 0.5);
}

.atm-image-wrapper .placeholder-icon {
    font-size: 150px;
    opacity: 0.5;
}

.atm-service-card {
    background: rgba(0, 0, 0, 0.5);
    border: 0px solid #103536;
    border-radius: 12px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    height: 100%;
    /* background-image: radial-gradient(at bottom right, #023D3FA3 0%, #0D0E12 60%); */
    background-color: transparent;
    background-image: radial-gradient(at bottom right, #023D3FA3 0%, #0D0E12 60%);
}

.atm-service-card:hover {
    transform: translateY(-10px);
    /* border-color: #32B7BA;
    box-shadow: 0 2px 20px rgba(50, 183, 186, 0.2); */
    box-shadow: 0 1px 2px rgba(0, 212, 255, 0.5);
}

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-features li {
    color: #B0B0B0;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #32B7BA;
    font-weight: bold;
}

.benefit-box {
    background: rgba(0, 0, 0, 0.5);
    border: 0px solid #103536;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    /* background-image: radial-gradient(at top left, #023D3FA3 0%, #0D0E12 60%); */
    background-color: transparent;
    background-image: radial-gradient(at bottom right, #023D3FA3 0%, #0D0E12 60%);
}

.benefit-box:hover {
    transform: translateY(-10px);
    /* border-color: #32B7BA;
    box-shadow: 0 2px 20px rgba(50, 183, 186, 0.2); */
    box-shadow: 0 1px 2px rgba(0, 212, 255, 0.5);
}

.benefit-icon {
    font-size: 55px;
    margin-bottom: 15px;
}

.process-section {
    background: rgba(0, 0, 0, 0.3);
}

.process-step {
    background: rgba(0, 0, 0, 0.5);
    border: 0px solid #103536;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    background-color: transparent;
    background-image: radial-gradient(at bottom right, #023D3FA3 0%, #0D0E12 60%);
}

.process-step:hover {
    transform: translateY(-10px);
    /* border-color: #32B7BA;
    box-shadow: 0 2px 20px rgba(50, 183, 186, 0.2); */
    box-shadow: 0 1px 2px rgba(0, 212, 255, 0.5);
}

.step-number {
    width: 70px;
    height: 70px;
    background: rgba(50, 183, 186, 0.2);
    border: 3px solid #32B7BA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #32B7BA;
    margin: 0 auto 20px;
    font-family: "DM Sans", sans-serif;
}

.cta-section {
    background: rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .atm-image-wrapper .image-placeholder {
        height: 300px;
    }
    
    .atm-image-wrapper .placeholder-icon {
        font-size: 100px;
    }
    
    .service-icon,
    .benefit-icon {
        font-size: 45px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}